diff --git a/examples/reporting/html_reporting.py b/examples/reporting/html_reporting.py index 403dc52f..77c18bca 100644 --- a/examples/reporting/html_reporting.py +++ b/examples/reporting/html_reporting.py @@ -3,7 +3,7 @@ import math import numpy as np -from bokeh.models import ColumnDataSource, GraphRenderer, Oval, StaticLayoutProvider +from bokeh.models import ColumnDataSource, GraphRenderer, Ellipse, StaticLayoutProvider from bokeh.palettes import Spectral5, Spectral8 from bokeh.plotting import figure, output_file, save from bokeh.sampledata.autompg import autompg_clean as bokeh_df @@ -20,7 +20,7 @@ def report_html_url(logger, iteration=0): :param logger: The task.logger to use for sending the plots :param iteration: The iteration number of the current reports """ - logger.report_media("html", "url_html", iteration=iteration, url="https://allegro.ai/docs/index.html") + logger.report_media("html", "url_html", iteration=iteration, url="https://clear.ml/docs/latest/docs/index.html") def report_html_periodic_table(logger, iteration=0): @@ -178,7 +178,7 @@ def report_html_graph(logger, iteration=0): graph = GraphRenderer() graph.node_renderer.data_source.add(node_indices, "index") graph.node_renderer.data_source.add(Spectral8, "color") - graph.node_renderer.glyph = Oval(height=0.1, width=0.2, fill_color="color") + graph.node_renderer.glyph = Ellipse(height=0.1, width=0.2, fill_color="color") graph.edge_renderer.data_source.data = dict(start=[0] * nodes, end=node_indices) # start of layout code circ = [i * 2 * math.pi / 8 for i in node_indices] diff --git a/examples/reporting/jupyter_logging_example.ipynb b/examples/reporting/jupyter_logging_example.ipynb index 871525e8..f5315a58 100644 --- a/examples/reporting/jupyter_logging_example.ipynb +++ b/examples/reporting/jupyter_logging_example.ipynb @@ -305,7 +305,7 @@ " 'audio', 'pink panther', iteration=1, local_path=audio_local_copy)\n", "\n", "# reporting html from url to debug samples section\n", - "logger.report_media(\"html\", \"url_html\", iteration=1, url=\"https://allegro.ai/docs/index.html\")" + "logger.report_media(\"html\", \"url_html\", iteration=1, url=\"https://clear.ml/docs/latest/docs/index.html\")" ] }, {