diff --git a/docs/faq.md b/docs/faq.md index 3b5f642c..097a25ea 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -137,7 +137,8 @@ the following numbers are displayed: * API server version * API version -![Server version information](img/faq_server_versions.png) +![Server version information](img/faq_server_versions.png#light-mode-only) +![Server version information](img/faq_server_versions_dark.png#dark-mode-only) ClearML Python package information can be obtained by using `pip freeze`. @@ -593,7 +594,8 @@ Due to speed/optimization issues, the console displays only the last several hun You can always download the full log as a file using the ClearML Web UI. In the **ClearML Web UI >** task's **CONSOLE** tab, click `Download full log`. -![Download console log](img/faq_download_console_log.png) +![Download console log](img/faq_download_console_log.png#light-mode-only) +![Download console log](img/faq_download_console_log_dark.png#dark-mode-only)
@@ -604,17 +606,19 @@ and accuracy values of several tasks. In the task comparison page, under the **H you can visualize tasks' hyperparameter values in relation to performance metrics in a scatter plot or parallel coordinates plot: * [Scatter plot](webapp/webapp_exp_comparing.md#scatter-plot): View the correlation between a selected hyperparameter and - metric. For example, the image below shows a scatter plot that displays the values of a performance metric (`epoch_accuracy`) + metric. For example, the image below shows a scatter plot that displays the values of a performance metric (`accuracy`) and a hyperparameter (`epochs`) of a few tasks: - ![Scatter plot comparison](img/faq_compare_scatter.png) + ![Scatter plot comparison](img/faq_compare_scatter.png#light-mode-only) + ![Scatter plot comparison](img/faq_compare_scatter_dark.png#dark-mode-only) * [Parallel coordinates plot](webapp/webapp_exp_comparing.md#parallel-coordinates-mode): View the impact of hyperparameters on selected metric(s). For example, the image below shows - a parallel coordinates plot which displays the values of selected hyperparameters (`base_lr`, `batch_size`, and - `number_of_epochs`) and a performance metric (`accuracy`) of three tasks: + a parallel coordinates plot which displays the values of selected hyperparameters (`epochs`, `lr`, and `batch_size`) + and a performance metric (`accuracy`) of a few tasks: - ![Parallel Coordinates](img/compare_parallel_coordinates.png) + ![Parallel Coordinates](img/compare_parallel_coordinates.png#light-mode-only) + ![Parallel Coordinates](img/compare_parallel_coordinates_dark.png#dark-mode-only)
diff --git a/docs/img/apps_hpo.png b/docs/img/apps_hpo.png deleted file mode 100644 index 01529f0d..00000000 Binary files a/docs/img/apps_hpo.png and /dev/null differ diff --git a/docs/img/compare_parallel_coordinates.png b/docs/img/compare_parallel_coordinates.png index 4b3b1283..81a265c9 100644 Binary files a/docs/img/compare_parallel_coordinates.png and b/docs/img/compare_parallel_coordinates.png differ diff --git a/docs/img/compare_parallel_coordinates_dark.png b/docs/img/compare_parallel_coordinates_dark.png new file mode 100644 index 00000000..dcc24c6d Binary files /dev/null and b/docs/img/compare_parallel_coordinates_dark.png differ diff --git a/docs/img/faq_compare_scatter.png b/docs/img/faq_compare_scatter.png index c79fbc3a..8bb298fb 100644 Binary files a/docs/img/faq_compare_scatter.png and b/docs/img/faq_compare_scatter.png differ diff --git a/docs/img/faq_compare_scatter_dark.png b/docs/img/faq_compare_scatter_dark.png new file mode 100644 index 00000000..82e0e4fa Binary files /dev/null and b/docs/img/faq_compare_scatter_dark.png differ diff --git a/docs/img/faq_download_console_log.png b/docs/img/faq_download_console_log.png index f642934c..ccc6dd86 100644 Binary files a/docs/img/faq_download_console_log.png and b/docs/img/faq_download_console_log.png differ diff --git a/docs/img/faq_download_console_log_dark.png b/docs/img/faq_download_console_log_dark.png new file mode 100644 index 00000000..f274a8ee Binary files /dev/null and b/docs/img/faq_download_console_log_dark.png differ diff --git a/docs/img/faq_server_versions.png b/docs/img/faq_server_versions.png index 07f1ed02..0c097e2c 100644 Binary files a/docs/img/faq_server_versions.png and b/docs/img/faq_server_versions.png differ diff --git a/docs/img/faq_server_versions_dark.png b/docs/img/faq_server_versions_dark.png new file mode 100644 index 00000000..89b6ed6d Binary files /dev/null and b/docs/img/faq_server_versions_dark.png differ diff --git a/docs/img/fundamentals_logger_reported_images.png b/docs/img/fundamentals_logger_reported_images.png deleted file mode 100644 index 8c09a381..00000000 Binary files a/docs/img/fundamentals_logger_reported_images.png and /dev/null differ diff --git a/docs/img/fundamentals_logger_results.png b/docs/img/fundamentals_logger_results.png deleted file mode 100644 index 0707bb29..00000000 Binary files a/docs/img/fundamentals_logger_results.png and /dev/null differ diff --git a/docs/img/fundamentals_models.png b/docs/img/fundamentals_models.png deleted file mode 100644 index b57c5008..00000000 Binary files a/docs/img/fundamentals_models.png and /dev/null differ diff --git a/docs/img/pipelines_DAG.png b/docs/img/pipelines_DAG.png deleted file mode 100644 index de3faf60..00000000 Binary files a/docs/img/pipelines_DAG.png and /dev/null differ diff --git a/docs/img/pipelines_new_run.png b/docs/img/pipelines_new_run.png index 67b40acf..4bcda63f 100644 Binary files a/docs/img/pipelines_new_run.png and b/docs/img/pipelines_new_run.png differ diff --git a/docs/img/pipelines_new_run_dark.png b/docs/img/pipelines_new_run_dark.png new file mode 100644 index 00000000..d517eef9 Binary files /dev/null and b/docs/img/pipelines_new_run_dark.png differ diff --git a/docs/pipelines/pipelines.md b/docs/pipelines/pipelines.md index 2c0e742d..0860087c 100644 --- a/docs/pipelines/pipelines.md +++ b/docs/pipelines/pipelines.md @@ -103,7 +103,12 @@ You can rerun the pipeline programmatically or via the ClearML Web UI: * To launch a new pipeline run in the UI, click **+ NEW RUN** in the [pipeline runs](../webapp/pipelines/webapp_pipeline_table.md) page. This opens a **NEW RUN** modal, where you can set the run's parameters and execution queue. - ![Pipeline params UI](../img/pipelines_new_run.png) +
+ + ![Pipeline params UI](../img/pipelines_new_run.png#light-mode-only) + ![Pipeline params UI](../img/pipelines_new_run_dark.png#dark-mode-only) + +
The new pipeline run will be executed through the execution queue by a ClearML agent. The agent will rebuild the pipeline according to the configuration and DAG that was captured in the original run, and override the original diff --git a/docs/pipelines/pipelines_sdk_function_decorators.md b/docs/pipelines/pipelines_sdk_function_decorators.md index 97f43e75..5345d116 100644 --- a/docs/pipelines/pipelines_sdk_function_decorators.md +++ b/docs/pipelines/pipelines_sdk_function_decorators.md @@ -67,7 +67,12 @@ def main(pickle_url, mock_parameter='mock'): When the function is called, a corresponding ClearML Controller Task is created: its arguments are logged as the task's parameters. When launching a new pipeline run from the [UI](../webapp/pipelines/webapp_pipeline_page.md), you can modify their values for the new run. -![Pipeline new run](../img/pipelines_new_run.png) +
+ +![Pipeline new run](../img/pipelines_new_run.png#light-mode-only) +![Pipeline new run](../img/pipelines_new_run_dark.png#dark-mode-only) + +
## @PipelineDecorator.component Using the [`@PipelineDecorator.component`](../references/sdk/automation_controller_pipelinedecorator.md#pipelinedecoratorcomponent) diff --git a/docs/pipelines/pipelines_sdk_tasks.md b/docs/pipelines/pipelines_sdk_tasks.md index 36eefe5e..f1d03fd8 100644 --- a/docs/pipelines/pipelines_sdk_tasks.md +++ b/docs/pipelines/pipelines_sdk_tasks.md @@ -42,7 +42,12 @@ These parameters can be programmatically injected into a step's configuration us When launching a new pipeline run from the [UI](../webapp/pipelines/webapp_pipeline_table.md), you can modify their values for the new run. -![Pipeline new run](../img/pipelines_new_run.png) +
+ +![Pipeline new run](../img/pipelines_new_run.png#light-mode-only) +![Pipeline new run](../img/pipelines_new_run_dark.png#dark-mode-only) + +
### Additional Configuration You can connect configuration dictionaries or files to a pipeline controller using