GypsyDangerous / Python-Neural-Network

a simple deep neural network I made in python. version 1.3
Apache License 2.0
1 stars 2 forks source link

SyntaxError: non-default argument follows default argument #3

Closed Heagan closed 5 years ago

Heagan commented 5 years ago

consider changing: def init(self, inputs, layers=1, hidden, output, epochs=10, learning_rate=.01, minibatch_size=1): to: def init(self, inputs, hidden, output, layers=1, epochs=10, learning_rate=.01, minibatch_size=1):

GypsyDangerous commented 5 years ago

Thanks, I made that change.