This is the layer setup for my model and the summary of it.
I followed the instructions, but it keeps getting me a very low model accuracy both in training and validation data sets. Also, the weird thing is that the accuracy never goes higher than 0.2270.
Could you give me any clue to increase the accuracy by over 90%?
1 Like
Here are some hints to fix your model:
- The assignment deals with a multi-class classification. The number of output nodes in your model should match the number of classes.
- Pick the correct
loss
function for multi-class classification instance.
Don’t forget to remove code from your post. It’s okay to leave stacktrace / training output.
1 Like
Please refrain from providing direct answers. You are welcome to provide as many hints as you’d like. Happy learning.