2021-05-13 23:48:51 +00:00
|
|
|
---
|
|
|
|
title: Text Reporting
|
|
|
|
---
|
|
|
|
|
|
|
|
The [text_reporting.py](https://github.com/allegroai/clearml/blob/master/examples/reporting/text_reporting.py) script
|
|
|
|
demonstrates reporting explicit text, by calling the [Logger.report_text](../../references/sdk/logger.md#report_text)
|
|
|
|
method.
|
|
|
|
|
2022-05-22 07:27:30 +00:00
|
|
|
ClearML reports these tables in the **ClearML Web UI**, experiment details, **CONSOLE** tab.
|
2021-05-13 23:48:51 +00:00
|
|
|
|
2023-09-04 12:40:42 +00:00
|
|
|
When the script runs, it creates an experiment named `text reporting` in the `examples` project.
|
2021-05-13 23:48:51 +00:00
|
|
|
|
|
|
|
# report text
|
|
|
|
Logger.current_logger().report_text("hello, this is plain text")
|
|
|
|
|
|
|
|
![image](../../img/examples_reporting_text.png)
|