Small edits (#171)

This commit is contained in:
pollfly
2022-01-23 09:50:24 +02:00
committed by GitHub
parent 9aa4bca2ab
commit 9727045603
5 changed files with 33 additions and 22 deletions

View File

@@ -196,7 +196,12 @@ logger.report_media('audio', 'pink panther', iteration=1, local_path=audio_local
### HTML
```python
logger.report_media("html", "url_html", iteration=1, url="https://clear.ml/docs/latest/docs/index.html")
logger.report_media(
"html",
"url_html",
iteration=1,
url="https://clear.ml/docs/latest/docs/index.html"
)
```
![HTML sample](../../img/colab_explicit_reporting_09.png)

View File

@@ -21,7 +21,12 @@ See the example script's [report_html_url](https://github.com/allegroai/clearml/
function, which reports the ClearML documentation's home page.
```python
Logger.current_logger().report_media("html", "url_html", iteration=iteration, url="https://clear.ml/docs/latest/docs/index.html")
Logger.current_logger().report_media(
"html",
"url_html",
iteration=iteration,
url="https://clear.ml/docs/latest/docs/index.html"
)
```
## Reporting HTML Local Files