Skip to content

How to start a tensorboard for all runs that are part of a hyperparameter tuning operation #1503

Discussion options

You must be logged in to vote

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"}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by polyaxon-team
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment