documentation

This commit is contained in:
allegroai 2021-03-18 03:05:26 +02:00
parent d9b9b4984b
commit f8cbaa9a06

View File

@ -196,16 +196,16 @@ Notice: with `--detached` flag, the *clearml-agent* will be running in the backg
clearml-agent daemon --detached --queue default --docker clearml-agent daemon --detached --queue default --docker
``` ```
Example: spin two agents, one per gpu on the same machine, with default nvidia/cuda docker: Example: spin two agents, one per gpu on the same machine, with default nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04 docker:
```bash ```bash
clearml-agent daemon --detached --gpus 0 --queue default --docker nvidia/cuda clearml-agent daemon --detached --gpus 0 --queue default --docker nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04
clearml-agent daemon --detached --gpus 1 --queue default --docker nvidia/cuda clearml-agent daemon --detached --gpus 1 --queue default --docker nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04
``` ```
Example: spin two agents, pulling from dedicated `dual_gpu` queue, two gpu's per agent, with default nvidia/cuda docker: Example: spin two agents, pulling from dedicated `dual_gpu` queue, two gpu's per agent, with default nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04 docker:
```bash ```bash
clearml-agent daemon --detached --gpus 0,1 --queue dual_gpu --docker nvidia/cuda clearml-agent daemon --detached --gpus 0,1 --queue dual_gpu --docker nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04
clearml-agent daemon --detached --gpus 2,3 --queue dual_gpu --docker nvidia/cuda clearml-agent daemon --detached --gpus 2,3 --queue dual_gpu --docker nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04
``` ```
##### Starting the ClearML Agent - Priority Queues ##### Starting the ClearML Agent - Priority Queues
@ -225,7 +225,7 @@ Adding queues, managing job order within a queue and moving jobs between queues,
To stop a **ClearML Agent** running in the background, run the same command line used to start the agent with `--stop` appended. To stop a **ClearML Agent** running in the background, run the same command line used to start the agent with `--stop` appended.
For example, to stop the first of the above shown same machine, single gpu agents: For example, to stop the first of the above shown same machine, single gpu agents:
```bash ```bash
clearml-agent daemon --detached --gpus 0 --queue default --docker nvidia/cuda --stop clearml-agent daemon --detached --gpus 0 --queue default --docker nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04 --stop
``` ```
### How do I create an experiment on the ClearML Server? <a name="from-scratch"></a> ### How do I create an experiment on the ClearML Server? <a name="from-scratch"></a>