From 243366ce62562709f4029293eb3af4e09fa2358e Mon Sep 17 00:00:00 2001 From: debrevitatevitae Date: Wed, 17 Jul 2024 22:19:22 +0200 Subject: [PATCH] Clarify mlflow docs --- docs/tutorials/qml/ml_tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/qml/ml_tools.md b/docs/tutorials/qml/ml_tools.md index c53f09e5..727f5e1a 100644 --- a/docs/tutorials/qml/ml_tools.md +++ b/docs/tutorials/qml/ml_tools.md @@ -323,7 +323,7 @@ export MLFLOW_EXPERIMENT=test_experiment export MLFLOW_RUN_NAME=run_0 ``` -If no tracking URI is provided, mlflow stores runs and artifacts in the local `./mlflow` directory and if no names are defined, the experiment and run will be named with random UUIDs. +If no tracking URI is provided, mlflow stores run information and artifacts in the local `./mlflow` directory and if no names are defined, the experiment and run will be named with random UUIDs. ### Setup Let's do the necessary imports and declare a `DataLoader`. We can already define some hyperparameters here, including the seed for random number generators. mlflow can log hyperparameters with arbitrary types, for example the observable that we want to monitor (`Z` in this case, which has a `qadence.Operation` type).