Closed jayabrata97 closed 2 years ago
I have the same problem, do you solve it?
Yes.
So observation, reward, done, info = env.step(np.zeros((2,))) is correct or not?
So observation, reward, done, info = env.step(np.zeros((2,))) is correct or not?
Correct, it worked for me.
So observation, reward, done, info = env.step(np.zeros((2,))) is correct or not?
Correct, it worked for me.
Thank you a lot!!
Can you send a patch to fix this issue?
I changed this line. By the way, thanks for the deep learning course lectures. I came to know about the paper from there.
I meant asking whether you'd like to send a PR and/or edit the file directly. So you'll be a contributor ;) and automatically close this issue.
Hi @Atcold, sorry for the late reply. I would like to edit the file directly. Thank you very much for considering me as a contributor. I will open a PR.
Just click on the ✏️ and edit the file. Don't forget to type "close #67" in your commit message to automatically close this issue.
I was trying run
generate_trajectories.py
. However, it was giving errorTypeError: step() missing 1 required positional argument: 'action'
on line 90observation, reward, done, info = env.step()
. I changed it toobservation, reward, done, info = env.step(np.zeros((2,)))
. Then it started building pkl files. @Atcold , is it correct?