From 64ffc28220798d5df4099bc8de054928e544d699 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Wed, 16 Mar 2016 08:29:13 +0000
Subject: [PATCH] defaults

---
 src/go.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/go.c b/src/go.c
index aaf59bc..3b18fed 100644
--- a/src/go.c
+++ b/src/go.c
@@ -8,8 +8,8 @@
 #include "opencv2/highgui/highgui_c.h"
 #endif
 
-int inverted = 0;
-int noi = 0;
+int inverted = 1;
+int noi = 1;
 
 void train_go(char *cfgfile, char *weightfile)
 {
@@ -219,7 +219,7 @@
             int index = indexes[i];
             row = index / 19;
             col = index % 19;
-            printf("Suggested: %c %d, %.2f%%\n", col + 'A' + 1*(col > 7 && noi), (inverted)?19 - row : row-1, move[index]*100);
+            printf("Suggested: %c %d, %.2f%%\n", col + 'A' + 1*(col > 7 && noi), (inverted)?19 - row : row+1, move[index]*100);
         }
         int index = indexes[0];
         int rec_row = index / 19;

--
Gitblit v1.10.0