littleballoffur icon indicating copy to clipboard operation
littleballoffur copied to clipboard

Little Ball of Fur - A graph sampling extension library for NetworKit and NetworkX (CIKM 2020)

Results 6 littleballoffur issues
Sort by recently updated
recently updated
newest added

The two datasets have "node_1,node_2" as header instead of the expected "id_1,id_2".

Hi, I am working on movielens-1m dataset. SnowBallSampler will never stop when num_of_nodes is high (e.g. 50% of nodes) (I fixed the seed=2022 and k=50 by default). During debugging, I...

As of Python 3.11 random.sample does not auto cast sets to lists. An error is thrown instead. I checked all Samplers and the DiffusionSampler, DiffusionTreeSampler as well as the ForestFireSampler...

Put the contents of the [README.md](README.md) up on the package PyPi page at [https://pypi.org/project/littleballoffur/](https://pypi.org/project/littleballoffur/) so it will search engine optimization (SEO) better and more people will find and use it....

I tried to code the example in the docs: ``` from littleballoffur import ForestFireSampler import networkx as nx graph = nx.newman_watts_strogatz_graph(1000, 20, 0.05) model = ForestFireSampler() new_graph = model.sample(graph) ```...