tensorflow / minigo

An open-source implementation of the AlphaGoZero algorithm
Apache License 2.0
3.46k stars 559 forks source link

Running minigo with Sabaki GUI #1018

Open huynq55 opened 3 years ago

huynq55 commented 3 years ago

Anyone know how to config minigo with Sabaki? How to force Sabaki run python with virtualenv?

tommadams commented 3 years ago

I don't know how to configure Sabaki, maybe check their documentation?

Minigo does support the GTP protocol that Sabaki uses to communicate with Go engines, so it should work.

huynq55 commented 3 years ago

@tommadams I've done it by creating a sh file. I post it here for anyone need it: #!/bin/bash source "/home/huy/Documents/pythonenv/bin/activate" export BOARD_SIZE=9 python3 /home/huy/Documents/minigo/gtp.py --load_file=/home/huy/Documents/minigo/outputs/models/best-generation -num_readouts=1600 --verbose=3