Loading...
Use Cases
On this page
Where did this model come from?
Goal: start from a model artifact and understand how it was produced.
- Locate the model artifact hash (from a prior
roar register, fromroar show, or from the GLaaS website). - On glaas.ai, paste the hash into the search bar.
- On the artifact page:
- review Associated Jobs
- click into the job(s) to see inputs/outputs
- click into the Originating Session to see the broader context
You can do the same locally:
roar show <model-hash>
This answers: which code, parameters, data, and upstream steps produced this artifact?
What did I train this on?
Goal: trace from an output artifact back to the input dataset(s).
- Look up the model artifact on glaas.ai.
- Click the producing job in Associated Jobs.
- Follow input artifact links upstream until you reach:
- the dataset artifact(s), or
- external dataset references (e.g., downloaded shards)
This yields a concrete, hash-addressed answer rather than “whatever file name we used last week.”
I want to make that.
Goal: reproduce an artifact someone else produced.
- Find the artifact hash on glaas.ai (or get it from a teammate).
- Click “Reproduce with roar” (or copy the hash).
- Run:
roar reproduce <artifact-hash>
- Inspect the recipe DAG, then execute steps as needed.
This is especially useful for "make that exact thing again" workflows.