How can I start a Tensorboard for the top 5 experiments #1483
Answered
by
polyaxon-team
polyaxon-team
asked this question in
Q&A
-
I would like to compare the top 4 experiments based on a specific metrics. Currently I query the top experiment using the cli: polyaxon ops ls -q "name: GROUP_NAME, metrics.loss:<0.002" -s "metrics.loss" -l 5 And then I copy/paste the run UUIDs to: polyaxon run --hub tensorboard:mulit-run -P uuids=UUID1,UUID2,UUID3,UUID4,UUID5 |
Beta Was this translation helpful? Give feedback.
Answered by
polyaxon-team
Apr 7, 2022
Replies: 1 comment
-
From the UI or using a YAML file, you can run: version: 1.1
kind: operation
hubRef: tensorboard:multi-run
joins:
- query: "name: GROUP_NAME, metrics.loss:<0.002, kind:job"
sort: "metrics.loss"
limit: 5
params:
uuids: {value: "globals.uuid"} Note that in the UI if create a filter / sort configuration, you can automatically create a multi-run Tensorboard based on that query, for example: |
Beta Was this translation helpful? Give feedback.
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
From the UI or using a YAML file, you can run:
Note that in the UI if create a filter / sort configuration, you can automatically create a multi-run Tensorboard based on that query, for example: