aboutsummaryrefslogtreecommitdiff
path: root/resources/extract.sh
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-02-01 21:46:24 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit11956b2e940f5e1839efab187d898092e819a766 (patch)
treed485a6944d3fedbd62690a96bdcb19e0918104af /resources/extract.sh
parent328c8d1e3094a942d6a2edd933c9cc4ab09daab1 (diff)
Tried some naive iterative deepening. Work on TEI interface next
If TEI is implemented, then i could make use of Morten's racetrack (https://github.com/MortenLohne/racetrack) and develop a quantitative measure of the bot's performance. This is the current priority.
Diffstat (limited to 'resources/extract.sh')
-rwxr-xr-xresources/extract.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/extract.sh b/resources/extract.sh
index 0e78505..e9cd62a 100755
--- a/resources/extract.sh
+++ b/resources/extract.sh
@@ -2,7 +2,7 @@
db_file=games_anon.db
-chosen_players="AaaarghBot Tiltak_Bot"
+chosen_players="AaaarghBot Tiltak_Bot Taktician"
query() {
query="(size == $1) and (result != '1-0') and (result != '0-1') and (result != '0-0') and (result != '1/2-1/2')"
@@ -63,5 +63,5 @@ make pptdb
for size in 5; do
echo
extract $size notation,result
- process $size 400000 training
+ process $size 1000000 training
done