Skip to content

Commit

Permalink
Merge pull request #2 from Isdre/test
Browse files Browse the repository at this point in the history
update requirements.txt
  • Loading branch information
Isdre authored Jun 14, 2024
2 parents 1695f68 + 5a0ea2c commit b887cd0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .idea/neuralNetwork.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified requirements.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion test_compare_tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_digit_tensorflow():
network.add(Layer(neurons_count=10))
network.compile(loss=SquareError,optimizer=Adam(0.0002),metric=Accuracy)

network.fit(X_train,y_train,epochs=3,batch_size=1, validation_split=0.1)
network.fit(X_train,y_train,epochs=3,batch_size=32, validation_split=0.1)

model = tf.keras.models.Sequential([
tf.keras.layers.Flatten(input_shape=(28, 28)),
Expand Down

0 comments on commit b887cd0

Please sign in to comment.