fossasia / visdom

A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy.
Apache License 2.0
9.99k stars 1.14k forks source link

Error: root initializing-- Visdom does not show graphs, only has a weird blank table #884

Open DakotaFan opened 1 year ago

DakotaFan commented 1 year ago

Bug Description

after initializing visdom using python -m visdom.server -port ${port} --hostname ${node} ERROR:root:initializing INFO:root:Application Started INFO:root:Working directory: /gpfs/scratch/fanj06/visdom_cache

Reproduction Steps Enter steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior Give a clear and concise description of what you expected to happen.

Screenshots

Screen Shot 2022-10-23 at 4 45 03 AM

Client logs: For issues that make it to the point of reaching the frontend in a browser, please include the javascript logs from that browser. In Chrome, javascript logs can be found via View -> Developer -> JavaScript Console.

Server logs: ERROR:root:initializing INFO:root:Application Started INFO:root:Working directory: /gpfs/scratch/fanj06/visdom_cache INFO:tornado.access:200 POST /env/main (192.168.0.92) 1.01ms INFO:tornado.access:101 GET /vis_socket (192.168.0.92) 0.59ms INFO:root:Opened visdom socket from ip: 192.168.0.92 INFO:tornado.access:200 POST /events (192.168.0.92) 0.57ms INFO:tornado.access:200 POST /events (192.168.0.92) 0.40ms INFO:tornado.access:200 POST /events (192.168.0.92) 0.35ms INFO:tornado.access:200 POST /events (192.168.0.92) 0.53ms INFO:tornado.access:200 POST /win_exists (192.168.0.92) 0.48ms INFO:tornado.access:200 POST /update (192.168.0.92) 1.80ms INFO:tornado.access:200 POST /win_exists (192.168.0.92) 0.32ms INFO:tornado.access:200 POST /update (192.168.0.92) 1.29ms INFO:tornado.access:200 POST /events (192.168.0.92) 0.36ms INFO:tornado.access:200 POST /events (192.168.0.92) 0.94ms

Additional context Add any other context about the problem here. (like proxy settings, network setup, overall goals, etc.)

da-h commented 1 year ago

Hi there,

the table shows the selected environments to be compared: in your case its main and torch-env_train_perc_100_0_expansion_0. As main is probably empty, there are no graphs to be compared.

However, you probably want to inspect all graphs of only a single environment, namely torch-env_train_perc_100_0_expansion_0. To do that you need to remove the main from the environment list in the input-line above. After that the compare_legend table should vanish and your graphs should become visible.

Best da-h