Skip to main content

HTML 报告

html_reporting.py 示例 展示了如何使用 Logger.report_media() 报告本地HTML文件和通过URL的HTML。

ClearML 在 ClearML Web UI > 实验详情 > DEBUG SAMPLES 标签中报告这些 HTML 调试样本。

当脚本运行时,它会在examples项目中创建一个名为html samples reporting的实验。

image

报告HTML URLs

通过URL使用Logger.report_media()url参数报告HTML。

请查看示例脚本的report_html_url函数,该函数报告了ClearML文档的主页。

Logger.current_logger().report_media(
title="html",
series="url_html",
iteration=iteration,
url="https://clear.ml/docs/latest/docs/index.html"
)

报告HTML本地文件

使用Logger.report_media()local_path参数报告以下内容:

交互式HTML

请参见示例脚本的report_html_periodic_table函数,该函数报告了从Bokeh示例数据创建的文件。

Logger.current_logger().report_media(
title="html",
series="periodic_html",
iteration=iteration,
local_path="periodic.html"
)

Bokeh 分组 HTML

请查看示例脚本的report_html_groupby函数,该函数报告了一个使用嵌套HTML的Pandas GroupBy,该HTML是从Bokeh示例数据创建的。

Logger.current_logger().report_media(
title="html",
series="pandas_groupby_nested_html",
iteration=iteration,
local_path="bar_pandas_groupby_nested.html",
)

Bokeh 图形 HTML

请参见示例脚本的report_html_graph函数,该函数报告了从Bokeh样本数据创建的Bokeh图表。

Logger.current_logger().report_media(
title="html",
series="Graph_html",
iteration=iteration,
local_path="graph.html"
)

Bokeh 图像 HTML

请参见示例脚本的report_html_image函数,该函数报告了从Bokeh样本数据创建的图像。

Logger.current_logger().report_media(
title="html",
series="Spectral_html",
iteration=iteration,
local_path="image.html"
)