Skip to content

Commit e2d39d9

Browse files
authored
Apply suggestions from code review
1 parent e747969 commit e2d39d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-log-view-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Metrics, as opposite to parameters, are always numeric, and they can be logged e
157157
|Log a boolean value | `mlflow.log_metric("my_metric", 0)`| 0 = True, 1 = False|
158158
159159
> [!IMPORTANT]
160-
> **Performance considerations:** If you need to log multiple metrics (or multiple values for the same metric), avoid making calls to `mlflow.log_metric` in loops. Better performance can be achieved by using [asynchronous logging](#log-metrics-asynchronously) with `mlflow.log_metric("metric1", 9.42, synchronous=False)` or [logging a batch of metrics](#log-curves-or-list-of-values).
160+
> **Performance considerations:** If you need to log multiple metrics (or multiple values for the same metric), avoid making calls to `mlflow.log_metric` in loops. Better performance can be achieved by using [asynchronous logging](#log-metrics-asynchronously) with `mlflow.log_metric("metric1", 9.42, synchronous=False)` or by [logging a batch of metrics](#log-curves-or-list-of-values).
161161
162162
### Log metrics asynchronously
163163

0 commit comments

Comments
 (0)