anshupatel4298 commited on
Commit
e553524
·
verified ·
1 Parent(s): c7fd3c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def create_model():
21
  tf.keras.layers.Dropout(0.5),
22
  tf.keras.layers.Dense(64, activation='relu'),
23
  tf.keras.layers.Dropout(0.5),
24
- tf.keras.layers.Dense(10, activation='softmax') # Adjust the number of classes accordingly
25
  ])
26
  return model
27
 
 
21
  tf.keras.layers.Dropout(0.5),
22
  tf.keras.layers.Dense(64, activation='relu'),
23
  tf.keras.layers.Dropout(0.5),
24
+ tf.keras.layers.Dense(40, activation='softmax') # Adjust the number of classes to match the original model
25
  ])
26
  return model
27