diff options
author | Florian Jung <flo@windfisch.org> | 2016-01-05 20:00:40 +0100 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2016-01-05 20:00:40 +0100 |
commit | 642eec19b23c3cbfc109ead821307b5b1f1b0d72 (patch) | |
tree | 6167ab1c29d05b61a081160643b4379eed0bba0c | |
parent | a9d63e486f43f5e6858c44627f3711b11d83f35f (diff) |
reduced neuron number to 40
-rw-r--r-- | sol.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -224,7 +224,7 @@ class QNN: def __init__(self): connection_rate = 1 num_input = 2 - hidden = (50,50) + hidden = (40,40) num_output = 4 learning_rate = 0.7 |