提交 f7110df1 编写于 作者: P PyCaret

update calibrate_model in classification.py

上级 54d65ece
......@@ -9803,6 +9803,15 @@ def calibrate_model(estimator,
runtime_end = time.time()
runtime = np.array(runtime_end - runtime_start).round(2)
#storing results in create_model_container
logger.info("Uploading results into container")
create_model_container.append(model_results.data)
display_container.append(model_results.data)
#storing results in master_model_container
logger.info("Uploading model into container")
master_model_container.append(model)
#mlflow logging
if logging_param:
......
......@@ -2,7 +2,7 @@
# Author: Moez Ali <moez.ali@queensu.ca>
# License: MIT
version_ = "pycaret-nightly-0.41"
version_ = "pycaret-nightly-0.42"
def version():
print(version_)
......
......@@ -13,7 +13,7 @@ with open('requirements.txt') as f:
setup(
name="pycaret-nightly",
version="0.41",
version="0.42",
description="Nightly build of PyCaret - An open source, low-code machine learning library in Python.",
long_description=readme(),
long_description_content_type="text/markdown",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册