79593661

Date: 2025-04-26 07:05:38
Score: 1
Natty:
Report link

Add an Input layer to define the input shape explicitly:

model = Sequential([
    Input(shape=(28, 28)),
    Flatten(),
    Dense(128, activation='relu'),
    Dense(10, activation='softmax')
])

Reconvert your model and try loading it again—it should work!

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: vidun dulmika