Skip to content

Commit ec28e68

Browse files
authored
Update how-to-log-view-metrics.md
1 parent 64df693 commit ec28e68

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,6 @@ params = {
148148
mlflow.log_params(params)
149149
```
150150

151-
> [!NOTE]
152-
> Azure Machine Learning SDK v1 logging can't log parameters. We recommend the use of MLflow for tracking experiments as it offers a superior set of features.
153-
154151
## Logging metrics
155152

156153
Metrics, as opposite to parameters, are always numeric. The following table describes how to log specific numeric types:
@@ -222,7 +219,7 @@ mlflow.autolog()
222219
```
223220

224221
> [!TIP]
225-
> You can control what gets automatically logged wit autolog. For instance, if you indicate `mlflow.autolog(log_models=False)`, MLflow will log everything but models for you. Such control is useful in cases where you want to log models manually but still enjoy automatic logging of metrics and parameters. Also notice that some frameworks may disable automatic logging of models if the trained model goes behond specific boundaries. Such behavior depends on the flavor used and we recommend you to view they documentation if this is your case.
222+
> You can control what gets automatically logged with autolog. For instance, if you indicate `mlflow.autolog(log_models=False)`, MLflow will log everything but models for you. Such control is useful in cases where you want to log models manually but still enjoy automatic logging of metrics and parameters. Also notice that some frameworks may disable automatic logging of models if the trained model goes behond specific boundaries. Such behavior depends on the flavor used and we recommend you to view they documentation if this is your case.
226223
227224
## View jobs/runs information with MLflow
228225

0 commit comments

Comments
 (0)