diff --git a/docs/clearml_agent.md b/docs/clearml_agent.md index 0750c4b8..768b8e9a 100644 --- a/docs/clearml_agent.md +++ b/docs/clearml_agent.md @@ -17,7 +17,7 @@ title: ClearML Agent **ClearML Agent** is a virtual environment and execution manager for DL / ML solutions on GPU machines. It integrates with the **ClearML Python Package** and ClearML Server to provide a full AI cluster solution.
Its main focus is around: -- Reproducing tasks, including their complete environments. +- Reproducing task runs, including their complete environments. - Scaling workflows on multiple target machines. ClearML Agent executes a task or other workflow by reproducing the state of the code from the original machine @@ -46,7 +46,7 @@ install Python, so make sure to use a container or environment with the version While the agent is running, it continuously reports system metrics to the ClearML Server (these can be monitored in the [**Orchestration**](webapp/webapp_workers_queues.md) page). -Continue using ClearML Agent once it is running on a target machine. Reproduce tasks and execute +Continue using ClearML Agent once it is running on a target machine. Reproducing task runs and execute automated workflows in one (or both) of the following ways: * Programmatically (using [`Task.enqueue()`](references/sdk/task.md#taskenqueue) or [`Task.execute_remotely()`](references/sdk/task.md#execute_remotely)) * Through the ClearML Web UI (without working directly with code), by cloning tasks and enqueuing them to the diff --git a/docs/getting_started/remote_execution.md b/docs/getting_started/remote_execution.md index 3f7fab5f..dbb98ce6 100644 --- a/docs/getting_started/remote_execution.md +++ b/docs/getting_started/remote_execution.md @@ -14,7 +14,7 @@ powerful remote machine. This is useful for: * Managing execution through ClearML's queue system. This guide focuses on transitioning a locally executed process to a remote machine for scalable execution. To learn how -to reproduce a previously executed process on a remote machine, see [Reproducing Tasks](reproduce_tasks.md). +to reproduce a previously executed process on a remote machine, see [Reproducing Task Runs](reproduce_tasks.md). ## Running a Task Remotely diff --git a/docs/getting_started/reproduce_tasks.md b/docs/getting_started/reproduce_tasks.md index 57bb1a98..4f73077b 100644 --- a/docs/getting_started/reproduce_tasks.md +++ b/docs/getting_started/reproduce_tasks.md @@ -1,5 +1,5 @@ --- -title: Reproducing Tasks +title: Reproducing Task Runs --- :::note diff --git a/docs/guides/frameworks/keras/jupyter.md b/docs/guides/frameworks/keras/jupyter.md index 005e2414..bbb3864a 100644 --- a/docs/guides/frameworks/keras/jupyter.md +++ b/docs/guides/frameworks/keras/jupyter.md @@ -18,22 +18,26 @@ The example does the following: The loss and accuracy metric scalar plots appear in **SCALARS**, along with the resource utilization plots, which are titled **:monitor: machine**. -![image](../../../img/examples_keras_jupyter_08.png) +![Scalars](../../../img/examples_keras_jupyter_08.png#light-mode-only) +![Scalars](../../../img/examples_keras_jupyter_08_dark.png#dark-mode-only) ## Plots The example calls Matplotlib methods to create several sample plots, and TensorBoard methods to plot histograms for layer density. They appear in **PLOTS**. -![image](../../../img/examples_keras_jupyter_03.png) +![Plots 1](../../../img/examples_keras_jupyter_03.png#light-mode-only) +![Plots 1](../../../img/examples_keras_jupyter_03_dark.png#dark-mode-only) -![image](../../../img/examples_keras_jupyter_03a.png) +![Plots 2](../../../img/examples_keras_jupyter_03a.png#light-mode-only) +![Plots 2](../../../img/examples_keras_jupyter_03a_dark.png#dark-mode-only) ## Debug Samples The example calls Matplotlib methods to log debug sample images. They appear in **DEBUG SAMPLES**. -![image](../../../img/examples_keras_jupyter_04.png) +![Debug Samples](../../../img/examples_keras_jupyter_04.png#light-mode-only) +![Debug Samples](../../../img/examples_keras_jupyter_04_dark.png#dark-mode-only) ## Hyperparameters @@ -55,17 +59,20 @@ task_params['hidden_dim'] = 512 Parameter dictionaries appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **General**. -![image](../../../img/examples_keras_jupyter_20.png) +![General Hyperparameters](../../../img/examples_keras_jupyter_20.png#light-mode-only) +![General Hyperparameters](../../../img/examples_keras_jupyter_20_dark.png#dark-mode-only) The TensorFlow Definitions appear in the **TF_DEFINE** subsection. -![image](../../../img/examples_keras_jupyter_21.png) +![TF Define](../../../img/examples_keras_jupyter_21.png#light-mode-only) +![TF Define](../../../img/examples_keras_jupyter_21_dark.png#dark-mode-only) ## Console Text printed to the console for training appears in **CONSOLE**. -![image](../../../img/examples_keras_jupyter_07.png) +![Console Log](../../../img/examples_keras_jupyter_07.png#light-mode-only) +![Console Log](../../../img/examples_keras_jupyter_07_dark.png#dark-mode-only) ## Artifacts @@ -74,9 +81,11 @@ created using Keras. The task info panel shows model tracking, including the model name and design in **ARTIFACTS** **>** **Output Model**. -![image](../../../img/examples_keras_jupyter_23.png) +![Artifacts](../../../img/examples_keras_jupyter_23.png#light-mode-only) +![Artifacts](../../../img/examples_keras_jupyter_23_dark.png#dark-mode-only) Clicking on the model name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the model's details and access the model. -![image](../../../img/examples_keras_jupyter_24.png) \ No newline at end of file +![Model details](../../../img/examples_keras_jupyter_24.png#light-mode-only) +![Model details](../../../img/examples_keras_jupyter_24_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/frameworks/keras/keras_tensorboard.md b/docs/guides/frameworks/keras/keras_tensorboard.md index f07f2c5e..fc9cfb6c 100644 --- a/docs/guides/frameworks/keras/keras_tensorboard.md +++ b/docs/guides/frameworks/keras/keras_tensorboard.md @@ -25,31 +25,36 @@ The example script does the following: The loss and accuracy metric scalar plots appear in **SCALARS**, along with the resource utilization plots, which are titled **:monitor: machine**. -![image](../../../img/examples_keras_01.png) +![Scalars](../../../img/examples_keras_01.png#light-mode-only) +![Scalars](../../../img/examples_keras_01_dark.png#dark-mode-only) ## Histograms Histograms for layer density appear in **PLOTS**. -![image](../../../img/examples_keras_02.png) +![Histograms](../../../img/examples_keras_02.png#light-mode-only) +![Histograms](../../../img/examples_keras_02_dark.png#dark-mode-only) ## Hyperparameters -ClearML automatically logs command line options generated with `argparse`, and TensorFlow Definitions. +ClearML automatically logs command line options generated with `argparse` and TensorFlow Definitions. Command line options appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **Args**. -![image](../../../img/examples_keras_00.png) +![Hyperparameters Args](../../../img/examples_keras_00.png#light-mode-only) +![Hyperparameters Args](../../../img/examples_keras_00_dark.png#dark-mode-only) TensorFlow Definitions appear in **TF_DEFINE**. -![image](../../../img/examples_keras_00a.png) +![TF Defines](../../../img/examples_keras_00a.png#light-mode-only) +![TF Defines](../../../img/examples_keras_00a_dark.png#dark-mode-only) ## Console Text printed to the console for training progress, as well as all other console output, appear in **CONSOLE**. -![image](../../../img/keras_colab_01.png) +![Console Log](../../../img/keras_colab_01.png#light-mode-only) +![Console Log](../../../img/keras_colab_01_dark.png#dark-mode-only) ## Configuration Objects @@ -64,4 +69,5 @@ task.connect_configuration( It appears in **CONFIGURATION** **>** **CONFIGURATION OBJECTS** **>** **MyConfig**. -![image](../../../img/keras_colab_02.png) \ No newline at end of file +![Custom configuration](../../../img/keras_colab_02.png#light-mode-only) +![Custom configuration](../../../img/keras_colab_02_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/frameworks/scikit-learn/sklearn_joblib_example.md b/docs/guides/frameworks/scikit-learn/sklearn_joblib_example.md index 5d6e7a19..39b2f71d 100644 --- a/docs/guides/frameworks/scikit-learn/sklearn_joblib_example.md +++ b/docs/guides/frameworks/scikit-learn/sklearn_joblib_example.md @@ -12,16 +12,19 @@ and `matplotlib` to create a scatter diagram. When the script runs, it creates a ClearML automatically logs the scatter plot, which appears in the [task's page](../../../webapp/webapp_exp_track_visual.md) in the ClearML web UI, under **PLOTS**. -![image](../../../img/examples_sklearn_joblib_example_06.png) +![Plots](../../../img/examples_sklearn_joblib_example_06.png#light-mode-only) +![Plots](../../../img/examples_sklearn_joblib_example_06_dark.png#dark-mode-only) ## Artifacts Models created by the task appear in the task's **ARTIFACTS** tab. -![image](../../../img/examples_sklearn_joblib_example_01.png) +![Artifacts](../../../img/examples_sklearn_joblib_example_01.png#light-mode-only) +![Artifacts](../../../img/examples_sklearn_joblib_example_01_dark.png#dark-mode-only) Clicking on the model name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the model's details and access the model. -![image](../../../img/examples_sklearn_joblib_example_02.png) \ No newline at end of file +![Model details](../../../img/examples_sklearn_joblib_example_02.png#light-mode-only) +![Model details](../../../img/examples_sklearn_joblib_example_02_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/frameworks/tensorboardx/tensorboardx.md b/docs/guides/frameworks/tensorboardx/tensorboardx.md index 57dae9de..a2b2fd47 100644 --- a/docs/guides/frameworks/tensorboardx/tensorboardx.md +++ b/docs/guides/frameworks/tensorboardx/tensorboardx.md @@ -16,30 +16,35 @@ The script does the following: The loss and accuracy metric scalar plots appear in the task's page in the **ClearML web UI**, under **SCALARS**. The also includes resource utilization plots, which are titled **:monitor: machine**. -![image](../../../img/examples_pytorch_tensorboardx_03.png) +![Scalars](../../../img/examples_pytorch_tensorboardx_03.png#light-mode-only) +![Scalars](../../../img/examples_pytorch_tensorboardx_03_dark.png#dark-mode-only) ## Hyperparameters ClearML automatically logs command line options defined with `argparse`. They appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **Args**. -![image](../../../img/examples_pytorch_tensorboardx_01.png) +![Hyperparameters](../../../img/examples_pytorch_tensorboardx_01.png#light-mode-only) +![Hyperparameters](../../../img/examples_pytorch_tensorboardx_01_dark.png#dark-mode-only) ## Console Text printed to the console for training progress, as well as all other console output, appear in **CONSOLE**. -![image](../../../img/examples_pytorch_tensorboardx_02.png) +![Console log](../../../img/examples_pytorch_tensorboardx_02.png#light-mode-only) +![Console log](../../../img/examples_pytorch_tensorboardx_02_dark.png#dark-mode-only) ## Artifacts Models created by the task appear in the task's **ARTIFACTS** tab. ClearML automatically logs and tracks models and any snapshots created using PyTorch. -![image](../../../img/examples_pytorch_tensorboardx_04.png) +![Artifacts](../../../img/examples_pytorch_tensorboardx_04.png#light-mode-only) +![Artifacts](../../../img/examples_pytorch_tensorboardx_04_dark.png#dark-mode-only) Clicking on the model's name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the model's details and access the model. -![image](../../../img/examples_pytorch_tensorboardx_model.png) +![Model details](../../../img/examples_pytorch_tensorboardx_model.png#light-mode-only) +![Model details](../../../img/examples_pytorch_tensorboardx_model_dark.png#dark-mode-only) diff --git a/docs/guides/frameworks/tensorboardx/video_tensorboardx.md b/docs/guides/frameworks/tensorboardx/video_tensorboardx.md index 258e1eb1..fa909233 100644 --- a/docs/guides/frameworks/tensorboardx/video_tensorboardx.md +++ b/docs/guides/frameworks/tensorboardx/video_tensorboardx.md @@ -14,5 +14,6 @@ the `examples` project. ClearML automatically captures the video data that is added to the `SummaryWriter` object, using the `add_video` method. The video appears in the task's **DEBUG SAMPLES** tab. -![Debug Samples](../../../img/examples_tensorboardx_debug.png) +![Debug Samples](../../../img/examples_tensorboardx_debug.png#light-mode-only) +![Debug Samples](../../../img/examples_tensorboardx_debug_dark.png#dark-mode-only) diff --git a/docs/guides/frameworks/tensorflow/integration_keras_tuner.md b/docs/guides/frameworks/tensorflow/integration_keras_tuner.md index 5db4d120..8fbba5fb 100644 --- a/docs/guides/frameworks/tensorflow/integration_keras_tuner.md +++ b/docs/guides/frameworks/tensorflow/integration_keras_tuner.md @@ -44,28 +44,33 @@ When the script runs, it logs: ClearML logs the scalars from training each network. They appear in the task's page in the **ClearML web UI**, under **SCALARS**. -![image](../../../img/integration_keras_tuner_06.png) +![Scalars](../../../img/integration_keras_tuner_06.png#light-mode-only) +![Scalars](../../../img/integration_keras_tuner_06_dark.png#dark-mode-only) ## Summary of Hyperparameter Optimization ClearML automatically logs the parameters of each task run in the hyperparameter search. They appear in tabular form in **PLOTS**. -![image](../../../img/integration_keras_tuner_07.png) +![HPO summary plot](../../../img/integration_keras_tuner_07.png#light-mode-only) +![HPO summary plot](../../../img/integration_keras_tuner_07_dark.png#dark-mode-only) ## Artifacts ClearML automatically stores the output model. It appears in **ARTIFACTS** **>** **Output Model**. -![image](../../../img/integration_keras_tuner_03.png) +![Artifact](../../../img/integration_keras_tuner_03.png#light-mode-only) +![Artifact](../../../img/integration_keras_tuner_03_dark.png#dark-mode-only) Model details, such as snap locations, appear in the **MODELS** tab. -![image](../../../img/integration_keras_tuner_04.png) +![Model details](../../../img/integration_keras_tuner_04.png#light-mode-only) +![Model details](../../../img/integration_keras_tuner_04_dark.png#dark-mode-only) The model configuration is stored with the model. -![image](../../../img/integration_keras_tuner_05.png) +![Model configuration](../../../img/integration_keras_tuner_05.png#light-mode-only) +![Model configuration](../../../img/integration_keras_tuner_05_dark.png#dark-mode-only) ## Configuration Objects @@ -73,12 +78,14 @@ The model configuration is stored with the model. ClearML automatically logs the TensorFlow Definitions, which appear in **CONFIGURATION** **>** **HYPERPARAMETERS**. -![image](../../../img/integration_keras_tuner_01.png) +![Hyperparameters](../../../img/integration_keras_tuner_01.png#light-mode-only) +![Hyperparameters](../../../img/integration_keras_tuner_01_dark.png#dark-mode-only) ### Configuration The Task configuration appears in **CONFIGURATION** **>** **General**. -![image](../../../img/integration_keras_tuner_02.png) +![Configuration object](../../../img/integration_keras_tuner_02.png#light-mode-only) +![Configuration object](../../../img/integration_keras_tuner_02_dark.png#dark-mode-only) diff --git a/docs/guides/frameworks/tensorflow/tensorboard_pr_curve.md b/docs/guides/frameworks/tensorflow/tensorboard_pr_curve.md index 3a62f229..24145b65 100644 --- a/docs/guides/frameworks/tensorflow/tensorboard_pr_curve.md +++ b/docs/guides/frameworks/tensorflow/tensorboard_pr_curve.md @@ -20,24 +20,29 @@ In the **ClearML Web UI**, the PR Curve summaries appear in the task's page unde * Blue PR curves - ![image](../../../img/examples_tensorboard_pr_curve_01.png) + ![Blue PR curves](../../../img/examples_tensorboard_pr_curve_01.png#light-mode-only) + ![Blue PR curves](../../../img/examples_tensorboard_pr_curve_01_dark.png#dark-mode-only) * Green PR curves - ![image](../../../img/examples_tensorboard_pr_curve_02.png) + ![Green PR curves](../../../img/examples_tensorboard_pr_curve_02.png#light-mode-only) + ![Green PR curves](../../../img/examples_tensorboard_pr_curve_02_dark.png#dark-mode-only) * Red PR curves - ![image](../../../img/examples_tensorboard_pr_curve_03.png) + ![Red PR curves](../../../img/examples_tensorboard_pr_curve_03.png#light-mode-only) + ![Red PR curves](../../../img/examples_tensorboard_pr_curve_03_dark.png#dark-mode-only) ## Hyperparameters ClearML automatically logs TensorFlow Definitions. They appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **TF_DEFINE**. -![image](../../../img/examples_tensorboard_pr_curve_04.png) +![Hyperparameters](../../../img/examples_tensorboard_pr_curve_04.png#light-mode-only) +![Hyperparameters](../../../img/examples_tensorboard_pr_curve_04_dark.png#dark-mode-only) ## Console -All other console output appears in **CONSOLE**. +All console output appears in **CONSOLE** tab. -![image](../../../img/examples_tensorboard_pr_curve_05.png) +![Console log](../../../img/examples_tensorboard_pr_curve_05.png#light-mode-only) +![Console log](../../../img/examples_tensorboard_pr_curve_05_dark.png#dark-mode-only) diff --git a/docs/guides/frameworks/tensorflow/tensorboard_toy.md b/docs/guides/frameworks/tensorflow/tensorboard_toy.md index d112a4b9..bd622df6 100644 --- a/docs/guides/frameworks/tensorflow/tensorboard_toy.md +++ b/docs/guides/frameworks/tensorflow/tensorboard_toy.md @@ -14,25 +14,29 @@ project. The `tf.summary.scalar` output appears in the ClearML web UI, in the task's **SCALARS**. Resource utilization plots, which are titled **:monitor: machine**, also appear in the **SCALARS** tab. -![image](../../../img/examples_tensorboard_toy_03.png) +![Scalars](../../../img/examples_tensorboard_toy_03.png#light-mode-only) +![Scalars](../../../img/examples_tensorboard_toy_03_dark.png#dark-mode-only) ## Plots The `tf.summary.histogram` output appears in **PLOTS**. -![image](../../../img/examples_tensorboard_toy_04.png) +![Plots](../../../img/examples_tensorboard_toy_04.png#light-mode-only) +![Plots](../../../img/examples_tensorboard_toy_04_dark.png#dark-mode-only) ## Debug Samples ClearML automatically tracks images and text output to TensorFlow. They appear in **DEBUG SAMPLES**. -![image](../../../img/examples_tensorboard_toy_05.png) +![Debug Samples](../../../img/examples_tensorboard_toy_05.png#light-mode-only) +![Debug Samples](../../../img/examples_tensorboard_toy_05_dark.png#dark-mode-only) ## Hyperparameters ClearML automatically logs TensorFlow Definitions. They appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **TF_DEFINE**. -![image](../../../img/examples_tensorboard_toy_01.png) +![Hyperparameters](../../../img/examples_tensorboard_toy_01.png#light-mode-only) +![Hyperparameters](../../../img/examples_tensorboard_toy_01_dark.png#dark-mode-only) diff --git a/docs/guides/frameworks/tensorflow/tensorflow_mnist.md b/docs/guides/frameworks/tensorflow/tensorflow_mnist.md index 263e7da6..a4afd8f9 100644 --- a/docs/guides/frameworks/tensorflow/tensorflow_mnist.md +++ b/docs/guides/frameworks/tensorflow/tensorflow_mnist.md @@ -13,30 +13,35 @@ When the script runs, it creates a task named `Tensorflow v2 mnist with summarie The loss and accuracy metric scalar plots appear in the task's page in the **ClearML web UI** under **SCALARS**. Resource utilization plots, which are titled **:monitor: machine**, also appear in the **SCALARS** tab. -![Task scalars](../../../img/examples_tensorflow_mnist_06.png) +![Task scalars](../../../img/examples_tensorflow_mnist_06.png#light-mode-only) +![Task scalars](../../../img/examples_tensorflow_mnist_06_dark.png#dark-mode-only) ## Hyperparameters ClearML automatically logs TensorFlow Definitions. They appear in **CONFIGURATION** **>** **HYPERPARAMETERS** **>** **TF_DEFINE**. -![Task hyperparameters](../../../img/examples_tensorflow_mnist_01.png) +![Task hyperparameters](../../../img/examples_tensorflow_mnist_01.png#light-mode-only) +![Task hyperparameters](../../../img/examples_tensorflow_mnist_01_dark.png#dark-mode-only) ## Console All console output appears in **CONSOLE**. -![Task console](../../../img/examples_tensorflow_mnist_05.png) +![Task console](../../../img/examples_tensorflow_mnist_05.png#light-mode-only) +![Task console](../../../img/examples_tensorflow_mnist_05_dark.png#dark-mode-only) ## Artifacts Models created by the task appear in the task's **ARTIFACTS** tab. ClearML automatically logs and tracks models and any snapshots created using TensorFlow. -![Task models](../../../img/examples_tensorflow_mnist_03.png) +![Task models](../../../img/examples_tensorflow_mnist_03.png#light-mode-only) +![Task models](../../../img/examples_tensorflow_mnist_03_dark.png#dark-mode-only) Clicking on a model's name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the model's details and access the model. -![Model details](../../../img/examples_tensorflow_mnist_10.png) \ No newline at end of file +![Model details](../../../img/examples_tensorflow_mnist_10.png#light-mode-only) +![Model details](../../../img/examples_tensorflow_mnist_10_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/frameworks/xgboost/xgboost_metrics.md b/docs/guides/frameworks/xgboost/xgboost_metrics.md index 93886191..384398e2 100644 --- a/docs/guides/frameworks/xgboost/xgboost_metrics.md +++ b/docs/guides/frameworks/xgboost/xgboost_metrics.md @@ -13,7 +13,8 @@ the `examples` project. ClearML automatically captures scalars logged with XGBoost, which can be visualized in plots in the ClearML WebApp, in the task's **SCALARS** tab. -![Scalars](../../../img/examples_xgboost_metric_scalars.png) +![Scalars](../../../img/examples_xgboost_metric_scalars.png#light-mode-only) +![Scalars](../../../img/examples_xgboost_metric_scalars_dark.png#dark-mode-only) ## Models @@ -21,14 +22,17 @@ ClearML automatically captures the model logged using the `xgboost.save` method, View saved snapshots in the task's **ARTIFACTS** tab. -![Artifacts tab](../../../img/examples_xgboost_metric_artifacts.png) +![Artifacts tab](../../../img/examples_xgboost_metric_artifacts.png#light-mode-only) +![Artifacts tab](../../../img/examples_xgboost_metric_artifacts_dark.png#dark-mode-only) To view the model details, click the model name in the **ARTIFACTS** page, which will open the model's info tab. Alternatively, download the model. -![Model info panel](../../../img/examples_xgboost_metric_model.png) +![Model info panel](../../../img/examples_xgboost_metric_model.png#light-mode-only) +![Model info panel](../../../img/examples_xgboost_metric_model_dark.png#dark-mode-only) ## Console All console output during the script's execution appears in the task's **CONSOLE** page. -![Console output](../../../img/examples_xgboost_metric_console.png) \ No newline at end of file +![Console output](../../../img/examples_xgboost_metric_console.png#light-mode-only) +![Console output](../../../img/examples_xgboost_metric_console_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/guides/frameworks/xgboost/xgboost_sample.md b/docs/guides/frameworks/xgboost/xgboost_sample.md index cc861cca..3d0f349d 100644 --- a/docs/guides/frameworks/xgboost/xgboost_sample.md +++ b/docs/guides/frameworks/xgboost/xgboost_sample.md @@ -18,25 +18,30 @@ classification dataset using XGBoost The feature importance plot and tree plot appear in the task's page in the **ClearML web UI**, under **PLOTS**. -![Feature importance plot](../../../img/examples_xgboost_sample_06.png) +![Feature importance plot](../../../img/examples_xgboost_sample_06.png#light-mode-only) +![Feature importance plot](../../../img/examples_xgboost_sample_06_dark.png#dark-mode-only) -![Tree plot](../../../img/examples_xgboost_sample_06a.png) +![Tree plot](../../../img/examples_xgboost_sample_06a.png#light-mode-only) +![Tree plot](../../../img/examples_xgboost_sample_06a_dark.png#dark-mode-only) ## Console All other console output appear in **CONSOLE**. -![image](../../../img/examples_xgboost_sample_05.png) +![Console log](../../../img/examples_xgboost_sample_05.png#light-mode-only) +![Console log](../../../img/examples_xgboost_sample_05_dark.png#dark-mode-only) ## Artifacts Models created by the task appear in the task's **ARTIFACTS** tab. ClearML automatically logs and tracks models and any snapshots created using XGBoost. -![image](../../../img/examples_xgboost_sample_10.png) +![Artifacts](../../../img/examples_xgboost_sample_10.png#light-mode-only) +![Artifacts](../../../img/examples_xgboost_sample_10_dark.png#dark-mode-only) Clicking on the model's name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the model's details and access the model. -![image](../../../img/examples_xgboost_sample_03.png) \ No newline at end of file +![Model details](../../../img/examples_xgboost_sample_03.png#light-mode-only) +![Model details](../../../img/examples_xgboost_sample_03_dark.png#dark-mode-only) \ No newline at end of file diff --git a/docs/img/examples_keras_00.png b/docs/img/examples_keras_00.png index dfdf6b2e..9273e920 100644 Binary files a/docs/img/examples_keras_00.png and b/docs/img/examples_keras_00.png differ diff --git a/docs/img/examples_keras_00_dark.png b/docs/img/examples_keras_00_dark.png new file mode 100644 index 00000000..58da61f6 Binary files /dev/null and b/docs/img/examples_keras_00_dark.png differ diff --git a/docs/img/examples_keras_00a.png b/docs/img/examples_keras_00a.png index ca3ed0d9..e35c7852 100644 Binary files a/docs/img/examples_keras_00a.png and b/docs/img/examples_keras_00a.png differ diff --git a/docs/img/examples_keras_00a_dark.png b/docs/img/examples_keras_00a_dark.png new file mode 100644 index 00000000..29b7087c Binary files /dev/null and b/docs/img/examples_keras_00a_dark.png differ diff --git a/docs/img/examples_keras_01.png b/docs/img/examples_keras_01.png index ecb8e78b..5831ed19 100644 Binary files a/docs/img/examples_keras_01.png and b/docs/img/examples_keras_01.png differ diff --git a/docs/img/examples_keras_01_dark.png b/docs/img/examples_keras_01_dark.png new file mode 100644 index 00000000..ff50b4e8 Binary files /dev/null and b/docs/img/examples_keras_01_dark.png differ diff --git a/docs/img/examples_keras_02.png b/docs/img/examples_keras_02.png index 84f58257..d40aa125 100644 Binary files a/docs/img/examples_keras_02.png and b/docs/img/examples_keras_02.png differ diff --git a/docs/img/examples_keras_02_dark.png b/docs/img/examples_keras_02_dark.png new file mode 100644 index 00000000..2b6f8edb Binary files /dev/null and b/docs/img/examples_keras_02_dark.png differ diff --git a/docs/img/examples_keras_jupyter_03.png b/docs/img/examples_keras_jupyter_03.png index c5a79cf1..c6e6827c 100644 Binary files a/docs/img/examples_keras_jupyter_03.png and b/docs/img/examples_keras_jupyter_03.png differ diff --git a/docs/img/examples_keras_jupyter_03_dark.png b/docs/img/examples_keras_jupyter_03_dark.png new file mode 100644 index 00000000..0f1d232a Binary files /dev/null and b/docs/img/examples_keras_jupyter_03_dark.png differ diff --git a/docs/img/examples_keras_jupyter_03a.png b/docs/img/examples_keras_jupyter_03a.png index 3fe892ca..380c63ce 100644 Binary files a/docs/img/examples_keras_jupyter_03a.png and b/docs/img/examples_keras_jupyter_03a.png differ diff --git a/docs/img/examples_keras_jupyter_03a_dark.png b/docs/img/examples_keras_jupyter_03a_dark.png new file mode 100644 index 00000000..bdab573e Binary files /dev/null and b/docs/img/examples_keras_jupyter_03a_dark.png differ diff --git a/docs/img/examples_keras_jupyter_04.png b/docs/img/examples_keras_jupyter_04.png index cbd03b54..fbd03b42 100644 Binary files a/docs/img/examples_keras_jupyter_04.png and b/docs/img/examples_keras_jupyter_04.png differ diff --git a/docs/img/examples_keras_jupyter_04_dark.png b/docs/img/examples_keras_jupyter_04_dark.png new file mode 100644 index 00000000..63f95eb9 Binary files /dev/null and b/docs/img/examples_keras_jupyter_04_dark.png differ diff --git a/docs/img/examples_keras_jupyter_07.png b/docs/img/examples_keras_jupyter_07.png index 2da749b4..a69559f0 100644 Binary files a/docs/img/examples_keras_jupyter_07.png and b/docs/img/examples_keras_jupyter_07.png differ diff --git a/docs/img/examples_keras_jupyter_07_dark.png b/docs/img/examples_keras_jupyter_07_dark.png new file mode 100644 index 00000000..6722519c Binary files /dev/null and b/docs/img/examples_keras_jupyter_07_dark.png differ diff --git a/docs/img/examples_keras_jupyter_08.png b/docs/img/examples_keras_jupyter_08.png index 11ae622e..dcb9f00e 100644 Binary files a/docs/img/examples_keras_jupyter_08.png and b/docs/img/examples_keras_jupyter_08.png differ diff --git a/docs/img/examples_keras_jupyter_08_dark.png b/docs/img/examples_keras_jupyter_08_dark.png new file mode 100644 index 00000000..35d2a770 Binary files /dev/null and b/docs/img/examples_keras_jupyter_08_dark.png differ diff --git a/docs/img/examples_keras_jupyter_20.png b/docs/img/examples_keras_jupyter_20.png index 9e7f4809..8e6c6d8c 100644 Binary files a/docs/img/examples_keras_jupyter_20.png and b/docs/img/examples_keras_jupyter_20.png differ diff --git a/docs/img/examples_keras_jupyter_20_dark.png b/docs/img/examples_keras_jupyter_20_dark.png new file mode 100644 index 00000000..a2d66e26 Binary files /dev/null and b/docs/img/examples_keras_jupyter_20_dark.png differ diff --git a/docs/img/examples_keras_jupyter_21.png b/docs/img/examples_keras_jupyter_21.png index 1f827cde..6a0acd43 100644 Binary files a/docs/img/examples_keras_jupyter_21.png and b/docs/img/examples_keras_jupyter_21.png differ diff --git a/docs/img/examples_keras_jupyter_21_dark.png b/docs/img/examples_keras_jupyter_21_dark.png new file mode 100644 index 00000000..f6a71306 Binary files /dev/null and b/docs/img/examples_keras_jupyter_21_dark.png differ diff --git a/docs/img/examples_keras_jupyter_23.png b/docs/img/examples_keras_jupyter_23.png index 0526c89a..63bcfbbc 100644 Binary files a/docs/img/examples_keras_jupyter_23.png and b/docs/img/examples_keras_jupyter_23.png differ diff --git a/docs/img/examples_keras_jupyter_23_dark.png b/docs/img/examples_keras_jupyter_23_dark.png new file mode 100644 index 00000000..f1ef7481 Binary files /dev/null and b/docs/img/examples_keras_jupyter_23_dark.png differ diff --git a/docs/img/examples_keras_jupyter_24.png b/docs/img/examples_keras_jupyter_24.png index 51a3d8d0..5f46bf0f 100644 Binary files a/docs/img/examples_keras_jupyter_24.png and b/docs/img/examples_keras_jupyter_24.png differ diff --git a/docs/img/examples_keras_jupyter_24_dark.png b/docs/img/examples_keras_jupyter_24_dark.png new file mode 100644 index 00000000..1fe83bbc Binary files /dev/null and b/docs/img/examples_keras_jupyter_24_dark.png differ diff --git a/docs/img/examples_model_update_model.png b/docs/img/examples_model_update_model.png index b7d4b981..bb803449 100644 Binary files a/docs/img/examples_model_update_model.png and b/docs/img/examples_model_update_model.png differ diff --git a/docs/img/examples_model_update_model_dark.png b/docs/img/examples_model_update_model_dark.png index a3b63836..c511220d 100644 Binary files a/docs/img/examples_model_update_model_dark.png and b/docs/img/examples_model_update_model_dark.png differ diff --git a/docs/img/examples_pytorch_mnist_03.png b/docs/img/examples_pytorch_mnist_03.png index 584da60f..cdaf994b 100644 Binary files a/docs/img/examples_pytorch_mnist_03.png and b/docs/img/examples_pytorch_mnist_03.png differ diff --git a/docs/img/examples_pytorch_mnist_03_dark.png b/docs/img/examples_pytorch_mnist_03_dark.png index 810f19bf..f6d78038 100644 Binary files a/docs/img/examples_pytorch_mnist_03_dark.png and b/docs/img/examples_pytorch_mnist_03_dark.png differ diff --git a/docs/img/examples_sklearn_joblib_example_01.png b/docs/img/examples_sklearn_joblib_example_01.png index fa09360b..703ec2c4 100644 Binary files a/docs/img/examples_sklearn_joblib_example_01.png and b/docs/img/examples_sklearn_joblib_example_01.png differ diff --git a/docs/img/examples_sklearn_joblib_example_01_dark.png b/docs/img/examples_sklearn_joblib_example_01_dark.png new file mode 100644 index 00000000..64b0450f Binary files /dev/null and b/docs/img/examples_sklearn_joblib_example_01_dark.png differ diff --git a/docs/img/examples_sklearn_joblib_example_02.png b/docs/img/examples_sklearn_joblib_example_02.png index dc67f71e..7e9ba664 100644 Binary files a/docs/img/examples_sklearn_joblib_example_02.png and b/docs/img/examples_sklearn_joblib_example_02.png differ diff --git a/docs/img/examples_sklearn_joblib_example_02_dark.png b/docs/img/examples_sklearn_joblib_example_02_dark.png new file mode 100644 index 00000000..0c21e28b Binary files /dev/null and b/docs/img/examples_sklearn_joblib_example_02_dark.png differ diff --git a/docs/img/examples_sklearn_joblib_example_06.png b/docs/img/examples_sklearn_joblib_example_06.png index 4c61a3be..ab909e74 100644 Binary files a/docs/img/examples_sklearn_joblib_example_06.png and b/docs/img/examples_sklearn_joblib_example_06.png differ diff --git a/docs/img/examples_sklearn_joblib_example_06_dark.png b/docs/img/examples_sklearn_joblib_example_06_dark.png new file mode 100644 index 00000000..76a3bfbd Binary files /dev/null and b/docs/img/examples_sklearn_joblib_example_06_dark.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_01.png b/docs/img/examples_tensorboard_pr_curve_01.png index 96ce9a62..009c64cc 100644 Binary files a/docs/img/examples_tensorboard_pr_curve_01.png and b/docs/img/examples_tensorboard_pr_curve_01.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_01_dark.png b/docs/img/examples_tensorboard_pr_curve_01_dark.png new file mode 100644 index 00000000..b5f75422 Binary files /dev/null and b/docs/img/examples_tensorboard_pr_curve_01_dark.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_02.png b/docs/img/examples_tensorboard_pr_curve_02.png index 3a69e5ad..f8b9b9e1 100644 Binary files a/docs/img/examples_tensorboard_pr_curve_02.png and b/docs/img/examples_tensorboard_pr_curve_02.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_02_dark.png b/docs/img/examples_tensorboard_pr_curve_02_dark.png new file mode 100644 index 00000000..8d981462 Binary files /dev/null and b/docs/img/examples_tensorboard_pr_curve_02_dark.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_03.png b/docs/img/examples_tensorboard_pr_curve_03.png index 17063fbe..4010838b 100644 Binary files a/docs/img/examples_tensorboard_pr_curve_03.png and b/docs/img/examples_tensorboard_pr_curve_03.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_03_dark.png b/docs/img/examples_tensorboard_pr_curve_03_dark.png new file mode 100644 index 00000000..1c436426 Binary files /dev/null and b/docs/img/examples_tensorboard_pr_curve_03_dark.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_04.png b/docs/img/examples_tensorboard_pr_curve_04.png index e6b2b38f..117fdb7f 100644 Binary files a/docs/img/examples_tensorboard_pr_curve_04.png and b/docs/img/examples_tensorboard_pr_curve_04.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_04_dark.png b/docs/img/examples_tensorboard_pr_curve_04_dark.png new file mode 100644 index 00000000..3e2c0bba Binary files /dev/null and b/docs/img/examples_tensorboard_pr_curve_04_dark.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_05.png b/docs/img/examples_tensorboard_pr_curve_05.png index 4eef245f..454c8fe0 100644 Binary files a/docs/img/examples_tensorboard_pr_curve_05.png and b/docs/img/examples_tensorboard_pr_curve_05.png differ diff --git a/docs/img/examples_tensorboard_pr_curve_05_dark.png b/docs/img/examples_tensorboard_pr_curve_05_dark.png new file mode 100644 index 00000000..cbca2f9f Binary files /dev/null and b/docs/img/examples_tensorboard_pr_curve_05_dark.png differ diff --git a/docs/img/examples_tensorboard_toy_01.png b/docs/img/examples_tensorboard_toy_01.png index 9c4e8738..910b6283 100644 Binary files a/docs/img/examples_tensorboard_toy_01.png and b/docs/img/examples_tensorboard_toy_01.png differ diff --git a/docs/img/examples_tensorboard_toy_01_dark.png b/docs/img/examples_tensorboard_toy_01_dark.png new file mode 100644 index 00000000..52387aab Binary files /dev/null and b/docs/img/examples_tensorboard_toy_01_dark.png differ diff --git a/docs/img/examples_tensorboard_toy_03.png b/docs/img/examples_tensorboard_toy_03.png index 58ae91d1..82629324 100644 Binary files a/docs/img/examples_tensorboard_toy_03.png and b/docs/img/examples_tensorboard_toy_03.png differ diff --git a/docs/img/examples_tensorboard_toy_03_dark.png b/docs/img/examples_tensorboard_toy_03_dark.png new file mode 100644 index 00000000..6bf1047a Binary files /dev/null and b/docs/img/examples_tensorboard_toy_03_dark.png differ diff --git a/docs/img/examples_tensorboard_toy_04.png b/docs/img/examples_tensorboard_toy_04.png index de4c4f2e..2972c23f 100644 Binary files a/docs/img/examples_tensorboard_toy_04.png and b/docs/img/examples_tensorboard_toy_04.png differ diff --git a/docs/img/examples_tensorboard_toy_04_dark.png b/docs/img/examples_tensorboard_toy_04_dark.png new file mode 100644 index 00000000..3db1092e Binary files /dev/null and b/docs/img/examples_tensorboard_toy_04_dark.png differ diff --git a/docs/img/examples_tensorboard_toy_05.png b/docs/img/examples_tensorboard_toy_05.png index 7423cfb3..214a9df8 100644 Binary files a/docs/img/examples_tensorboard_toy_05.png and b/docs/img/examples_tensorboard_toy_05.png differ diff --git a/docs/img/examples_tensorboard_toy_05_dark.png b/docs/img/examples_tensorboard_toy_05_dark.png new file mode 100644 index 00000000..e4829068 Binary files /dev/null and b/docs/img/examples_tensorboard_toy_05_dark.png differ diff --git a/docs/img/examples_tensorboardx_debug.png b/docs/img/examples_tensorboardx_debug.png index 2a456dee..15c9a644 100644 Binary files a/docs/img/examples_tensorboardx_debug.png and b/docs/img/examples_tensorboardx_debug.png differ diff --git a/docs/img/examples_tensorboardx_debug_dark.png b/docs/img/examples_tensorboardx_debug_dark.png new file mode 100644 index 00000000..8b9c39af Binary files /dev/null and b/docs/img/examples_tensorboardx_debug_dark.png differ diff --git a/docs/img/examples_tensorflow_mnist_01.png b/docs/img/examples_tensorflow_mnist_01.png index 8e2d3ba3..6ad9d7d9 100644 Binary files a/docs/img/examples_tensorflow_mnist_01.png and b/docs/img/examples_tensorflow_mnist_01.png differ diff --git a/docs/img/examples_tensorflow_mnist_01_dark.png b/docs/img/examples_tensorflow_mnist_01_dark.png new file mode 100644 index 00000000..138fd9f7 Binary files /dev/null and b/docs/img/examples_tensorflow_mnist_01_dark.png differ diff --git a/docs/img/examples_tensorflow_mnist_03.png b/docs/img/examples_tensorflow_mnist_03.png index cc9e2eda..1d689fb8 100644 Binary files a/docs/img/examples_tensorflow_mnist_03.png and b/docs/img/examples_tensorflow_mnist_03.png differ diff --git a/docs/img/examples_tensorflow_mnist_03_dark.png b/docs/img/examples_tensorflow_mnist_03_dark.png new file mode 100644 index 00000000..9575e97a Binary files /dev/null and b/docs/img/examples_tensorflow_mnist_03_dark.png differ diff --git a/docs/img/examples_tensorflow_mnist_05.png b/docs/img/examples_tensorflow_mnist_05.png index 71e2a35a..3f10c8bf 100644 Binary files a/docs/img/examples_tensorflow_mnist_05.png and b/docs/img/examples_tensorflow_mnist_05.png differ diff --git a/docs/img/examples_tensorflow_mnist_05_dark.png b/docs/img/examples_tensorflow_mnist_05_dark.png new file mode 100644 index 00000000..87557c63 Binary files /dev/null and b/docs/img/examples_tensorflow_mnist_05_dark.png differ diff --git a/docs/img/examples_tensorflow_mnist_06.png b/docs/img/examples_tensorflow_mnist_06.png index d1ae8f8f..093555a1 100644 Binary files a/docs/img/examples_tensorflow_mnist_06.png and b/docs/img/examples_tensorflow_mnist_06.png differ diff --git a/docs/img/examples_tensorflow_mnist_06_dark.png b/docs/img/examples_tensorflow_mnist_06_dark.png new file mode 100644 index 00000000..b398f17c Binary files /dev/null and b/docs/img/examples_tensorflow_mnist_06_dark.png differ diff --git a/docs/img/examples_tensorflow_mnist_10.png b/docs/img/examples_tensorflow_mnist_10.png index dbe6a1ab..c736e12f 100644 Binary files a/docs/img/examples_tensorflow_mnist_10.png and b/docs/img/examples_tensorflow_mnist_10.png differ diff --git a/docs/img/examples_tensorflow_mnist_10_dark.png b/docs/img/examples_tensorflow_mnist_10_dark.png new file mode 100644 index 00000000..0df30009 Binary files /dev/null and b/docs/img/examples_tensorflow_mnist_10_dark.png differ diff --git a/docs/img/examples_xgboost_metric_artifacts.png b/docs/img/examples_xgboost_metric_artifacts.png index 1eb6169b..5b002da8 100644 Binary files a/docs/img/examples_xgboost_metric_artifacts.png and b/docs/img/examples_xgboost_metric_artifacts.png differ diff --git a/docs/img/examples_xgboost_metric_artifacts_dark.png b/docs/img/examples_xgboost_metric_artifacts_dark.png new file mode 100644 index 00000000..be755564 Binary files /dev/null and b/docs/img/examples_xgboost_metric_artifacts_dark.png differ diff --git a/docs/img/examples_xgboost_metric_console.png b/docs/img/examples_xgboost_metric_console.png index 9d39bbee..8be929a6 100644 Binary files a/docs/img/examples_xgboost_metric_console.png and b/docs/img/examples_xgboost_metric_console.png differ diff --git a/docs/img/examples_xgboost_metric_console_dark.png b/docs/img/examples_xgboost_metric_console_dark.png new file mode 100644 index 00000000..dd8716da Binary files /dev/null and b/docs/img/examples_xgboost_metric_console_dark.png differ diff --git a/docs/img/examples_xgboost_metric_model.png b/docs/img/examples_xgboost_metric_model.png index 051465e3..4cd5d5de 100644 Binary files a/docs/img/examples_xgboost_metric_model.png and b/docs/img/examples_xgboost_metric_model.png differ diff --git a/docs/img/examples_xgboost_metric_model_dark.png b/docs/img/examples_xgboost_metric_model_dark.png new file mode 100644 index 00000000..2f7bd39b Binary files /dev/null and b/docs/img/examples_xgboost_metric_model_dark.png differ diff --git a/docs/img/examples_xgboost_metric_scalars.png b/docs/img/examples_xgboost_metric_scalars.png index 678ff8d2..1a968cc6 100644 Binary files a/docs/img/examples_xgboost_metric_scalars.png and b/docs/img/examples_xgboost_metric_scalars.png differ diff --git a/docs/img/examples_xgboost_metric_scalars_dark.png b/docs/img/examples_xgboost_metric_scalars_dark.png new file mode 100644 index 00000000..26cb9935 Binary files /dev/null and b/docs/img/examples_xgboost_metric_scalars_dark.png differ diff --git a/docs/img/examples_xgboost_sample_03.png b/docs/img/examples_xgboost_sample_03.png index 761aa8b9..f83cac3a 100644 Binary files a/docs/img/examples_xgboost_sample_03.png and b/docs/img/examples_xgboost_sample_03.png differ diff --git a/docs/img/examples_xgboost_sample_03_dark.png b/docs/img/examples_xgboost_sample_03_dark.png new file mode 100644 index 00000000..a32737eb Binary files /dev/null and b/docs/img/examples_xgboost_sample_03_dark.png differ diff --git a/docs/img/examples_xgboost_sample_05.png b/docs/img/examples_xgboost_sample_05.png index 2d111787..3614622f 100644 Binary files a/docs/img/examples_xgboost_sample_05.png and b/docs/img/examples_xgboost_sample_05.png differ diff --git a/docs/img/examples_xgboost_sample_05_dark.png b/docs/img/examples_xgboost_sample_05_dark.png new file mode 100644 index 00000000..263c6ddb Binary files /dev/null and b/docs/img/examples_xgboost_sample_05_dark.png differ diff --git a/docs/img/examples_xgboost_sample_06.png b/docs/img/examples_xgboost_sample_06.png index e006ecb9..b4f5142b 100644 Binary files a/docs/img/examples_xgboost_sample_06.png and b/docs/img/examples_xgboost_sample_06.png differ diff --git a/docs/img/examples_xgboost_sample_06_dark.png b/docs/img/examples_xgboost_sample_06_dark.png new file mode 100644 index 00000000..9bbc8664 Binary files /dev/null and b/docs/img/examples_xgboost_sample_06_dark.png differ diff --git a/docs/img/examples_xgboost_sample_06a.png b/docs/img/examples_xgboost_sample_06a.png index 6fa5fa99..c5a9cd83 100644 Binary files a/docs/img/examples_xgboost_sample_06a.png and b/docs/img/examples_xgboost_sample_06a.png differ diff --git a/docs/img/examples_xgboost_sample_06a_dark.png b/docs/img/examples_xgboost_sample_06a_dark.png new file mode 100644 index 00000000..6668ece9 Binary files /dev/null and b/docs/img/examples_xgboost_sample_06a_dark.png differ diff --git a/docs/img/examples_xgboost_sample_10.png b/docs/img/examples_xgboost_sample_10.png index 01b699ce..871545d2 100644 Binary files a/docs/img/examples_xgboost_sample_10.png and b/docs/img/examples_xgboost_sample_10.png differ diff --git a/docs/img/examples_xgboost_sample_10_dark.png b/docs/img/examples_xgboost_sample_10_dark.png new file mode 100644 index 00000000..3a04e86f Binary files /dev/null and b/docs/img/examples_xgboost_sample_10_dark.png differ diff --git a/docs/img/integration_keras_tuner_01.png b/docs/img/integration_keras_tuner_01.png index 00d8b08a..d24a8bb6 100644 Binary files a/docs/img/integration_keras_tuner_01.png and b/docs/img/integration_keras_tuner_01.png differ diff --git a/docs/img/integration_keras_tuner_01_dark.png b/docs/img/integration_keras_tuner_01_dark.png new file mode 100644 index 00000000..5e350773 Binary files /dev/null and b/docs/img/integration_keras_tuner_01_dark.png differ diff --git a/docs/img/integration_keras_tuner_02.png b/docs/img/integration_keras_tuner_02.png index 61460e1d..8612930a 100644 Binary files a/docs/img/integration_keras_tuner_02.png and b/docs/img/integration_keras_tuner_02.png differ diff --git a/docs/img/integration_keras_tuner_02_dark.png b/docs/img/integration_keras_tuner_02_dark.png new file mode 100644 index 00000000..24c84e8e Binary files /dev/null and b/docs/img/integration_keras_tuner_02_dark.png differ diff --git a/docs/img/integration_keras_tuner_03.png b/docs/img/integration_keras_tuner_03.png index 14c50d1a..6de2758c 100644 Binary files a/docs/img/integration_keras_tuner_03.png and b/docs/img/integration_keras_tuner_03.png differ diff --git a/docs/img/integration_keras_tuner_03_dark.png b/docs/img/integration_keras_tuner_03_dark.png new file mode 100644 index 00000000..2612554d Binary files /dev/null and b/docs/img/integration_keras_tuner_03_dark.png differ diff --git a/docs/img/integration_keras_tuner_04.png b/docs/img/integration_keras_tuner_04.png index 5a9a62fa..17ec7566 100644 Binary files a/docs/img/integration_keras_tuner_04.png and b/docs/img/integration_keras_tuner_04.png differ diff --git a/docs/img/integration_keras_tuner_04_dark.png b/docs/img/integration_keras_tuner_04_dark.png new file mode 100644 index 00000000..62690ac1 Binary files /dev/null and b/docs/img/integration_keras_tuner_04_dark.png differ diff --git a/docs/img/integration_keras_tuner_05.png b/docs/img/integration_keras_tuner_05.png index d47e8aea..81dcf862 100644 Binary files a/docs/img/integration_keras_tuner_05.png and b/docs/img/integration_keras_tuner_05.png differ diff --git a/docs/img/integration_keras_tuner_05_dark.png b/docs/img/integration_keras_tuner_05_dark.png new file mode 100644 index 00000000..8b4bd61a Binary files /dev/null and b/docs/img/integration_keras_tuner_05_dark.png differ diff --git a/docs/img/integration_keras_tuner_06.png b/docs/img/integration_keras_tuner_06.png index 7e9bc8d0..c49bef1e 100644 Binary files a/docs/img/integration_keras_tuner_06.png and b/docs/img/integration_keras_tuner_06.png differ diff --git a/docs/img/integration_keras_tuner_06_dark.png b/docs/img/integration_keras_tuner_06_dark.png new file mode 100644 index 00000000..69ea91ab Binary files /dev/null and b/docs/img/integration_keras_tuner_06_dark.png differ diff --git a/docs/img/integration_keras_tuner_07.png b/docs/img/integration_keras_tuner_07.png index d84a838b..d3696b41 100644 Binary files a/docs/img/integration_keras_tuner_07.png and b/docs/img/integration_keras_tuner_07.png differ diff --git a/docs/img/integration_keras_tuner_07_dark.png b/docs/img/integration_keras_tuner_07_dark.png new file mode 100644 index 00000000..46aa01b8 Binary files /dev/null and b/docs/img/integration_keras_tuner_07_dark.png differ diff --git a/docs/img/integrations_click_configs.png b/docs/img/integrations_click_configs.png index 06e3e2de..db11bd9a 100644 Binary files a/docs/img/integrations_click_configs.png and b/docs/img/integrations_click_configs.png differ diff --git a/docs/img/integrations_click_configs_dark.png b/docs/img/integrations_click_configs_dark.png new file mode 100644 index 00000000..6f51ab21 Binary files /dev/null and b/docs/img/integrations_click_configs_dark.png differ diff --git a/docs/img/integrations_hydra_configs.png b/docs/img/integrations_hydra_configs.png index d60cd4ec..1e9d1761 100644 Binary files a/docs/img/integrations_hydra_configs.png and b/docs/img/integrations_hydra_configs.png differ diff --git a/docs/img/integrations_hydra_configs_dark.png b/docs/img/integrations_hydra_configs_dark.png new file mode 100644 index 00000000..cda231ae Binary files /dev/null and b/docs/img/integrations_hydra_configs_dark.png differ diff --git a/docs/img/keras_colab_01.png b/docs/img/keras_colab_01.png index b0392287..09087091 100644 Binary files a/docs/img/keras_colab_01.png and b/docs/img/keras_colab_01.png differ diff --git a/docs/img/keras_colab_01_dark.png b/docs/img/keras_colab_01_dark.png new file mode 100644 index 00000000..304712c5 Binary files /dev/null and b/docs/img/keras_colab_01_dark.png differ diff --git a/docs/img/keras_colab_02.png b/docs/img/keras_colab_02.png index f0efa89e..9055afb1 100644 Binary files a/docs/img/keras_colab_02.png and b/docs/img/keras_colab_02.png differ diff --git a/docs/img/keras_colab_02_dark.png b/docs/img/keras_colab_02_dark.png new file mode 100644 index 00000000..8395f2e8 Binary files /dev/null and b/docs/img/keras_colab_02_dark.png differ diff --git a/docs/integrations/autokeras.md b/docs/integrations/autokeras.md index ece401ad..86e9d7ed 100644 --- a/docs/integrations/autokeras.md +++ b/docs/integrations/autokeras.md @@ -77,7 +77,7 @@ See more information about explicitly logging information to a ClearML Task: See [Explicit Reporting Tutorial](../guides/reporting/explicit_reporting.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -93,7 +93,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/catboost.md b/docs/integrations/catboost.md index 3d5caa09..fe0cbb18 100644 --- a/docs/integrations/catboost.md +++ b/docs/integrations/catboost.md @@ -31,7 +31,8 @@ You can view all the task details in the [WebApp](../webapp/webapp_overview.md). See an example of CatBoost and ClearML in action [here](../guides/frameworks/catboost/catboost.md). -![Task scalars](../img/examples_catboost_scalars.png) +![Task scalars](../img/examples_catboost_scalars.png#light-mode-only) +![Task scalars](../img/examples_catboost_scalars_dark.png#dark-mode-only) ## Automatic Logging Control By default, when ClearML is integrated into your CatBoost script, it captures models, and @@ -75,7 +76,7 @@ See more information about explicitly logging information to a ClearML Task: See [Explicit Reporting Tutorial](../guides/reporting/explicit_reporting.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -91,7 +92,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/click.md b/docs/integrations/click.md index c1169615..995fdd2c 100644 --- a/docs/integrations/click.md +++ b/docs/integrations/click.md @@ -42,7 +42,8 @@ if __name__ == '__main__': When this code is executed, ClearML logs your command-line arguments, which you can view in the [WebApp](../webapp/webapp_overview.md), in the task's **Configuration > Hyperparameters > Args** section. -![click configuration](../img/integrations_click_configs.png) +![click configuration](../img/integrations_click_configs.png#light-mode-only) +![click configuration](../img/integrations_click_configs_dark.png#dark-mode-only) In the UI, you can clone the task multiple times and set the clones' parameter values for execution by the [ClearML Agent](../clearml_agent.md). When the clone is executed, the executing agent will use the new parameter values as if set by the command-line. diff --git a/docs/integrations/fastai.md b/docs/integrations/fastai.md index aabc00c9..332bf75e 100644 --- a/docs/integrations/fastai.md +++ b/docs/integrations/fastai.md @@ -30,7 +30,8 @@ You can view all the task details in the [WebApp](../webapp/webapp_overview.md). See an example of `fastai` and ClearML in action [here](../guides/frameworks/fastai/fastai_with_tensorboard.md). -![Task scalars](../img/examples_reporting_fastai_01.png) +![Task scalars](../img/examples_reporting_fastai_01.png#light-mode-only) +![Task scalars](../img/examples_reporting_fastai_01_dark.png#dark-mode-only) ## Automatic Logging Control By default, when ClearML is integrated into your `fastai` script, it captures models and @@ -74,7 +75,7 @@ See more information about explicitly logging information to a ClearML Task: See [Explicit Reporting Tutorial](../guides/reporting/explicit_reporting.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -90,7 +91,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/hydra.md b/docs/integrations/hydra.md index faaa41b0..306698fd 100644 --- a/docs/integrations/hydra.md +++ b/docs/integrations/hydra.md @@ -22,7 +22,8 @@ task = Task.init(task_name="", project_name="") ClearML logs the OmegaConf as a blob and can be viewed in the [WebApp](../webapp/webapp_overview.md), in the task's **CONFIGURATION > CONFIGURATION OBJECTS > OmegaConf** section. -![Hydra configuration](../img/integrations_hydra_configs.png) +![Hydra configuration](../img/integrations_hydra_configs.png#light-mode-only) +![Hydra configuration](../img/integrations_hydra_configs_dark.png#dark-mode-only) ## Modifying Hydra Values diff --git a/docs/integrations/keras.md b/docs/integrations/keras.md index e1270272..c95a631c 100644 --- a/docs/integrations/keras.md +++ b/docs/integrations/keras.md @@ -87,7 +87,7 @@ and debug samples, plots, and scalars logged to TensorBoard ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -103,7 +103,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/keras_tuner.md b/docs/integrations/keras_tuner.md index 705526b8..55960684 100644 --- a/docs/integrations/keras_tuner.md +++ b/docs/integrations/keras_tuner.md @@ -53,16 +53,19 @@ You can view all the task details in the [WebApp](../webapp/webapp_exp_track_vis ClearML logs the scalars from training each network. They appear in the task's **SCALARS** tab in the Web UI. -![Optimization scalars](../img/integration_keras_tuner_06.png) +![Optimization scalars](../img/integration_keras_tuner_06.png#light-mode-only) +![Optimization scalars](../img/integration_keras_tuner_06_dark.png#dark-mode-only) ClearML automatically logs the parameters of each task run in the hyperparameter search. They appear in tabular form in the task's **PLOTS**. -![Optimization plot](../img/integration_keras_tuner_07.png) +![Optimization plot](../img/integration_keras_tuner_07.png#light-mode-only) +![Optimization plot](../img/integration_keras_tuner_07_dark.png#dark-mode-only) ClearML automatically stores the output model. It appears in the task's **ARTIFACTS** **>** **Output Model**. -![output model](../img/integration_keras_tuner_03.png) +![output model](../img/integration_keras_tuner_03.png#light-mode-only) +![output model](../img/integration_keras_tuner_03_dark.png#dark-mode-only) ## Example diff --git a/docs/integrations/lightgbm.md b/docs/integrations/lightgbm.md index b611ac22..bbb0f487 100644 --- a/docs/integrations/lightgbm.md +++ b/docs/integrations/lightgbm.md @@ -76,7 +76,7 @@ See more information about explicitly logging information to a ClearML Task: See [Explicit Reporting Tutorial](../guides/reporting/explicit_reporting.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -92,7 +92,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/megengine.md b/docs/integrations/megengine.md index 6cbeb627..ab0fd305 100644 --- a/docs/integrations/megengine.md +++ b/docs/integrations/megengine.md @@ -72,7 +72,7 @@ See more information about explicitly logging information to a ClearML Task: See [Explicit Reporting Tutorial](../guides/reporting/explicit_reporting.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -88,7 +88,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/pytorch.md b/docs/integrations/pytorch.md index 5a9184d3..24b227f3 100644 --- a/docs/integrations/pytorch.md +++ b/docs/integrations/pytorch.md @@ -28,7 +28,8 @@ And that's it! This creates a [ClearML Task](../fundamentals/task.md) which capt You can view all the task details in the [WebApp](../webapp/webapp_overview.md). -![Pytorch webapp](../img/examples_pytorch_distributed_example_08.png) +![Pytorch webapp](../img/examples_pytorch_distributed_example_08.png#light-mode-only) +![Pytorch webapp](../img/examples_pytorch_distributed_example_08_dark.png#dark-mode-only) ## Automatic Logging Control By default, when ClearML is integrated into your PyTorch script, it captures PyTorch models. But, you may want to have @@ -96,7 +97,7 @@ additional tools, like argparse, TensorBoard, and matplotlib: * [PyTorch Distributed](../guides/frameworks/pytorch/pytorch_distributed_example.md) - Demonstrates using ClearML with the [PyTorch Distributed Communications Package (`torch.distributed`)](https://pytorch.org/tutorials/beginner/dist_overview.html) ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -112,7 +113,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/pytorch_lightning.md b/docs/integrations/pytorch_lightning.md index 977c545e..e91b33ec 100644 --- a/docs/integrations/pytorch_lightning.md +++ b/docs/integrations/pytorch_lightning.md @@ -102,7 +102,7 @@ See more information about explicitly logging information to a ClearML Task: See [Explicit Reporting Tutorial](../guides/reporting/explicit_reporting.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -118,7 +118,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md), to cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/scikit_learn.md b/docs/integrations/scikit_learn.md index 61049811..86d6b663 100644 --- a/docs/integrations/scikit_learn.md +++ b/docs/integrations/scikit_learn.md @@ -78,7 +78,7 @@ additional tools, like Matplotlib: ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -94,7 +94,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/tao.md b/docs/integrations/tao.md index 07a11249..63af9a85 100644 --- a/docs/integrations/tao.md +++ b/docs/integrations/tao.md @@ -94,7 +94,7 @@ You can view all of this captured information in the [ClearML Web UI](../webapp/ ![TAO UI plots](../img/integrations_nvidia_tao_plots.png) ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -111,7 +111,7 @@ cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/tensorboard.md b/docs/integrations/tensorboard.md index 317c983f..d002c582 100644 --- a/docs/integrations/tensorboard.md +++ b/docs/integrations/tensorboard.md @@ -22,9 +22,11 @@ uncommitted code, Python environment, your TensorBoard metrics, plots, images, a View the TensorBoard outputs in the [WebApp](../webapp/webapp_overview.md), in the task's page. -![TensorBoard WebApp scalars](../img/examples_pytorch_tensorboard_07.png) +![TensorBoard WebApp scalars](../img/examples_pytorch_tensorboard_07.png#light-mode-only) +![TensorBoard WebApp scalars](../img/examples_pytorch_tensorboard_07_dark.png#dark-mode-only) -![Tensorboard WebApp debug samples](../img/examples_tensorboard_toy_pytorch_02.png) +![Tensorboard WebApp debug samples](../img/examples_tensorboard_toy_pytorch_02.png#light-mode-only) +![Tensorboard WebApp debug samples](../img/examples_tensorboard_toy_pytorch_02_dark.png#dark-mode-only) ## Automatic Logging Control By default, when ClearML is integrated into your script, it captures all of your TensorBoard plots, images, and metrics. diff --git a/docs/integrations/tensorboardx.md b/docs/integrations/tensorboardx.md index 673b2c7b..0adc7557 100644 --- a/docs/integrations/tensorboardx.md +++ b/docs/integrations/tensorboardx.md @@ -22,7 +22,8 @@ uncommitted code, Python environment, your TensorboardX metrics, plots, images, View the TensorboardX outputs in the [WebApp](../webapp/webapp_overview.md), in the task's page. -![TensorboardX WebApp scalars](../img/examples_pytorch_tensorboardx_03.png) +![TensorboardX WebApp scalars](../img/examples_pytorch_tensorboardx_03.png#light-mode-only) +![TensorboardX WebApp scalars](../img/examples_pytorch_tensorboardx_03_dark.png#dark-mode-only) ## Automatic Logging Control By default, when ClearML is integrated into your script, it captures all of your TensorboardX plots, images, metrics, videos, and text. diff --git a/docs/integrations/tensorflow.md b/docs/integrations/tensorflow.md index 2f175e7b..2613ff9a 100644 --- a/docs/integrations/tensorflow.md +++ b/docs/integrations/tensorflow.md @@ -89,7 +89,7 @@ TensorBoard scalars, histograms, images, and text, as well as all console output ClearML's automatic logging of parameters defined using `absl.flags` ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -105,7 +105,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/transformers.md b/docs/integrations/transformers.md index 0c0c9a5d..c6f4ff07 100644 --- a/docs/integrations/transformers.md +++ b/docs/integrations/transformers.md @@ -60,7 +60,7 @@ You can also select multiple tasks and directly [compare](../webapp/webapp_exp_c See an example of Transformers and ClearML in action [here](../guides/frameworks/huggingface/transformers.md). ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. diff --git a/docs/integrations/xgboost.md b/docs/integrations/xgboost.md index 831c379c..44dcbde0 100644 --- a/docs/integrations/xgboost.md +++ b/docs/integrations/xgboost.md @@ -51,7 +51,8 @@ except ImportError: You can view all the task details in the [WebApp](../webapp/webapp_overview.md). -![Task scalars](../img/examples_xgboost_metric_scalars.png) +![Task scalars](../img/examples_xgboost_metric_scalars.png#light-mode-only) +![Task scalars](../img/examples_xgboost_metric_scalars_dark.png#dark-mode-only) ## Automatic Logging Control By default, when ClearML is integrated into your XGBoost script, it captures models, and @@ -102,7 +103,7 @@ additional tools, like Matplotlib and scikit-learn: * [XGBoost and scikit-learn](../guides/frameworks/xgboost/xgboost_sample.md) - Demonstrates ClearML automatic logging of XGBoost scalars and models ## Remote Execution -ClearML logs all the information required to reproduce a task on a different machine (installed packages, +ClearML logs all the information required to reproduce a task run on a different machine (installed packages, uncommitted changes etc.). The [ClearML Agent](../clearml_agent.md) listens to designated queues and when a task is enqueued, the agent pulls it, recreates its execution environment, and runs it, reporting its scalars, plots, etc. to the task manager. @@ -118,7 +119,7 @@ Use the ClearML [Autoscalers](../cloud_autoscaling/autoscaling_overview.md) to h cloud of your choice (AWS, GCP, Azure) and automatically deploy ClearML agents: the autoscaler automatically spins up and shuts down instances as needed, according to a resource budget that you set. -### Reproducing Tasks +### Reproducing Task Runs ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5.gif#light-mode-only) ![Cloning, editing, enqueuing gif](../img/gif/integrations_yolov5_dark.gif#dark-mode-only) diff --git a/docs/integrations/yolov5.md b/docs/integrations/yolov5.md index 1f353427..d574a184 100644 --- a/docs/integrations/yolov5.md +++ b/docs/integrations/yolov5.md @@ -150,7 +150,7 @@ python train.py --img 640 --batch 16 --epochs 3 --data clearml://