Hi, I have just installed rllab envirtonment, and I run the example code trpo_cartpole_pickled.py successfully. And get the log file "debug.log params.pkl progress.csv variant.json". And when I am trying to load the "params.pkl" file, I failed.
Here is the code:
import pickle
f = open('params.pkl','rb'
info = pickle.load(f)
And the error is :
UnpicklingError Traceback (most recent call last)
in ()
----> 1 info = pickle.load(f)
UnpicklingError: invalid load key, 'x'.
So is the method that I tried to load file wrong?
Hi, I have just installed rllab envirtonment, and I run the example code trpo_cartpole_pickled.py successfully. And get the log file "debug.log params.pkl progress.csv variant.json". And when I am trying to load the "params.pkl" file, I failed.
Here is the code:
import pickle f = open('params.pkl','rb' info = pickle.load(f)
And the error is :
UnpicklingError Traceback (most recent call last)