mirror of
https://github.com/clearml/clearml-docs
synced 2025-01-31 22:48:40 +00:00
830 B
830 B
title |
---|
Seaborn |
seaborn is a Python library for data visualization.
ClearML automatically captures plots created using seaborn
. All you have to do is add two
lines of code to your script:
from clearml import Task
task = Task.init(task_name="<task_name>", project_name="<project_name>")
This will create a ClearML Task that captures your script's information, including Git details,
uncommitted code, python environment, your seaborn
plots, and more. View the seaborn plots in the WebApp,
in the experiment's Plots tab.
View code example here.