Skip to content

Commit

Permalink
Pachi 12.30
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonsqueeze committed Feb 11, 2019
1 parent 1d45610 commit 55b8ec3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,9 @@ More information about this dcnn [here](http://computer-go.org/pipermail/compute

Pachi will look for `golast19.prototxt` and `golast.trained` files on startup.

Althouh it was trained on 19x19 it can be used on other board sizes as well since
it's fully convolutional (Right now Pachi will use it all the way down to 13x13).
Currently dcnn is used only for root node, dcnn + pondering is working now.
(see `dcnn_pondering_prior` and `dcnn_pondering_mcts` uct params to tweak it).
This network is fully convolutional, so can work with boards other than 19x19.
right now it's used for boards 13x13 and up.
Currently dcnn is used for root node only, dcnn + pondering working now.


## How to run
Expand Down
4 changes: 2 additions & 2 deletions pachi.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,14 @@ usage()
" max_tree_size=100 use up to 100 Mb of memory for tree search \n"
" resign_threshold=0.25 resign if winrate < 25%% (default: 20%%) \n"
" threads=4 use 4 threads for tree search (default: #cores) \n"
" pondering think during opponent turn (nodcnn only, default: no) \n"
" pondering think during opponent turn (default: no) \n"
" \n");
}

static void
show_version(FILE *s)
{
fprintf(s, "Pachi %s\n", PACHI_VERSION);
fprintf(s, "Pachi %s\n", PACHI_VERSION_FULL);
if (!DEBUGL(2)) return;

fprintf(s, "git %s\n", PACHI_VERGIT);
Expand Down
9 changes: 5 additions & 4 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include "build.h"

#define PACHI_VERNUM 12.20
#define PACHI_VERNUMS "12.20"
#define PACHI_VERNUM 12.30
#define PACHI_VERNUMS "12.30"

/* 00. Wang Zhi
* 01. Sansa Meijin 1612-1623
Expand Down Expand Up @@ -33,8 +33,9 @@
* 21. Shusai Meijin 1908-1940 */
#define PACHI_VERNAME "Jowa"

#define PACHI_VERSION PACHI_VERNUMS " (" PACHI_VERNAME ")"
#define PACHI_VERGIT PACHI_GIT_HASH " (" PACHI_GIT_BRANCH ")"
#define PACHI_VERSION PACHI_VERNUMS
#define PACHI_VERSION_FULL PACHI_VERNUMS " (" PACHI_VERNAME ")"
#define PACHI_VERGIT PACHI_GIT_HASH " (" PACHI_GIT_BRANCH ")"

#ifdef DCNN
#define PACHI_VERBUILD PACHI_BUILD_TARGET " dcnn build, " PACHI_BUILD_DATE
Expand Down

0 comments on commit 55b8ec3

Please sign in to comment.