mirror of
https://github.com/clearml/clearml-docs
synced 2025-06-26 18:17:44 +00:00
Refactor integrations section (#600)
This commit is contained in:
20
docs/integrations/seaborn.md
Normal file
20
docs/integrations/seaborn.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Seaborn
|
||||
---
|
||||
|
||||
[seaborn](https://seaborn.pydata.org/) 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:
|
||||
|
||||
```python
|
||||
from clearml import Task
|
||||
task = Task.init(task_name="<task_name>", project_name="<project_name>")
|
||||
```
|
||||
|
||||
This will create a [ClearML Task](../fundamentals/task.md) 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](../webapp/webapp_overview.md),
|
||||
in the experiment's **Plots** tab.
|
||||
|
||||

|
||||
|
||||
View code example [here](https://github.com/allegroai/clearml/blob/master/examples/frameworks/matplotlib/matplotlib_example.py).
|
||||
Reference in New Issue
Block a user