Show HN: TensorSpace.js – Neural network 3D visualization framework
1–10 of 30 posts
Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#2Going to check out how to process my model from keras to use with this tool. Doesn't like that complicated.
Gonna give this a shot :)
Great work !
Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#3Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#4Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#5Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#6And then I followed up with an early TensorFlow visualizer https://github.com/ericjang/tdb
It turns out that while such tools seem useful at first glance, they turn out to not be that helpful to power users. For models bigger than LeNet, things get really ugly to visualize. And once you understand a high-level module and can take its training for granted, there isn't a need anymore to really look at it anymore. It can also be kind of annoying to tumble around in 3D when you just want to look at some activation maps. What does the 3D aspect of the visualization buy you here?
Tools like TensorBoard + Jupyter notebooks for inspecting weights and ad-hoc visualizations (e.g. VizDom) seem to strike the right balance.
If you want to continue pushing in this direction, I highly encourage embarking on an actual Deep Learning research project using your tool. In ML it's so important to dogfood your own software!
Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#7Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#8Re: Show HN: TensorSpace.js – Neural network 3D visualization framework
#9This is neat! I hope you don't mind a bit of constructive criticism here, but early on in my research career I also thought it would be a good idea to "visualize the neural network connectome" in 3D (I implemented a very rudimentary version of your Browser-based visualizer in QT + OpenGL, no training frontend). And then I followed up with an early TensorFlow visualizer https://github.com/ericjang/tdb It turns out tha…