You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-track-experiments-mlflow.md
+25-4Lines changed: 25 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,28 +135,38 @@ All metrics and parameters are also returned when querying runs. However, for me
135
135
136
136
By default, experiments are ordered descending by `start_time`, which is the time the experiment was queue in Azure Machine Learning. However, you can change this default by using the parameter `order_by`.
> Using `order_by`with expressions containing `metrics.*`in the parameter `order_by`isnot supported by the moment. Please use `order_values` method from Pandas as shown in thenext example.
169
+
> Using `order_by`with expressions containing `metrics.*`, `params.*`, or`tags.*`in the parameter `order_by`isnot supported by the moment. Please use `order_values` method from Pandas as shown in the example.
160
170
161
171
162
172
### Filtering runs
@@ -213,7 +223,18 @@ You can also look for a run with a specific combination in the hyperparameters u
213
223
214
224
> [!TIP]
215
225
> Notice that for the key `attributes`, values should always be strings and hence encoded between quotes.
0 commit comments