Fix examples

This commit is contained in:
allegroai 2022-11-21 17:14:07 +02:00
parent ed2b8ed850
commit 66cccd22fd
3 changed files with 6 additions and 6 deletions

View File

@ -711,7 +711,7 @@ class Session(TokenManager):
# if the requested version is lower then the minimum we support,
# no need to actually check what the server has, we assume it must have at least our version.
if cls._version_tuple(cls.api_version) >= cls._version_tuple(str(min_api_version)):
return True
return True
# noinspection PyBroadException
try:

View File

@ -1,6 +1,6 @@
matplotlib >= 3.1.1 ; python_version >= '3.6'
matplotlib >= 2.2.4 ; python_version < '3.6'
sklearn
scikit-learn
clearml
xgboost>=0.90 ; python_version >= '3'
xgboost>=0.82 ; python_version < '3'

View File

@ -52,8 +52,8 @@ def report_html_periodic_table(logger, iteration=0):
}
source = ColumnDataSource(autompg_clean)
p = figure(
plot_width=900,
plot_height=500,
width=900,
height=500,
title="Periodic Table (omitting LA and AC Series)",
x_range=groups,
y_range=list(reversed(periods)),
@ -129,8 +129,8 @@ def report_html_groupby(logger, iteration=0):
"cyl_mfr", palette=Spectral5, factors=sorted(bokeh_df.cyl.unique()), end=1
)
p = figure(
plot_width=800,
plot_height=300,
width=800,
height=300,
title="Mean MPG by # Cylinders and Manufacturer",
x_range=group,
toolbar_location=None,