Overfitting issue with video dataset while using PyG #8645
Unanswered
BhuyanMonami
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using Graph CNNs for action recognition for a video dataset. Specifically, as a starting point I have modelled my data in the following way:
Now, while my model initially seemingly performed "well" on the training and validation data (with an accuracy >90% for each action class), it wasn't able to generalise on unseen testing data. This let me to conclude to my model is overfitting. So as per #2008 I tried using dropout layers after each conv. layer, however, after having done so, the validation accuracy doesn't improve beyond 58%(ish) after using early stopping.
I would be very grateful if some input and suggestions were thrown my way. For example, should I use a different convolution layer? Or different hyperparameters? Or different features etc?
Here is my model:
And here is my trainer:
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions