mirror of
https://github.com/clearml/clearml
synced 2025-02-07 13:23:40 +00:00
Add demo server note to README and number instructions (#470)
This commit is contained in:
parent
d747b2e93e
commit
b010f775bd
32
README.md
32
README.md
@ -68,26 +68,30 @@ Instrumenting these components is the **ClearML-server**, see [Self-Hosting](htt
|
|||||||
#### [Start using ClearML](https://clear.ml/docs/latest/docs/getting_started/ds/ds_first_steps)
|
#### [Start using ClearML](https://clear.ml/docs/latest/docs/getting_started/ds/ds_first_steps)
|
||||||
|
|
||||||
|
|
||||||
First, sign up for free to the [ClearML Hosted Service](https://app.community.clear.ml) (alternatively, you can set up your own server, see [here](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server)).
|
1. Sign up for free to the [ClearML Hosted Service](https://app.community.clear.ml) (alternatively, you can set up your own server, see [here](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server)).
|
||||||
|
|
||||||
Install the `clearml` python package:
|
> **_ClearML Demo Server:_** ClearML no longer uses the demo server by default. To enable the demo server, set the `CLEARML_NO_DEFAULT_SERVER=0`
|
||||||
|
> environment variable. Credentials aren't needed, but experiments launched to the demo server are public, so make sure not
|
||||||
|
> to launch sensitive experiments if using the demo server.
|
||||||
|
|
||||||
```bash
|
1. Install the `clearml` python package:
|
||||||
pip install clearml
|
|
||||||
```
|
|
||||||
|
|
||||||
Connect the ClearML SDK to the server by [creating credentials](https://app.community.clear.ml/profile), then execute the command
|
```bash
|
||||||
|
pip install clearml
|
||||||
|
```
|
||||||
|
|
||||||
|
1. Connect the ClearML SDK to the server by [creating credentials](https://app.community.clear.ml/profile), then execute the command
|
||||||
below and follow the instructions:
|
below and follow the instructions:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
clearml-init
|
clearml-init
|
||||||
```
|
```
|
||||||
|
|
||||||
Add two lines to your code:
|
1. Add two lines to your code:
|
||||||
```python
|
```python
|
||||||
from clearml import Task
|
from clearml import Task
|
||||||
task = Task.init(project_name='examples', task_name='hello world')
|
task = Task.init(project_name='examples', task_name='hello world')
|
||||||
```
|
```
|
||||||
|
|
||||||
You are done, everything your process outputs is now automagically logged into ClearML.
|
You are done, everything your process outputs is now automagically logged into ClearML.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user