How to start a tensorboard for all runs that are part of a hyperparameter tuning operation #1503
-
Currently, I am selecting all runs from the table and then creating a multi-run downstream operation. with the id of those runs. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You do not have to manually select the runs for a hyperparameter operation, you can use the pipeline operation's uuid to query all, or a subset, runs belonging to that matrix operation: version: 1.1
kind: operation
hubRef: tensorboard:multi-runs
joins:
- query: "pipeline: MATRIX_UUID"
params:
uuids: {value: "globals.uuid"} To filter further by a specific condition, for example loss metric: version: 1.1
kind: operation
hubRef: tensorboard:multi-runs
joins:
- query: "pipeline: MATRIX_UUID, metrics.loss: < 0.02"
sort: metrics.loss
limit: 60
params:
uuids: {value: "globals.uuid"} |
Beta Was this translation helpful? Give feedback.
You do not have to manually select the runs for a hyperparameter operation, you can use the pipeline operation's uuid to query all, or a subset, runs belonging to that matrix operation:
To filter further by a specific condition, for example loss metric: