aboutsummaryrefslogtreecommitdiff
path: root/imago/engine/keras.py
diff options
context:
space:
mode:
Diffstat (limited to 'imago/engine/keras.py')
-rw-r--r--imago/engine/keras.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/imago/engine/keras.py b/imago/engine/keras.py
new file mode 100644
index 0000000..5445d92
--- /dev/null
+++ b/imago/engine/keras.py
@@ -0,0 +1,16 @@
+"""Keras neural network module."""
+
+from imago.engine.decisionAlgorithm import DecisionAlgorithm
+
+class Keras(DecisionAlgorithm):
+
+ def __init__(self, move):
+ pass
+
+ def forceNextMove(self, coords):
+ """Selects given move as next move."""
+ pass
+
+ def pickMove(self):
+ """Returns a move to play."""
+ pass