Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce5b792

Browse files
committed
Tutorial 16, added note about compatibility issues.
1 parent 92d3b3c commit ce5b792

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

16_Reinforcement_Learning.ipynb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,10 @@
533533
"\n",
534534
"You can download a TensorFlow checkpoint which holds all the pre-trained variables for the Neural Network. Two checkpoints are provided, one for Breakout and one for Space Invaders. They were both trained for about 150 hours on a laptop with 2.6 GHz CPU and a GTX 1070 GPU.\n",
535535
"\n",
536+
"#### COMPATIBILITY ISSUES\n",
537+
"\n",
538+
"These TensorFlow checkpoints were developed with OpenAI gym v. 0.8.1 and atari-py v. 0.0.19 which had unused / redundant actions as noted above. There appears to have been a change in the gym API since then, as the unused actions are no longer present. This means the vectors with actions and Q-values now only contain 4 elements instead of the 6 shown here. This also means that the TensorFlow checkpoints cannot be used with newer versions of gym and atari-py, so in order to use these pre-trained checkpoints you need to install the older versions of gym and atari-py - or you can just train a new model yourself so you get a new TensorFlow checkpoint.\n",
539+
"\n",
536540
"#### WARNING!\n",
537541
"\n",
538542
"These checkpoints are 280-360 MB each. They are currently hosted on the webserver I use for [www.hvass-labs.org](www.hvass-labs.org) because it is awkward to automatically download large files on Google Drive. To lower the traffic on my webserver, this line has been commented out, so you have to activate it manually. You are welcome to download it, I just don't want it to download automatically for everyone who only wants to run this Notebook briefly."
@@ -4874,7 +4878,7 @@
48744878
"name": "python",
48754879
"nbconvert_exporter": "python",
48764880
"pygments_lexer": "ipython3",
4877-
"version": "3.6.1"
4881+
"version": "3.6.0"
48784882
}
48794883
},
48804884
"nbformat": 4,

0 commit comments

Comments
 (0)