KataGo
KataGo copied to clipboard
GTP engine and self-play learning in Go
The Wild Fox has a flying knife rule, which involves making two moves at once. If it's difficult to implement this by modifying the Katago code, I provide three relatively...
When I ran my command on OGS `pushd C:\Program Files\nodejs && node.exe C:\Users\chang\node_modules\gtp2ogs\dist\gtp2ogs.js --apikey (mykey) -c C:\Users\chang\OneDrive\Desktop\kata_speed.json5 -- C:\Users\chang\Downloads\katago-v1.15.3-cuda12.5-cudnn8.9.7-windows-x64/katago.exe gtp -config C:\Users\chang\Downloads\katago-v1.15.3-cuda12.5-cudnn8.9.7-windows-x64\gtp_human5k_example.cfg -model C:/Users/chang/Downloads/kata1-b18c384nbt-s9937771520-d4300882049.bin.gz -human-model C:\Users\chang\Downloads\b18c384nbt-humanv0.bin.gz` it gives out the...
I believe it's possible to train models with different playing styles by using game records from human players with various styles. Can this human-model training also be implemented using train.py?
This adds a flask wrapper `flask_wrapper_human_sl_server.py` around the `humanslnet_server.py` It's useful for integration with front ends, to allow them to do web requests to the `humanslnet_server.py` `humanslnet_server.py` gives a higher...
I was able to compile for android with opencl support using my branch: https://github.com/jopdorp/KataGo/tree/android-support Hopefully this will make it easier to use katago on android for future devs. Now in...
### Issue When running b1c6nbt with c++ engine, it will trigger this error. ` terminate called after throwing an instance of 'StringError' what(): Error loading or parsing model file /b1c6nbt-s31704192-d83750556/model.bin.gz:...
I read the paper Adversarial Policies Beat Superhuman Go AIs (T. Wang et al, 2023) and test b28-s6797 recently. b28 successfully handled the cyclic groups in that paper, but still...
I've noticed that when using analysis mode to analyze game records, whether or not Pass Moves are included in the input to KataGo leads to different results. Through manual judgment,...
`...katago-v1.15.1-eigen-linux-x64/katago: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory` In OS (OpenSUSE Tumbleweed) there are libssl.so.3 (link) and libssl.so.3.1.4 (library) only... Why...