Aghasemian / CommunityFitNet

This page is a companion for our paper on overfitting and underfitting of community detection methods on real networks, written by Amir Ghasemian, Homa Hosseinmardi, and Aaron Clauset. (arXiv:1802.10582)
26 stars 5 forks source link

Open Pickle file #2

Open EskreisWinkler opened 5 years ago

EskreisWinkler commented 5 years ago

I am having trouble opening the benchmark data in the pickle file.

Is it anything beyond:

f = open('CommunityFitNet.pickle', 'rb') out = pkl.load(f)

or

pkl.load( open( 'CommunityFitNet.pickle', 'rb' ) )

? I keep getting an error of "ImportError: No module named managers" But I don't know what module this could be referring to? Could you please help??

Aghasemian commented 5 years ago

Thanks for catching it up, Jonathan. This issue is related to the pandas version. The version that loads the pickle file perfectly is " 0.24.* ".

Aghasemian commented 5 years ago

The previous version issue is fixed now and the data can be loaded with the following pickle formats ['1.0', '1.1', '1.2', '1.3', '2.0', '3.0', '4.0']. Please let me know if there is still any problem.