Questions tagged [visdom]

The visualisation tool Visdom, developed by Facebook Research.

Visdom is a flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy.

7 questions
3
votes
3 answers

ModuleNotFoundError: No module named 'visdom' when importing visdom

When i'm trying to run the following from python console (pycharm) import visdom When I try to run: module = self._system_import(name, *args, **kwargs) I get the following error: ModuleNotFoundError: No module named 'visdom' I've tried to…
Tav
  • 31
  • 1
  • 2
2
votes
0 answers

How to plot second y-Axis in visdom line plot Python?

Here is the client code for Visdom: import visdom import numpy as np import json from win32api import GetSystemMetrics import time # viz = visdom.Visdom() viz = None def Init_Visualization(): global viz try: viz = visdom.Visdom() …
Jaffer Wilson
  • 7,029
  • 10
  • 62
  • 139
2
votes
0 answers

Visdom shows nothing

After starting the visdom server and opening it in the browser i only get a blue screen and the following errors: ERROR:tornado.general:Could not open static file…
mark
  • 41
  • 6
1
vote
0 answers

Is there a way to synchronise visdom updates?

I'm working on a deep learning model which takes image inputs, encodes them into a latent representation and reconstructs them. I'm using visdom to visualise the inputs, outputs, latent variables, and monitor the loss function. I create a vis =…
barters
  • 169
  • 4
0
votes
0 answers

visdom Cannot update when drawing a curve

viz.line([val_acc], [global_step], win='val_acc', update='append') Pictures and texts can be automatically updated,But when I use the above code to draw a curve, I can only refresh the webpage manually to make it move. It may need to be solved by…
waitec
  • 1
0
votes
1 answer

How can I setup Visdom on a remote server?

I'd like to use visdom for visualization of results in a deep learning algorithm which is trained in a remote cluster server. I found a link that tried to describe a correct way to setup everything in a slurm script. python -u Script.py…
Dalek
  • 4,168
  • 11
  • 48
  • 100
0
votes
0 answers

Python 3.7 and visdom error:unsupported operand type(s) for +: 'NoneType' and 'str'

viz = visdom.Visdom(env=DATASET+ ' ' + MODEL) if not viz.check_connection: print("Visdom is not connected. Did you run 'python -m visdom.server' ?") My teacher gave me some codes to run, but I failed. It said:"TypeError: unsupported operand…