blob: 537fa474aab2c156af3fe5f7919e2834d59d0ac6 [file]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import pathlib
import sys
import pytest
import xgboost
from sklearn.utils.validation import check_is_fitted
from hamilton.io.utils import FILE_METADATA
from hamilton.plugins.xgboost_extensions import XGBoostJsonReader, XGBoostJsonWriter
@pytest.fixture
def fitted_xgboost_model() -> xgboost.XGBModel:
model = xgboost.XGBRegressor()
model.fit([[0]], [[0]])
return model
@pytest.fixture
def fitted_xgboost_booster() -> xgboost.Booster:
dtrain = xgboost.DMatrix([[0]], label=[[0]])
booster = xgboost.train({"objective": "binary:logistic", "base_score": 0.5}, dtrain, 1)
return booster
@pytest.mark.xfail(
condition=sys.version_info >= (3, 11),
reason="scikitlearn library incompatibility issue with Python 3.11+",
strict=False,
)
def test_xgboost_model_json_writer(
fitted_xgboost_model: xgboost.XGBModel, tmp_path: pathlib.Path
) -> None:
model_path = tmp_path / "model.json"
writer = XGBoostJsonWriter(path=model_path)
metadata = writer.save_data(fitted_xgboost_model)
assert model_path.exists()
assert metadata[FILE_METADATA]["path"] == str(model_path)
@pytest.mark.xfail(
condition=sys.version_info >= (3, 11),
reason="scikitlearn library incompatibility issue with Python 3.11+",
strict=False,
)
def test_xgboost_model_json_reader(
fitted_xgboost_model: xgboost.XGBModel, tmp_path: pathlib.Path
) -> None:
model_path = tmp_path / "model.json"
fitted_xgboost_model.save_model(model_path)
reader = XGBoostJsonReader(model_path)
model, metadata = reader.load_data(xgboost.XGBRegressor)
check_is_fitted(model)
assert XGBoostJsonReader.applicable_types() == [xgboost.XGBModel, xgboost.Booster]
def test_xgboost_booster_json_writer(
fitted_xgboost_booster: xgboost.Booster, tmp_path: pathlib.Path
) -> None:
booster_path = tmp_path / "booster.json"
writer = XGBoostJsonWriter(path=booster_path)
metadata = writer.save_data(fitted_xgboost_booster)
assert booster_path.exists()
assert metadata[FILE_METADATA]["path"] == str(booster_path)
def test_xgboost_booster_json_reader(
fitted_xgboost_booster: xgboost.Booster, tmp_path: pathlib.Path
) -> None:
booster_path = tmp_path / "booster.json"
fitted_xgboost_booster.save_model(booster_path)
reader = XGBoostJsonReader(booster_path)
booster, metadata = reader.load_data(xgboost.Booster)
assert len(booster.get_dump()) > 0
assert XGBoostJsonReader.applicable_types() == [xgboost.XGBModel, xgboost.Booster]