yhyu13 / AlphaGOZero-python-tensorflow

Congratulation to DeepMind! This is a reengineering implementation (on behalf of many other git repo in /support/) of DeepMind's Oct19th publication: [Mastering the Game of Go without Human Knowledge]. The supervised learning approach is more practical for individuals. (This repository has single purpose of education only)
MIT License
340 stars 113 forks source link

What does random AI mean? #14

Closed arisliang closed 6 years ago

arisliang commented 6 years ago

Mentioned in the README:

Play Against An A.I. (currently only random A.I. is available)

What does random A.I. mean?

yhyu13 commented 6 years ago

@arisliang

It was an outdated readme. I've updated its content recently, so the command you see under this line would use MCTS+DNN policy. A random A.I. plays a move randomly, it was a quick way to see if the code (mainly Go engine) works on your machine or not because initializing a DNN takes more computer resources. Thanks for spotting my mistakes