提交 097ba5eb 编写于 作者: P PyCaret

updated pycaret-nightly==0.18 (part 1)

上级 2fffc717
...@@ -3983,14 +3983,14 @@ def compare_models(blacklist = None, ...@@ -3983,14 +3983,14 @@ def compare_models(blacklist = None,
Parameters Parameters
---------- ----------
blacklist: string, default = None blacklist: list of strings, default = None
In order to omit certain models from the comparison, the abbreviation string In order to omit certain models from the comparison, the abbreviation string
(see above list) can be passed as list in blacklist param. This is normally (see above list) can be passed as list of string in blacklist param. This is
done to be more efficient with time. normally done to be more efficient with time.
whitelist: string, default = None whitelist: list of strings, default = None
In order to run only certain models for the comparison, the abbreviation string In order to run only certain models for the comparison, the abbreviation string
(see above list) can be passed as a list in whitelist param. (see above list) can be passed as a list of strings in whitelist param.
fold: integer, default = 10 fold: integer, default = 10
Number of folds to be used in Kfold CV. Must be at least 2. Number of folds to be used in Kfold CV. Must be at least 2.
......
...@@ -3292,14 +3292,14 @@ def compare_models(blacklist = None, ...@@ -3292,14 +3292,14 @@ def compare_models(blacklist = None,
Parameters Parameters
---------- ----------
blacklist: string, default = None blacklist: list of strings, default = None
In order to omit certain models from the comparison, the abbreviation string In order to omit certain models from the comparison, the abbreviation string
(see above list) can be passed as list in blacklist param. This is normally (see above list) can be passed as list of strings in blacklist param. This is
done to be more efficient with time. normally done to be more efficient with time.
whitelist: string, default = None whitelist: list of strings, default = None
In order to run only certain models for the comparison, the abbreviation string In order to run only certain models for the comparison, the abbreviation string
(see above list) can be passed as a list in whitelist param. (see above list) can be passed as a list of strings in whitelist param.
fold: integer, default = 10 fold: integer, default = 10
Number of folds to be used in Kfold CV. Must be at least 2. Number of folds to be used in Kfold CV. Must be at least 2.
...@@ -7902,11 +7902,11 @@ def plot_model(estimator, ...@@ -7902,11 +7902,11 @@ def plot_model(estimator,
clear_output() clear_output()
if save: if save:
if system: if system:
visualizer.show(outpath="Validation Curve.png") viz.show(outpath="Validation Curve.png")
else: else:
visualizer.show(outpath="Validation Curve.png", clear_figure=True) viz.show(outpath="Validation Curve.png", clear_figure=True)
else: else:
visualizer.show() viz.show()
elif plot == 'feature': elif plot == 'feature':
if hasattr(estimator, 'coef_'): if hasattr(estimator, 'coef_'):
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# License: MIT # License: MIT
def version(): def version():
print("pycaret-nightly-0.17") print("pycaret-nightly-0.18")
def check_metric(actual, prediction, metric, round=4): def check_metric(actual, prediction, metric, round=4):
......
...@@ -13,7 +13,7 @@ with open('requirements.txt') as f: ...@@ -13,7 +13,7 @@ with open('requirements.txt') as f:
setup( setup(
name="pycaret-nightly", name="pycaret-nightly",
version="0.17", version="0.18",
description="Nightly build of PyCaret - An open source, low-code machine learning library in Python.", description="Nightly build of PyCaret - An open source, low-code machine learning library in Python.",
long_description=readme(), long_description=readme(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册