FFrankyy / FINDER

FINDER - FInding key players in complex Networks through DEep Reinforcement learning (Nature Machine Intelligence)
MIT License
182 stars 46 forks source link

Failure with no error message #6

Closed FL33TW00D closed 4 years ago

FL33TW00D commented 4 years ago

Hi there, I have been using FINDER, and it works great on the 9 provided real datasets. It also works well on a Watts-Strogatz graph generated by networkX. I am attempting to use it on some bespoke data. I have ensured that the graph is all one connected component using NetworkX, and it looks like the provided image: image

I will also provide the TXT file.

Upon running this, the code simply pauses and then ends, like so: image

Any ideas would be appreciated. data.txt

FFrankyy commented 4 years ago

Please ensure the network be a connected component, no self-loops, no isolated nodes, no multiple edges between the same pair of nodes.

FL33TW00D commented 4 years ago

Please ensure the network be a connected component, no self-loops, no isolated nodes, no multiple edges between the same pair of nodes.

Hi there, Thank you for the response. I have now a single connected component, no self loops and no isolated nodes. It is construced using a NetworkX graph which does not allow multiple edges. image datav2.txt

Any more ideas? Would really help me out.

Many Thanks, Chris

FL33TW00D commented 4 years ago

Fixed. Was a mistake in the construction of my adjacency matrix. Thank you for your help @FFrankyy