Experiments
python pickle errors (stable-baselines3 trained agent)
자월현
2021. 7. 11. 16:11
https://stackoverflow.com/questions/63329657/python-3-7-error-unsupported-pickle-protocol-5
Python 3.7 Error: Unsupported Pickle Protocol 5
I'm trying to restore a pickled config file from RLLib (json didn't work as shown in this post), and getting the following error: config = pickle.load(open(f"{path}/params.pkl", "rb&...
stackoverflow.com
pip install --upgrade --quiet cloudpickle pickle5 라고만 치면 3.7 환경에서도 cloudpickle 5를 쓸 수 있다.