Small edits (#174)

This commit is contained in:
pollfly
2022-01-24 15:42:17 +02:00
committed by GitHub
parent be9761012e
commit c7591a3a08
9 changed files with 39 additions and 25 deletions

View File

@@ -13,7 +13,7 @@ The following page provides a reference to `clearml-data`'s CLI commands.
### Creating a Dataset
```bash
clearml-data create --project <project_name> --name <dataset_name> --parents <existing_dataset_id>`
clearml-data create --project <project_name> --name <dataset_name> --parents <existing_dataset_id>
```
Creates a new dataset. <br/>
@@ -132,7 +132,7 @@ Once a dataset is finalized, it can no longer be modified.
### Syncing Local Storage
```
clearml-data sync [--id <dataset_id] --folder <folder_location> [--parents '<parent_id>']`
clearml-data sync [--id <dataset_id] --folder <folder_location> [--parents '<parent_id>']
```
This option syncs a folder's content with ClearML. It is useful in case a user has a single point of truth (i.e. a folder) which
updates from time to time.

View File

@@ -36,7 +36,10 @@ This script downloads the data and `dataset_path` contains the path to the downl
```python
from clearml import Dataset
dataset = Dataset.create(dataset_name="cifar_dataset", dataset_project="dataset examples" )
dataset = Dataset.create(
dataset_name="cifar_dataset",
dataset_project="dataset examples"
)
```
This creates a data processing task called `cifar_dataset` in the `dataset examples` project, which