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
341 stars 115 forks source link

uvloop modle can not for windows #5

Closed ZooDoz closed 6 years ago

ZooDoz commented 6 years ago

Collecting uvloop (from -r .\requirements.txt (line 6)) Using cached uvloop-0.8.1.tar.gz RuntimeError: uvloop does not support Windows at the moment

can change this uvloop?

yhyu13 commented 6 years ago

@ZooDoz

You're fine. Just delete these two lines at the beginning of APV_MCTS.py:

import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())

So that asyncio would use its default loop policy. Let me know if you have further trouble.

yhyu13 commented 6 years ago

@ZooDoz

This project still has long iterations ahead. So keep up with commits. Thanks!

ZooDoz commented 6 years ago

thanks for your job. i am a new python player. let me try.

yhyu13 commented 6 years ago

@ZooDoz

Be patient, let me know if you are having trouble.

I've made a new commit that fixed the gtp bug left by its developer. It would great if you can checkout selfplay this branch.