Show HN: Python library for embedding large graphs (Written in Rust)
1–10 of 26 posts
Re: Show HN: Python library for embedding large graphs (Written in Rust)
#2Re: Show HN: Python library for embedding large graphs (Written in Rust)
#3The graphviz python library works great I've found with the sole exception of not having straightforward ways to edit the graph after creation. It's really more intended for packaging it up to pass to the command line application.
Will you have file import/export for .dot and similar?
Re: Show HN: Python library for embedding large graphs (Written in Rust)
#4Is it compatible with graphviz? https://graphviz.readthedocs.io/en/stable/ The graphviz python library works great I've found with the sole exception of not having straightforward ways to edit the graph after creation. It's really more intended for packaging it up to pass to the command line application. Will you have file import/export for .dot and similar?
I'm planning to better integrate it with other graph libraries, but at the moment you have manually translate between graph-force and you library of choice.
Re: Show HN: Python library for embedding large graphs (Written in Rust)
#5A lib generating 2D artifacts might benefit from showcasing these artifacts using image technology for the curious minds.
As an example: I created this to build this embedding of Mastodon instances. https://h4kor.github.io/fediverse-explorer/
Re: Show HN: Python library for embedding large graphs (Written in Rust)
#6Re: Show HN: Python library for embedding large graphs (Written in Rust)
#7A lib generating 2D artifacts might benefit from showcasing these artifacts using image technology for the curious minds.
Thanks for the feedback. The library only calculates the positions and has no graphical output. As an example: I created this to build this embedding of Mastodon instances. https://h4kor.github.io/fediverse-explorer/
Re: Show HN: Python library for embedding large graphs (Written in Rust)
#8No weights on the relationships?
Re: Show HN: Python library for embedding large graphs (Written in Rust)
#9Re: Show HN: Python library for embedding large graphs (Written in Rust)
#10Earlier quoted context omitted.
Thanks for the feedback. The library only calculates the positions and has no graphical output. As an example: I created this to build this embedding of Mastodon instances. https://h4kor.github.io/fediverse-explorer/
I'm looking at the Fediverse explorer and I'm curious how to interpret the embeddings (or the distances between points). What does it mean when two instances are near each other (e.g., sigmoid.social and mastodon-belgium.be)? Is it related to the number of follows?
As a next step I want to refine this as peering itself does not say anything about how much users of these instances interact. For this I will have to sample the users of instances and who they follow.