Akshayc1 / visual-question-answering

Implementation of VQA in Keras
5 stars 5 forks source link

vgg_feats.mat #2

Open chirag-jn opened 4 years ago

chirag-jn commented 4 years ago

@Akshayc1
Can you please provide the vgg_feats.mat file as you referenced in Visual Question Answering.ipynb?

Akshayc1 commented 4 years ago

Hello @chirag-jn, You can download the vgg_feats.mat file from the following link of my drive.

Link: https://drive.google.com/file/d/1_h6HTSGpMomPELvPD5S20bnewep-TpnH/view?usp=sharing

chirag-jn commented 4 years ago

@Akshayc1 Can you please provide access to the link too?

Akshayc1 commented 4 years ago

@chirag-jn Check now!!! If not then let me know once again.

Shahidkhan990 commented 2 years ago

@Akshayc1 why we use vgg_feast.mat file? if i use my own data set then how can i make this file?

Akshayc1 commented 2 years ago

Hi @Shahidkhan990, vgg_feast.mat is the file where we have pretrained model weights for the given dataset. So it is trained on very large dataset and we are using those features for our model.

If we want to use your own dataset then yes you can. You can get features from your own dataset by hyperparameter tunning and by various techniques.

Shahidkhan990 commented 2 years ago

Thank you @Akshayc1