Small edits (#322)

This commit is contained in:
pollfly
2022-09-04 10:17:44 +03:00
committed by GitHub
parent 910ab6303b
commit 8f17f96c59
11 changed files with 27 additions and 27 deletions

View File

@@ -106,7 +106,7 @@ Configurations can be viewed in web UI experiment pages, in the **CONFIGURATION*
The configuration panel is split into three sections according to type:
- **User Properties** - Modifiable section that can be edited post-execution.
- **Hyperparameters** - Individual parameters for configuration
- **Configuration Objects** - Usually configuration files (Json / YAML) or Python objects.
- **Configuration Objects** - Usually configuration files (JSON / YAML) or Python objects.
These sections are further broken down into sub-sections based on how the parameters were logged (General / Args / TF_Define / Environment).

View File

@@ -16,7 +16,7 @@ A Logger object is used to do the following:
ClearML supports four types of reports:
- Text - Mostly captured automatically from stdout and stderr but can be logged manually.
- Scalars - Time series data. X-axis is always a sequential number, usually iterations but can be epochs or others.
- Plots - General graphs and diagrams, such as histograms, confusion matrices line plots, and custom plotly charts.
- Plots - General graphs and diagrams, such as histograms, confusion matrices, line plots, and custom plotly charts.
- Debug Samples - Images, audio, and videos. Can be reported per iteration.
![image](../img/fundamentals_logger_results.png)

View File

@@ -52,7 +52,7 @@ To view all projects in the system, use the `Task` class method `get_projects`:
project_list = Task.get_projects()
```
This returns a list of project sorted by last update time.
This returns a list of projects sorted by last update time.
### More Actions

View File

@@ -97,7 +97,7 @@ Available task types are:
* *optimizer* - A specific type of controller for optimization tasks (e.g. [hyperparameter optimization](hpo.md))
* *service* - Long lasting or recurring service (e.g. server cleanup, auto ingress, sync services etc)
* *monitor* - A specific type of service for monitoring
* *application* - A task implementing custom applicative logic, like [auto-scaler](../guides/services/aws_autoscaler.md)
* *application* - A task implementing custom applicative logic, like [auto-scaler](../guides/services/aws_autoscaler.md)
or [clearml-session](../apps/clearml_session.md)
* *data_processing* - Any data ingress / preprocessing (see [ClearML Data](../clearml_data/clearml_data.md))
* *qc* - Quality Control (e.g. evaluating model performance vs. blind dataset)