-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there near plan to add more documents? #44
Comments
The win = None
for n in range(N):
data = #...
win = viz.plot(X=data, win=win) This code pattern is used in this Lua example: https://github.com/facebookresearch/visdom/blob/master/example/demo2.lua#L99-109 |
Thank you for your reply.
Fot the line-plot, is there anyway to get access to the data (X, Y) stored in the figure? Because when I re-run a program, the index start from 1 again, but I want to append it to the end of the figure, rather than creating a new figure. |
You can use a pre-specified vis = visdom.Visdom()
win = visdom.text{text = 'test', win = 'my_window'}
print(win) This will print There is currently no way to access the data on the server from the Python/Lua wrapper, but you can use the |
Thank you for your answering. |
Great tools!
and I have several questions.
how to create different visdom workspace programmingly?
Is it possible to make the following code work if the window 'loss' has not been initiated before. It's quite inconvenient if I have to create every window first using some dammy data and then update it.
Thank you~
The text was updated successfully, but these errors were encountered: