vqa.pytorch
vqa.pytorch copied to clipboard
Visual Question Answering in Pytorch
Model from http://data.lip6.fr/cadene/vqa.pytorch/vqa2/mutan_att_train.zip gives extremely confusing results, I suggest everyone trying another model, e.g. http://webia.lip6.fr/~cadene/Downloads/vqa.pytorch/logs/vqa/mutan_att_trainval.zip which is on vqa (yaml is in vqa.pytorch/options/vqa/).
runfile('F:/project/vqa.pytorch-master/demo_server.py', wdir='F:/project/vqa.pytorch-master') File "F:\project\vqa.pytorch-master\demo_server.py", line 80 visual_data = visual_data.cuda(async=True) ^ SyntaxError: invalid syntax
Hi, thank you so much for providing your code! I want to check the output shapes at every stage of the model. I plan to do that by passing in...
Hi, i'm trying to run demo_server.py and i get this ``` THCudaCheck FAIL file=/opt/conda/conda-bld/pytorch_1513368888240/work/torch/lib/THC/generic/THCStorage.c line=82 error=2 : out of memory Segmentation fault (core dumped) ``` What should I do? Regards,...
Hi, I am trying to extract features for coco dir - however it always gives me RuntimeError: CUDA out of memory. I have tried using single GPU by setting CUDA_VISIBLE_DEVICES=0-...
Hi, I am confused that how to use the multiple choice answer in the multiple-choice task when training and evaluate the model? Can we process the multiple choice answer the...
Can I directly use the LSTM or TwoLstm in the part of seq2vec? When I use these two ways, error say: RuntimeError: size mismatch at /pytorch/torch/lib/THC/generic/THCTensorMathBlas.cu:247
Hi, I have finished training and selected the model with best performance on val set. How can I get the results on test split which can be submitted into the...
In the[ LSTM documentation]( https://pytorch.org/docs/stable/nn.html#torch.nn.LSTM) is specified that we should feed to the RNN inputs of shape (seq_len, batch, input_size) however it seems to me that we are feeding inputs...
In vqa_processed.py, encode_question fails (index out of range) when the padding desired is 'left' and the question length is larger than the maximum length. A possible fix is to replace...