From 9b4327578071531e3ab25d5801230bb18694e5a8 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Thu, 9 Sep 2021 15:59:49 +0300 Subject: [PATCH] Reword configuration phrases (#63) --- docs/guides/reporting/model_config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/reporting/model_config.md b/docs/guides/reporting/model_config.md index 026598ac..e8cddaad 100644 --- a/docs/guides/reporting/model_config.md +++ b/docs/guides/reporting/model_config.md @@ -23,7 +23,7 @@ to a Task. config_file_yaml = 'data_samples/config_yaml.yaml' task.connect_configuration(configuration=config_file_yaml, name="yaml file") -**ClearML** reports the configurations in the **ClearML Web UI** experiment details **>** **CONFIGURATION** tab **>** **CONFIGURATION OBJECTS** +The configuration is logged to the ClearML Task and can be viewed in the **ClearML Web UI** experiment details **>** **CONFIGURATION** tab **>** **CONFIGURATION OBJECTS** section. The contents of the JSON file will appear in the **json file** object, and the contents of the YAML file will appear in the **yaml file** object, as specified in the `name` parameter of the `connect_configuration` method. @@ -45,7 +45,7 @@ method with the dictionary and the object name as arguments. After the configura model_config_dict['new value'] = 10 model_config_dict['CHANGE ME'] *= model_config_dict['new value'] -**ClearML** reports the configuration in the **ClearML Web UI** **>** experiment details **>** **CONFIGURATION** tab **>** +The configurations are connected to the ClearML Task and can be viewed in the **ClearML Web UI** **>** experiment details **>** **CONFIGURATION** tab **>** **CONFIGURATION OBJECTS** area **>** **dictionary** object. ![image](../../img/examples_reporting_config_3.png)