mirror of
https://github.com/clearml/clearml-docs
synced 2025-01-31 06:27:22 +00:00
Small edits (#576)
This commit is contained in:
parent
d925f66467
commit
0dd38c11f6
@ -302,7 +302,7 @@ You can work with datasets in **Offline Mode**, in which all the data and logs a
|
||||
which can later be uploaded to the [ClearML Server](../deploying_clearml/clearml_server.md).
|
||||
|
||||
You can enable offline mode in one of the following ways:
|
||||
* Before creating a dataset, use [`Dataset.set_offline()`](../references/sdk/dataset.md#datasetsetoffline) and set the
|
||||
* Before creating a dataset, use [`Dataset.set_offline()`](../references/sdk/dataset.md#datasetset_offline) and set the
|
||||
`offline_mode` argument to `True`:
|
||||
|
||||
```python
|
||||
@ -331,7 +331,7 @@ ClearML Task: Offline session stored in /home/user/.clearml/cache/offline/b78684
|
||||
Note that in offline mode, any methods that require communicating with the server have no effect (e.g. `squash()`,
|
||||
`finalize()`, `get_local_copy()`, `get()`, `move_to_project()`, etc.).
|
||||
|
||||
Upload the offline dataset to the ClearML Server using [`Dataset.import_offline_session()`](../references/sdk/dataset.md#datasetimportofflinesession).
|
||||
Upload the offline dataset to the ClearML Server using [`Dataset.import_offline_session()`](../references/sdk/dataset.md#datasetimport_offline_session).
|
||||
|
||||
```python
|
||||
Dataset.import_offline_session(session_folder_zip="<path_to_offline_dataset>", upload=True, finalize=True")
|
||||
|
@ -44,7 +44,7 @@ To add some files to this newly created dataset version, call the `add_files` me
|
||||
|
||||
A really useful thing we can do with the python interface is adding some interesting statistics about the dataset itself, such as a plot for example. Here we simply report a histogram on the amount of files in the train and test folders. You can add anything to a dataset that you can add to a ClearML task, so go nuts!
|
||||
|
||||
Finally, upload the dataset and then finalize it, or just set `auto_upload` to `true` to make it a one liner.
|
||||
Finally, upload the dataset and then finalize it, or just set `auto_upload` to `true` to make it a one-liner.
|
||||
|
||||
In the web UI, we can now see the details of our dataset version by clicking on the Dataset button on the left. When we click on our newly created dataset here, we get an overview of our latest version, of course we have only one for now.
|
||||
|
||||
|
@ -46,11 +46,11 @@ title: Version 1.11
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
* Fix UI experiment plot history navigation not working correctly [ClearML GitHub issue #955]("https://github.com/allegroai/clearml/issues/955)
|
||||
* Support browser native context menu (via right click) in UI experiment hyperparameters [ClearML GitHub issue #990]("https://github.com/allegroai/clearml/issues/990)
|
||||
* Fix `series` argument not in UI experiment debug samples when using `logger.report_media` [ClearML GitHub issue #685]("https://github.com/allegroai/clearml/issues/685)
|
||||
* Fix smoothing bar not displayed in UI experiment comparison scalars in full screen mode [ClearML GitHub issue #996]("https://github.com/allegroai/clearml/issues/996)
|
||||
* Fix uploading image in UI report raises error [ClearML GitHub issue #1020]("https://github.com/allegroai/clearml/issues/1020)
|
||||
* Fix UI experiment plot history navigation not working correctly [ClearML GitHub issue #955](https://github.com/allegroai/clearml/issues/955)
|
||||
* Support browser native context menu (via right click) in UI experiment hyperparameters [ClearML GitHub issue #990](https://github.com/allegroai/clearml/issues/990)
|
||||
* Fix `series` argument not in UI experiment debug samples when using `logger.report_media` [ClearML GitHub issue #685](https://github.com/allegroai/clearml/issues/685)
|
||||
* Fix smoothing bar not displayed in UI experiment comparison scalars in full screen mode [ClearML GitHub issue #996](https://github.com/allegroai/clearml/issues/996)
|
||||
* Fix uploading image in UI report raises error [ClearML GitHub issue #1020](https://github.com/allegroai/clearml/issues/1020)
|
||||
* Add mobile device support for UI experiment tab selection
|
||||
* Fix deleting models doesn't remove their weight files from fileserver
|
||||
* Fix "Load More" button does not work in UI experiment comparison "Add Experiment" modal
|
||||
|
Loading…
Reference in New Issue
Block a user