Tiny VGG performance on Pizza_Steak_Sushi Dataset #327
Replies: 5 comments 3 replies
-
Which notebook are you working through? What have you tried so far? Have you been through the steps here: https://www.learnpytorch.io/02_pytorch_classification/#5-improving-a-model-from-a-model-perspective One of the most important things when training neural networks is to experiment, experiment, experiment. Not everything will always work. For one way to really improve your model's performance, check out transfer learning: https://www.learnpytorch.io/06_pytorch_transfer_learning/ |
Beta Was this translation helpful? Give feedback.
-
I'm in the same boat...will look at transfer learning. I'm about to start training on my own images and want to make sure I don't run into the same roadblocks of not being able to improve it. |
Beta Was this translation helpful? Give feedback.
-
Additionally to changing hidden units, learning rate, epochs, I also played with batch size and image resize size |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I've tried a lot of things, from messing with the hyperparameters, to expanding my dataset 5-6 times with randomly rotated, blurred, and cropped images, none of which got me test accuracy of over 60%, but the train accuracy is always around 90-95%. I tried adding Dropout layers with probability = 0.5, which helped a bit but still the model overfits the training data A LOT. |
Beta Was this translation helpful? Give feedback.
-
Hi
I just finished the PyTorch video on Youtube, but I can't still figure out how we can increase accuracy to an acceptable level. I tried different methods that Daniel mentioned in the video, but none of them worked properly. My model is still as good as guessing. So, how we should do it?? Is there another video that explains it?
Beta Was this translation helpful? Give feedback.
All reactions