Food101 CNN Tensorflow Playground Model - Flatten layer #231
-
Hello @mrdbourke , The model achieves 50% accuracy: Create a model to replicate the TensorFlow Playground modelmodel_2 = tf.keras.Sequential([ https://dev.mrdbourke.com/tensorflow-deep-learning/03_convolutional_neural_networks_in_tensorflow/#an-end-to-end-exampleI've changed the Flatten layer to before the output layer and achieved more than 80% accuracy and 75% in validation: Is my approach incorrect? Another question, should we look more to improve accuracy, validation accuracy or both? By the way, great course and resources that you have made for this. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Woah! That looks like a big improvement. If you've validated the model and it works, then your method is correct. What you'll find when building neural networks is there are very many different ways to do something. And often tweaking something, even a single layer, can lead to better results. Fantastic experimenting. |
Beta Was this translation helpful? Give feedback.
Woah! That looks like a big improvement.
If you've validated the model and it works, then your method is correct.
What you'll find when building neural networks is there are very many different ways to do something.
And often tweaking something, even a single layer, can lead to better results.
Fantastic experimenting.