mirror of
https://github.com/clearml/clearml
synced 2025-01-31 00:56:57 +00:00
Fix examples
This commit is contained in:
parent
ed2b8ed850
commit
66cccd22fd
@ -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:
|
||||
|
@ -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'
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user