You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I implemented the model proposed in the VQA paper the same as what you’ve done and also I used processed features provided by VT Vision Lab. Unfortunately, we ran into an overfitting problem. Could you help us to solve this problem?
As @maryamhashemi said, we faced this problem.After scrutinizing, We've done 2 actions :
Setting learning rate for rmsprop
L2 normalizng of VGG19's output features .
These 2 actions solved over fitting problem in our task.Now,our accuracy is about 46 percent.
Could you explain that is there any thing else to improve this accuracy ?
Hi,
I implemented the model proposed in the VQA paper the same as what you’ve done and also I used processed features provided by VT Vision Lab. Unfortunately, we ran into an overfitting problem. Could you help us to solve this problem?
This is training configuration:


DROPOUT_RATE = 0.5
EMBEDDING_DIM = 300
EPOCHS = 50
BATCH_SIZE = 256
SEQ_LENGTH = 26
EMBEDDING_TYPE = Glove.6b.300d.en
Image_Features = VGG19
Train_size = 215359
Val_size = 121512
optimizer='rmsprop'
loss='categorical_crossentropy'
The text was updated successfully, but these errors were encountered: