Open epignatelli opened 2 years ago
You can log a step independently, I.E.
wandb.log({"event": "thing", "mystep": 321})
Then you can choose a custom x-axis or filter metrics. For categorical metrics like this we don't have any native visualizations but you could use custom charts to visualize, or just pull the data via the api.
Tha sounds good. If there is any way I can plot a vertical line at a specific x
coordinate, I think this is already solved.
Description
It would be really handy to have the ability to log instantaneous events, especially in reinforcement learning projects. For example,
wandb.log({"Events"; "Experience Replay starts"}, step=5000)
, orwandb.log({"Events"; "First reward"}, step=389)
.Suggested Solution
I am imagining a table of events:
Alternatives
No response
Additional Context
No response