Submitted by Tiny-Mud6713 t3_yuxamo in MachineLearning
RoaRene317 t1_iwc102m wrote
There is some tricks that could increase your accuracy:
- Adjust the parameter tuning more. Sometimes increasing or decreasing the Augmentation Value (Rotation, zoom , shear,etc) could improve accuracy
- Unfreeze Batch Normalization Layers could help
- Check for each class of the dataset if it's balanced or not. If the datasets is inbalanced, try to use ViT or SMOTE algorithm.
- Increasing Dropout value , sometimes could help
- After doing transfer learning, add pooling layers , either MaxPool or Average Pool.
Also I don't think you should dropout some networks before the Dense. Because Flatten is just making it the matrices into one dimensional (Flatten out).
Tiny-Mud6713 OP t1_iwc7y2g wrote
Very insightful, Haven't tried most of these things, thanks for sharing the knowledge.
Viewing a single comment thread. View all comments