提交 fc9733ba 编写于 作者: P PyCaret

updated pycaret-nightly==0.24

上级 657ed04e
...@@ -587,6 +587,10 @@ def setup(data, ...@@ -587,6 +587,10 @@ def setup(data,
import pandas as pd import pandas as pd
import random import random
#setting sklearn config to print all parameters including default
import sklearn
sklearn.set_config(print_changed_only=False)
#define highlight function for function grid to display #define highlight function for function grid to display
def highlight_max(s): def highlight_max(s):
is_max = s == True is_max = s == True
......
...@@ -4293,6 +4293,10 @@ def compare_models(blacklist = None, ...@@ -4293,6 +4293,10 @@ def compare_models(blacklist = None,
from sklearn.model_selection import StratifiedKFold from sklearn.model_selection import StratifiedKFold
import pandas.io.formats.style import pandas.io.formats.style
#setting sklearn config to print all parameters including default
import sklearn
sklearn.set_config(print_changed_only=False)
logger.info("Copying training dataset") logger.info("Copying training dataset")
#defining X_train and y_train as data_X and data_y #defining X_train and y_train as data_X and data_y
data_X = X_train data_X = X_train
......
...@@ -588,6 +588,10 @@ def setup(data, ...@@ -588,6 +588,10 @@ def setup(data,
import pandas as pd import pandas as pd
import random import random
#setting sklearn config to print all parameters including default
import sklearn
sklearn.set_config(print_changed_only=False)
#define highlight function for function grid to display #define highlight function for function grid to display
def highlight_max(s): def highlight_max(s):
is_max = s == True is_max = s == True
......
...@@ -225,6 +225,9 @@ def setup(data, ...@@ -225,6 +225,9 @@ def setup(data,
import re import re
import secrets import secrets
#setting sklearn config to print all parameters including default
import sklearn
sklearn.set_config(print_changed_only=False)
#defining global variables #defining global variables
global text, id2word, corpus, data_, seed, target_, experiment__,\ global text, id2word, corpus, data_, seed, target_, experiment__,\
......
...@@ -837,6 +837,10 @@ def setup(data, ...@@ -837,6 +837,10 @@ def setup(data,
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import plotly.express as px import plotly.express as px
#setting sklearn config to print all parameters including default
import sklearn
sklearn.set_config(print_changed_only=False)
#define highlight function for function grid to display #define highlight function for function grid to display
def highlight_max(s): def highlight_max(s):
is_max = s == True is_max = s == True
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Author: Moez Ali <moez.ali@queensu.ca> # Author: Moez Ali <moez.ali@queensu.ca>
# License: MIT # License: MIT
version_ = "pycaret-nightly-0.23" version_ = "pycaret-nightly-0.24"
def version(): def version():
print(version_) print(version_)
......
...@@ -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.23", version="0.24",
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.
先完成此消息的编辑!
想要评论请 注册