diff --git a/docs/clearml_data/data_management_examples/data_man_python.md b/docs/clearml_data/data_management_examples/data_man_python.md index c8e5ea14..5d4adc06 100644 --- a/docs/clearml_data/data_management_examples/data_man_python.md +++ b/docs/clearml_data/data_management_examples/data_man_python.md @@ -79,7 +79,8 @@ After a dataset has been closed, it can no longer be modified. This ensures futu Information about the dataset can be viewed in the WebApp, in the dataset's [details panel](../../webapp/datasets/webapp_dataset_viewing.md#version-details-panel). In the panel's **CONTENT** tab, you can see a table summarizing version contents, including file names, file sizes, and hashes. -![Dataset content tab](../../img/examples_data_management_cifar_dataset.png) +![Dataset content tab](../../img/examples_data_management_cifar_dataset.png#light-mode-only) +![Dataset content tab](../../img/examples_data_management_cifar_dataset_dark.png#dark-mode-only) ## Data Ingestion diff --git a/docs/guides/distributed/distributed_pytorch_example.md b/docs/guides/distributed/distributed_pytorch_example.md index c57e0341..a972e9ac 100644 --- a/docs/guides/distributed/distributed_pytorch_example.md +++ b/docs/guides/distributed/distributed_pytorch_example.md @@ -34,7 +34,8 @@ Task.current_task().upload_artifact( All of these artifacts appear in the main Task under **ARTIFACTS** **>** **OTHER**. -![Task artifacts](../../img/examples_pytorch_distributed_example_09.png) +![Task artifacts](../../img/examples_pytorch_distributed_example_09.png#light-mode-only) +![Task artifacts](../../img/examples_pytorch_distributed_example_09_dark.png#dark-mode-only) ## Scalars @@ -54,7 +55,8 @@ Task.current_task().get_logger().report_scalar( The single scalar plot for loss appears in **SCALARS**. -![Task scalars](../../img/examples_pytorch_distributed_example_08.png) +![Task scalars](../../img/examples_pytorch_distributed_example_08.png#light-mode-only) +![Task scalars](../../img/examples_pytorch_distributed_example_08_dark.png#dark-mode-only) ## Hyperparameters @@ -69,12 +71,15 @@ Task.current_task().connect(param) All the hyperparameters appear in **CONFIGURATION** **>** **HYPERPARAMETERS**. -![Task hyperparameters Args](../../img/examples_pytorch_distributed_example_01.png) +![Task hyperparameters Args](../../img/examples_pytorch_distributed_example_01.png#light-mode-only) +![Task hyperparameters Args](../../img/examples_pytorch_distributed_example_01_dark.png#dark-mode-only) -![Task hyperparameters General ](../../img/examples_pytorch_distributed_example_01a.png) +![Task hyperparameters General ](../../img/examples_pytorch_distributed_example_02.png#light-mode-only) +![Task hyperparameters General ](../../img/examples_pytorch_distributed_example_02_dark.png#dark-mode-only) ## Console Output to the console, including the text messages printed from the main Task object and each subprocess appear in **CONSOLE**. -![Task console log](../../img/examples_pytorch_distributed_example_06.png) \ No newline at end of file +![Task console log](../../img/examples_pytorch_distributed_example_06.png#light-mode-only) +![Task console log](../../img/examples_pytorch_distributed_example_06_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/distributed/subprocess_example.md b/docs/guides/distributed/subprocess_example.md index 42eab687..4f9c80c4 100644 --- a/docs/guides/distributed/subprocess_example.md +++ b/docs/guides/distributed/subprocess_example.md @@ -26,14 +26,17 @@ Task.current_task().connect(additional_parameters) Command line options appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **Args**. -![image](../../img/examples_subprocess_example_01.png) +![Hyperparameter Args](../../img/examples_subprocess_example_01.png#light-mode-only) +![Hyperparameter Args](../../img/examples_subprocess_example_01_dark.png#dark-mode-only) Parameter dictionaries appear in **General**. -![image](../../img/examples_subprocess_example_01a.png) +![Hyperparameter General](../../img/examples_subprocess_example_01a.png#light-mode-only) +![Hyperparameter General](../../img/examples_subprocess_example_01a_dark.png#dark-mode-only) ## Console Output to the console, including the text messages from the Task in each subprocess, appear in **CONSOLE**. -![image](../../img/examples_subprocess_example_02.png) \ No newline at end of file +![Console](../../img/examples_subprocess_example_02.png#light-mode-only) +![Console](../../img/examples_subprocess_example_02_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/frameworks/pytorch/pytorch_distributed_example.md b/docs/guides/frameworks/pytorch/pytorch_distributed_example.md index 31f63da4..1b81edf1 100644 --- a/docs/guides/frameworks/pytorch/pytorch_distributed_example.md +++ b/docs/guides/frameworks/pytorch/pytorch_distributed_example.md @@ -35,7 +35,8 @@ Task.current_task().upload_artifact( All of these artifacts appear in the main Task, **ARTIFACTS** **>** **OTHER**. -![image](../../../img/examples_pytorch_distributed_example_09.png) +![Artifacts](../../../img/examples_pytorch_distributed_example_09.png#light-mode-only) +![Artifacts](../../../img/examples_pytorch_distributed_example_09_dark.png#dark-mode-only) ## Scalars @@ -54,7 +55,8 @@ Task.current_task().get_logger().report_scalar( The single scalar plot for loss appears in **SCALARS**. -![image](../../../img/examples_pytorch_distributed_example_08.png) +![Scalars](../../../img/examples_pytorch_distributed_example_08.png#light-mode-only) +![Scalars](../../../img/examples_pytorch_distributed_example_08_dark.png#dark-mode-only) ## Hyperparameters @@ -69,7 +71,8 @@ Task.current_task().connect(param) Command line options appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **Args**. -![image](../../../img/examples_pytorch_distributed_example_01.png) +![Hyperparamter Args](../../../img/examples_pytorch_distributed_example_01.png#light-mode-only) +![Hyperparamter Args](../../../img/examples_pytorch_distributed_example_01_dark.png#dark-mode-only) Parameter dictionaries appear in the **General** section of **HYPERPARAMETERS**. @@ -78,10 +81,12 @@ param = {'worker_{}_stuff'.format(dist.get_rank()): 'some stuff ' + str(randint( Task.current_task().connect(param) ``` -![image](../../../img/examples_pytorch_distributed_example_02.png) +![Hyperparameter General args](../../../img/examples_pytorch_distributed_example_02.png#light-mode-only) +![Hyperparameter General args](../../../img/examples_pytorch_distributed_example_02_dark.png#dark-mode-only) ## Log Output to the console, including the text messages printed from the main Task object and each subprocess, appears in **CONSOLE**. -![image](../../../img/examples_pytorch_distributed_example_06.png) \ No newline at end of file +![Console log](../../../img/examples_pytorch_distributed_example_06.png#light-mode-only) +![Console log](../../../img/examples_pytorch_distributed_example_06_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/img/examples_pytorch_distributed_example_01.png b/docs/img/examples_pytorch_distributed_example_01.png index 1c757e38..562b4252 100644 Binary files a/docs/img/examples_pytorch_distributed_example_01.png and b/docs/img/examples_pytorch_distributed_example_01.png differ diff --git a/docs/img/examples_pytorch_distributed_example_01_dark.png b/docs/img/examples_pytorch_distributed_example_01_dark.png new file mode 100644 index 00000000..7ee16907 Binary files /dev/null and b/docs/img/examples_pytorch_distributed_example_01_dark.png differ diff --git a/docs/img/examples_pytorch_distributed_example_01a.png b/docs/img/examples_pytorch_distributed_example_01a.png deleted file mode 100644 index 05561153..00000000 Binary files a/docs/img/examples_pytorch_distributed_example_01a.png and /dev/null differ diff --git a/docs/img/examples_pytorch_distributed_example_02.png b/docs/img/examples_pytorch_distributed_example_02.png index d89d0378..b28509cc 100644 Binary files a/docs/img/examples_pytorch_distributed_example_02.png and b/docs/img/examples_pytorch_distributed_example_02.png differ diff --git a/docs/img/examples_pytorch_distributed_example_02_dark.png b/docs/img/examples_pytorch_distributed_example_02_dark.png new file mode 100644 index 00000000..0fb9ae1f Binary files /dev/null and b/docs/img/examples_pytorch_distributed_example_02_dark.png differ diff --git a/docs/img/examples_pytorch_distributed_example_06.png b/docs/img/examples_pytorch_distributed_example_06.png index 216dae82..a399be1e 100644 Binary files a/docs/img/examples_pytorch_distributed_example_06.png and b/docs/img/examples_pytorch_distributed_example_06.png differ diff --git a/docs/img/examples_pytorch_distributed_example_06_dark.png b/docs/img/examples_pytorch_distributed_example_06_dark.png new file mode 100644 index 00000000..1c633c5f Binary files /dev/null and b/docs/img/examples_pytorch_distributed_example_06_dark.png differ diff --git a/docs/img/examples_pytorch_distributed_example_08.png b/docs/img/examples_pytorch_distributed_example_08.png index 206b82eb..84fd3722 100644 Binary files a/docs/img/examples_pytorch_distributed_example_08.png and b/docs/img/examples_pytorch_distributed_example_08.png differ diff --git a/docs/img/examples_pytorch_distributed_example_08_dark.png b/docs/img/examples_pytorch_distributed_example_08_dark.png new file mode 100644 index 00000000..3a7ab8f3 Binary files /dev/null and b/docs/img/examples_pytorch_distributed_example_08_dark.png differ diff --git a/docs/img/examples_pytorch_distributed_example_09.png b/docs/img/examples_pytorch_distributed_example_09.png index 3e5d02e8..2880774a 100644 Binary files a/docs/img/examples_pytorch_distributed_example_09.png and b/docs/img/examples_pytorch_distributed_example_09.png differ diff --git a/docs/img/examples_pytorch_distributed_example_09_dark.png b/docs/img/examples_pytorch_distributed_example_09_dark.png new file mode 100644 index 00000000..df6a551c Binary files /dev/null and b/docs/img/examples_pytorch_distributed_example_09_dark.png differ diff --git a/docs/img/examples_subprocess_example_01.png b/docs/img/examples_subprocess_example_01.png index 44b564ba..9672a54a 100644 Binary files a/docs/img/examples_subprocess_example_01.png and b/docs/img/examples_subprocess_example_01.png differ diff --git a/docs/img/examples_subprocess_example_01_dark.png b/docs/img/examples_subprocess_example_01_dark.png new file mode 100644 index 00000000..a5694b96 Binary files /dev/null and b/docs/img/examples_subprocess_example_01_dark.png differ diff --git a/docs/img/examples_subprocess_example_01a.png b/docs/img/examples_subprocess_example_01a.png index b96b6c68..da5ebb94 100644 Binary files a/docs/img/examples_subprocess_example_01a.png and b/docs/img/examples_subprocess_example_01a.png differ diff --git a/docs/img/examples_subprocess_example_01a_dark.png b/docs/img/examples_subprocess_example_01a_dark.png new file mode 100644 index 00000000..7c652229 Binary files /dev/null and b/docs/img/examples_subprocess_example_01a_dark.png differ diff --git a/docs/img/examples_subprocess_example_02.png b/docs/img/examples_subprocess_example_02.png index 2e5049fb..b636458e 100644 Binary files a/docs/img/examples_subprocess_example_02.png and b/docs/img/examples_subprocess_example_02.png differ diff --git a/docs/img/examples_subprocess_example_02_dark.png b/docs/img/examples_subprocess_example_02_dark.png new file mode 100644 index 00000000..edb95564 Binary files /dev/null and b/docs/img/examples_subprocess_example_02_dark.png differ