Add Getting Started admonitions (#648)

This commit is contained in:
pollfly
2023-08-15 19:00:06 +03:00
committed by GitHub
parent bb61686a64
commit 6eefec2325
6 changed files with 30 additions and 0 deletions

View File

@@ -2,6 +2,11 @@
title: Click
---
:::tip
If you are not already using ClearML, see [Getting Started](../getting_started/ds/ds_first_steps.md) for setup
instructions.
:::
[`click`](https://click.palletsprojects.com) is a python package for creating command-line interfaces. ClearML integrates
seamlessly with `click` and automatically logs its command-line parameters.

View File

@@ -2,6 +2,11 @@
title: Hydra
---
:::tip
If you are not already using ClearML, see [Getting Started](../getting_started/ds/ds_first_steps.md) for setup
instructions.
:::
[Hydra](https://github.com/facebookresearch/hydra) is a Python framework for managing experiment parameters. ClearML integrates seamlessly
with Hydra and automatically logs the `OmegaConf` which holds all the configuration files, as well as

View File

@@ -2,6 +2,11 @@
title: PyTorch Ignite
---
:::tip
If you are not already using ClearML, see [Getting Started](../getting_started/ds/ds_first_steps.md) for setup
instructions.
:::
[PyTorch Ignite](https://pytorch.org/ignite/index.html) is a library for training and evaluating neural networks in
PyTorch. You can integrate ClearML into your code using Ignites built-in loggers: [TensorboardLogger](#tensorboardlogger)
and [ClearMLLogger](#clearmllogger).

View File

@@ -2,6 +2,11 @@
title: OpenMMLab
---
:::tip
If you are not already using ClearML, see [Getting Started](../getting_started/ds/ds_first_steps.md) for setup
instructions.
:::
[OpenMMLab](https://github.com/open-mmlab) is a computer vision framework. You can integrate ClearML into your
code using the `mmcv` package's [`ClearMLLoggerHook`](https://mmcv.readthedocs.io/en/master/_modules/mmcv/runner/hooks/logger/clearml.html)
class. This class is used to create a ClearML Task and to automatically log metrics.

View File

@@ -2,6 +2,11 @@
title: Seaborn
---
:::tip
If you are not already using ClearML, see [Getting Started](../getting_started/ds/ds_first_steps.md) for setup
instructions.
:::
[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: