I am using tensorflow for regression of a single scalar variable y
. Is there a way to use tensorboard to visualize the regression in the form of a point cloud, one axis being the ground truth and the other being the estimate?
Asked
Active
Viewed 427 times
0

P-Gn
- 23,115
- 9
- 87
- 104
-
I'm afraid not - but why tensorboard? matplotlib gives you plenty of tools to do that – dv3 Mar 26 '17 at 19:45
-
I suppose most of tensorboard's features could be implemented with matplotlib. However I find tensorboard very useful, and I use it. I would of course rather keep all of my visual summariers in one place. – P-Gn Mar 27 '17 at 07:26
1 Answers
0
Tensorboard has the ability to show images. So a solution is to plot the graph in matplotlib, rendering it as a PNG image and importing the result in tensorboard.
The topic is covered in this question and its answers.

P-Gn
- 23,115
- 9
- 87
- 104