mirror of
https://github.com/clearml/clearml-docs
synced 2025-06-26 18:17:44 +00:00
Small edits (#174)
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user