Skip to content

Commit

Permalink
aladdinpersson#177 Keras input shape Issue Solved
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashank1202 committed Aug 17, 2024
1 parent bdab011 commit eeedc17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ML/TensorFlow/Basics/tutorial3-neuralnetwork.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Sequential API (Very convenient, not very flexible)
model = keras.Sequential(
[
keras.Input(shape=(28 * 28)),
keras.Input(shape=(28 * 28,)),
layers.Dense(512, activation="relu"),
layers.Dense(256, activation="relu"),
layers.Dense(10),
Expand Down

0 comments on commit eeedc17

Please sign in to comment.