forked from facebookresearch/darkforestGo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e40d9ca
commit 3d0356e
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Board library | ||
================= | ||
|
||
Default policy | ||
-------------- | ||
|
||
In DarkForest, there are 3 default policies that could be chosen, specified by `--playout_policy`: | ||
|
||
1. `v2` (default) | ||
DarkForest uses its own trained default policy. The training set is Tygem (Thanks Ling Wang for providing this). `./models/playout-model.bin` is the trained model. Check `patternv2.c` for the source code. | ||
|
||
2. `simple` | ||
DarkForest uses simple default policy (trying to save when atari, trying to put others into atari, 3x3 pattern matching from Pachi, etc). | ||
|
||
3. `pachi` | ||
DarkForest uses Pachi's default policy. The majority of codes are in `./pachi_tactics`. |