perfectly-balanced / PathBench

Benchmarking Platform for Classic and Learned Path Planning Algorithms.
Other
91 stars 18 forks source link

Pickle files aren't opening #75

Open qitop opened 2 years ago

qitop commented 2 years ago

I am trying to open pickle files. I tried different methods


import pickle
import pandas as pd
from algorithms import *
object = pd.read_pickle(r'E:\PathBench\data\training_data\training_block_map_3.pickle')
print(object)

it keep on giving me an error

  File "C:\Users\AppData\Local\Programs\Python\Python38\lib\pickle.py", line 1577, in find_class
    __import__(module, level=0)
ModuleNotFoundError: No module named 'algorithms.configuration'

Process finished with exit code 1
h2jaafar commented 2 years ago

This is likely a file path issue, as it appears you are using windows.

Windows is not supported at the moment, as PB was written for Linux. See issue #74.