-
Notifications
You must be signed in to change notification settings - Fork 862
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
Expose add_scalar(ndarray) #643
Comments
What is the typical size of your data? Sometimes the slowness is caused by tensorboard itself. Another question is how do we define the |
@lanpa I just realized that I filed this bug report against the wrong codebase :) I thought that pytorch uses this library under the hood but I see now that it uses tensorboardX/tensorboardX/writer.py Line 416 in 054f1f3
ndarray to tensorboard. As far as I can tell tensorboardX/tensorboardX/writer.py Line 457 in 054f1f3
float or a single-dimensional ndarray.
I'm going to explain what I am trying to do in case you are aware of a better way to do it. I am trying to predict a time series consisting of 300 points per sample. I want to plot the predicted vs target output of each sample to tensorboard every validation step so I can visually inspect how predictions improve over time. I've got ~2500 samples in my validation set so I want to log 300 * 2500 = 750000 points. Currently, it takes ~3 seconds per 10 samples I log. Since I cannot plot an entire sample at a time, I am force to plot a single point of a sample at a time as follows:
Ideally, I want to invoke:
and have tensorboard plot the entire tensor to its own entry in the "Time Series" tab. Any ideas? |
Hi, if I understand correctly, the data you want to plot has four dimension: 1. time 2. value at that time 3. different samples 4. different training epoch. As far as I know, TensorBoard's scalar can show you each trace in the x-z slice in a plot. And if you tag the plots correctly, you can overlay several trace in one plot. In your case, if one trace in a plot is the predicted time series, the other trace should be its corresponding ground truth, and for each validation epoch, you have ~2500 plots to look at, correct? Exposing the interface and write hundreds of points at one time to TensorBoard event file is easy, I think the problem is how you look through so many visualized data. I looked around the "Time Series" plot, look like those visualization is very similar to the visualization of the ordinary "scalar" plot. |
So I think the exposed function should infer the global_step implicitly by counting the numpy array. |
@lanpa Your design doesn't match what I had in mind. I don't want a single plot to compare the performance of different samples. Instead, I want to:
Visually, I think I want a graph similar to: without the gray line.
Maybe there is a better way to represent this visually but this is what I had in mind. I've already got this working in Tensorboard but plotting is extremely slow. Yes, you can infer |
I'd like to log an entire array to tensorboard. This is supported by https://tensorboardx.readthedocs.io/en/latest/tensorboard.html#tensorboardX.SummaryWriter.add_scalar but is not exposed by
tensorboardX
. Can you please expose this functionality?The workaround of invoking
add_scalars()
multiple times in a for loop is so slow it is unusable. It takes minutes to plot data that should take milliseconds.The text was updated successfully, but these errors were encountered: