HTML 报告
html_reporting.py 示例
展示了如何使用 Logger.report_media()
报告本地HTML文件和通过URL的HTML。
ClearML 在 ClearML Web UI > 实验详情 > DEBUG SAMPLES 标签中报告这些 HTML 调试样本。
当脚本运行时,它会在examples
项目中创建一个名为html samples reporting
的实验。
报告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"
)