You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the function should return figure and axes (i.e. use f, ax = plt.subplots() and ax.imshow()) this way the outputs can be passed to a wandb log call, or incorporated into another figure with subplots (ideally add a kwarg that directly accepts an axes object, in which case one doesn't need to create a new figure
Alternatively: Add .to_wandb() function to MazePlot which returns the objects wandb log needs. @afspies which objects does wandb explicitly require for plotting?
The text was updated successfully, but these errors were encountered:
I think the function should return figure and axes (i.e. use
f, ax = plt.subplots()
andax.imshow()
) this way the outputs can be passed to awandb
log call, or incorporated into another figure with subplots (ideally add akwarg
that directly accepts anaxes
object, in which case one doesn't need to create a new figureOriginally posted by @afspies in #108 (comment)
Alternatively: Add
.to_wandb()
function toMazePlot
which returns the objects wandb log needs. @afspies which objects does wandb explicitly require for plotting?The text was updated successfully, but these errors were encountered: