├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── __init__.py ├── best.py ├── best └── README.md ├── children └── README.md ├── clean.bat ├── clean.sh ├── config.py ├── hybrid.py ├── main.py ├── matchlog └── README.md ├── parents └── README.md ├── tools ├── README.md ├── hybrid.zip └── winrange.xlsx └── work └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/README_CN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/best.py -------------------------------------------------------------------------------- /best/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/best/README.md -------------------------------------------------------------------------------- /children/README.md: -------------------------------------------------------------------------------- 1 | Direction to contain hybrid child weight we generat 2 | -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/clean.bat -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/clean.sh -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/config.py -------------------------------------------------------------------------------- /hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/hybrid.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/main.py -------------------------------------------------------------------------------- /matchlog/README.md: -------------------------------------------------------------------------------- 1 | Direction that save match logs. 2 | -------------------------------------------------------------------------------- /parents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/parents/README.md -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | Tools direction 2 | -------------------------------------------------------------------------------- /tools/hybrid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/tools/hybrid.zip -------------------------------------------------------------------------------- /tools/winrange.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangafu/Hybrid_LeelaZero/HEAD/tools/winrange.xlsx -------------------------------------------------------------------------------- /work/README.md: -------------------------------------------------------------------------------- 1 | Temp Direction to match. 2 | --------------------------------------------------------------------------------