Visdom: [Question] How to resume/update a plot across runs

Created on 27 Jun 2017  路  4Comments  路  Source: fossasia/visdom

Example: Assume I'm plotting the loss of a neural network. How to update the plot when I'm re-running the code (resuming it from when I stopped).

Most helpful comment

Yep, or you can use your own id: vis.line(X=mydata, win='wazzup')

All 4 comments

Hi @skrish13

Thanks for your message. When you create a pane, you should get the id as a return value. You can also supply a pane-id as a target for your plot. So, you can do something like

id = None
... train ...
id = vis.line(X=mydata, win=id)

Right, this is cool. So basically, I should somehow store those pane-ids so that I can use it across the runs right?

Yep, or you can use your own id: vis.line(X=mydata, win='wazzup')

ohhh. I kinda assumed you first have to create a pane to get the id. This is epic. Thanks :D

Was this page helpful?
0 / 5 - 0 ratings

Related issues

JiangPQ picture JiangPQ  路  4Comments

cympfh picture cympfh  路  6Comments

dizcza picture dizcza  路  7Comments

shubhamjain0594 picture shubhamjain0594  路  3Comments

Zumbalamambo picture Zumbalamambo  路  4Comments