There are changes in gym API between 0.25 and 0.26 These changes break backward compatibility.
Also there are some changes with video recording in gym 0.23 or so.
In this commit we updated the code of week6 seminar to use gym 0.26
What is changed:
env initializer;
env.render;
env.reset;
env.step;
video recording
Originally I wanted to add if-else instructions everywhere to support all versions of gym, but the notebook become messy, so let's support just 0.26 and higher.
There are changes in gym API between 0.25 and 0.26 These changes break backward compatibility. Also there are some changes with video recording in gym 0.23 or so.
In this commit we updated the code of week6 seminar to use gym 0.26
What is changed:
Originally I wanted to add if-else instructions everywhere to support all versions of gym, but the notebook become messy, so let's support just 0.26 and higher.
Note: didn't test in Colab, only locally