What does mean the index in the predict method with Model Class?

Hello and Greetings,

I’m trying to predict the test_image[0] in both Sequential Model and Model Class .
I’d like to know what does mean the index here in the screen .
NB:

1)The output at the index 6 with Model Class is the same as the Sequential Model.
2) I convert the Sequential model to Model Class


activation_model has more than 1 output. Try this:
print(activation_model.outputs)

It should now be clear what 6 stands for.

2 Likes

Thank you :heart: :heart: you save my time