aboutsummaryrefslogtreecommitdiff
path: root/train.py
diff options
context:
space:
mode:
authorInigoGutierrez <inigogf.95@gmail.com>2023-06-02 13:02:08 +0200
committerInigoGutierrez <inigogf.95@gmail.com>2023-06-02 13:02:08 +0200
commit88fbf5f8919211cfa06116a76f42fb26ec9f2e18 (patch)
tree962d26ca9b07bb28fae607e4d8ba4008893b1900 /train.py
parent2d895e4abb26eccefe6b4bc201fd60eb79600e3e (diff)
downloadimago-88fbf5f8919211cfa06116a76f42fb26ec9f2e18.tar.gz
imago-88fbf5f8919211cfa06116a76f42fb26ec9f2e18.zip
Second revision and added rules of the game.
Diffstat (limited to 'train.py')
-rwxr-xr-xtrain.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/train.py b/train.py
index 0f518d0..306d6e5 100755
--- a/train.py
+++ b/train.py
@@ -14,6 +14,10 @@ def main():
print(file)
games.append(loadGameTree(file))
+ if len(games) == 0:
+ print("Error: No game files provided. Provide some SGF files as arguments.")
+ sys.exit(0)
+
matches = [game.getMainLineOfPlay() for game in games]
modelFile = ""