query
Query scalar data from TensorBoard event files by specifying tags, start step, and end step to retrieve targeted metrics without loading the entire file.
Instructions
Query scalar data from a TensorBoard event file.
This will return all the data inside the Tensorboard event files. The result for a long training is very big and can
consume all your context limit if not properly filtered by tags and start_step and end_step.
To know the available event files you can use
find_eventstool to get all the available event files.To know the available tags of a Tensorboard file, you may use
list_tagswhich gives you all the available scalar tags in the event file.To know all the available training steps for each tag, you can use
tag_stepstool.Use start_step and end_step to ask for a range of data.
Try to use tags explicitly, otherwise the output can be huge.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event_file | Yes | Path of the tensorboard event file. | |
| tags | No | List of tags to show. If not provided, all the tags will be queried. | |
| start_step | No | Query the scalar data starting with this step. | |
| end_step | No | Query the scalar data until this step. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| results | Yes |