mirror of
https://github.com/clearml/clearml
synced 2025-01-31 09:07:00 +00:00
Fix examples
This commit is contained in:
parent
ed2b8ed850
commit
66cccd22fd
@ -1,6 +1,6 @@
|
|||||||
matplotlib >= 3.1.1 ; python_version >= '3.6'
|
matplotlib >= 3.1.1 ; python_version >= '3.6'
|
||||||
matplotlib >= 2.2.4 ; python_version < '3.6'
|
matplotlib >= 2.2.4 ; python_version < '3.6'
|
||||||
sklearn
|
scikit-learn
|
||||||
clearml
|
clearml
|
||||||
xgboost>=0.90 ; python_version >= '3'
|
xgboost>=0.90 ; python_version >= '3'
|
||||||
xgboost>=0.82 ; 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)
|
source = ColumnDataSource(autompg_clean)
|
||||||
p = figure(
|
p = figure(
|
||||||
plot_width=900,
|
width=900,
|
||||||
plot_height=500,
|
height=500,
|
||||||
title="Periodic Table (omitting LA and AC Series)",
|
title="Periodic Table (omitting LA and AC Series)",
|
||||||
x_range=groups,
|
x_range=groups,
|
||||||
y_range=list(reversed(periods)),
|
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
|
"cyl_mfr", palette=Spectral5, factors=sorted(bokeh_df.cyl.unique()), end=1
|
||||||
)
|
)
|
||||||
p = figure(
|
p = figure(
|
||||||
plot_width=800,
|
width=800,
|
||||||
plot_height=300,
|
height=300,
|
||||||
title="Mean MPG by # Cylinders and Manufacturer",
|
title="Mean MPG by # Cylinders and Manufacturer",
|
||||||
x_range=group,
|
x_range=group,
|
||||||
toolbar_location=None,
|
toolbar_location=None,
|
||||||
|
Loading…
Reference in New Issue
Block a user