# Cross referencing run id with a job's arguments

**URL:** https://guildai.org/t/cross-referencing-run-id-with-a-jobs-arguments/912
**Category:** General
**Created:** [September 2, 2022, 4:56pm UTC](https://guildai.org/t/cross-referencing-run-id-with-a-jobs-arguments/912 "2022-09-02T16:56:22Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Gilded](https://avatars.discourse-cdn.com/v4/letter/g/b77776/32.png) [@Gilded](https://guildai.org/u/Gilded)
#### Post date: [September 2, 2022, 4:56pm UTC](https://guildai.org/t/cross-referencing-run-id-with-a-jobs-arguments/912/1 "2022-09-02T16:56:23Z")

</div>

I am using guild’s tensorboard extract command so I can post-process the scalar values, very useful:

`guild tensorboard -Fo train --export-scalars events.csv`

The first column is the run id. Is there a way to cross reference this with the run id somewhere else in guild so I can match the runs in `events.csv` with the arguments that were used in the runs?

Is the best way to go through `guild.ipy`? Seems a `row` in `ipy.runs().iterrows()` contains `row.run. __dict__ ` which has the flags? Feels like there may be something more obvious here?

Thanks!

---

<div class="post-metadata">

### Author: ![garrett](https://yyz1.discourse-cdn.com/flex031/user_avatar/guildai.org/garrett/32/224_2.png) [@garrett](https://guildai.org/u/garrett)
#### Post date: [October 11, 2022, 1:47pm UTC](https://guildai.org/t/cross-referencing-run-id-with-a-jobs-arguments/912/2 "2022-10-11T13:47:52Z")

</div>

Hello! You can use `guild.ipy` for this but there’s a command that’s available in 0.8.2 (not yet released but a pre-release is available) that I think is better:

```command
guild api runs

```

This generates JSON output that contains run info, including the full run ID, which you can use in a cross ref with the TF event output from the `tensorboard` command.

You can install the pre-release by running `pip install --upgrade --pre guildai`

Sorry for the late reply here btw!
