oui
This commit is contained in:
parent
2d96166ab0
commit
7531e7118e
12 changed files with 1295 additions and 0 deletions
18
RUN.py
Normal file
18
RUN.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
#RUN
|
||||
|
||||
import mnist_loader
|
||||
training_data, validation_data, test_data = mnist_loader.load_data_wrapper()
|
||||
|
||||
import network
|
||||
|
||||
# net = network.Network([784, 30, 10]) #Testé : 94,56%
|
||||
# net.SGD(training_data, 30, 10, 3.0, test_data=test_data)
|
||||
|
||||
net = network.Network([784, 100, 10]) #Marche mieux apparemment
|
||||
net.SGD(training_data, 30, 10, 3.0, test_data=test_data)
|
||||
|
||||
# net = network.Network([784, 100, 10]) #Marche pas bien apparemment
|
||||
# net.SGD(training_data, 30, 10, 0.001, test_data=test_data)
|
||||
|
||||
# net = network.Network([784, 30, 10]) #Marche pas du tout apparemment
|
||||
# net.SGD(training_data, 30, 10, 100.0, test_data=test_data)
|
Loading…
Add table
Add a link
Reference in a new issue