mirror of
https://github.com/clearml/clearml-docs
synced 2025-06-26 18:17:44 +00:00
Small edits (#709)
This commit is contained in:
@@ -17,7 +17,7 @@ In the ``clearml`` GitHub repository, this example includes a clickable icon to
|
||||
|
||||
## Scalars
|
||||
|
||||
To reports scalars, call [Logger.report_scalar()](../../references/sdk/logger.md#report_scalar).
|
||||
To reports scalars, call [`Logger.report_scalar()`](../../references/sdk/logger.md#report_scalar).
|
||||
The scalar plots appear in the **web UI** in **SCALARS**.
|
||||
|
||||
```python
|
||||
@@ -44,7 +44,7 @@ Plots appear in **PLOTS**.
|
||||
|
||||
### 2D Plots
|
||||
|
||||
Report 2D scatter plots by calling [Logger.report_scatter2d()](../../references/sdk/logger.md#report_scatter2d).
|
||||
Report 2D scatter plots by calling [`Logger.report_scatter2d()`](../../references/sdk/logger.md#report_scatter2d).
|
||||
Use the `mode` parameter to plot data points as markers, or both lines and markers.
|
||||
|
||||
```python
|
||||
@@ -67,7 +67,7 @@ logger.report_scatter2d(
|
||||
|
||||
### 3D Plots
|
||||
|
||||
To plot a series as a 3D scatter plot, use [Logger.report_scatter3d()](../../references/sdk/logger.md#report_scatter3d).
|
||||
To plot a series as a 3D scatter plot, use [`Logger.report_scatter3d()`](../../references/sdk/logger.md#report_scatter3d).
|
||||
|
||||
```python
|
||||
# report 3d scatter plot
|
||||
@@ -85,7 +85,7 @@ logger.report_scatter3d(
|
||||
|
||||

|
||||
|
||||
To plot a series as a surface plot, use [Logger.report_surface()](../../references/sdk/logger.md#report_surface).
|
||||
To plot a series as a surface plot, use [`Logger.report_surface()`](../../references/sdk/logger.md#report_surface).
|
||||
|
||||
```python
|
||||
# report 3d surface
|
||||
|
||||
@@ -100,7 +100,7 @@ package contains methods for explicit reporting of plots, log text, media, and t
|
||||
First, create a logger for the Task using [`Task.get_logger()`](../../references/sdk/task.md#get_logger):
|
||||
|
||||
```python
|
||||
logger = task.get_logger
|
||||
logger = task.get_logger()
|
||||
```
|
||||
|
||||
### Plot Scalar Metrics
|
||||
|
||||
Reference in New Issue
Block a user