Hacker News new | ask | show | jobs
by Ameo 1060 days ago
I love how easy GraphViz makes it to build integrations on top of it.

In a similar way to this usecase, I created interactive RNN visualizations for a WIP blog post by generating the layout with GraphViz and then rendering it in the browser with D3: https://rnn-temp.ameo.design/loadWeights.html

All the hard work like edge spline generation with bezier curves, node sizing and placement, edge label placement, etc. is taken care of, and the only thing remaining is just rendering some simple paths and polygons.

1 comments

Are you doing the edge splines and Bézier curves from graphviz?
yep!