a-PyTorch-Tutorial-to-Image-Captioning icon indicating copy to clipboard operation
a-PyTorch-Tutorial-to-Image-Captioning copied to clipboard

Show, Attend, and Tell | a PyTorch Tutorial to Image Captioning

Results 119 a-PyTorch-Tutorial-to-Image-Captioning issues
Sort by recently updated
recently updated
newest added

Is there a way to load the image and caption when caption per image for each image is different i.e for some it is 5 for some 6 and so...

I am trying to run this project on Pytorch==1.4.0, torchvision==0.5.0 Before training, I had done some changes in `train.py`: `scores, _ = pack_padded_sequence(scores, decode_lengths, batch_first=True)` `targets, _ = pack_padded_sequence(targets, decode_lengths,...

Fixed crash when trying to unpack values from pack_padded_sequence function

No such file or directory: 'E:\\yuyimiaoshu\\train2014\\train2014\\COCO_train2014_000000057870.jpg'

Sorry for the stupid question, but I am very new to machine learning applications. I have run your code until the point of having a checkpoint. I now want to...

Thanks for your instructions and source code! I have been trying to train the model, but I have got a problem. In train.py, the bug goes like this: **in line...

I used the pretrained checkpoint and wordmap, when I ran it through different images, it always returns the same caption? Why could this be? Could you please help me?

hi, I am trying to run train.py, I get an error as "TypeError: h5py objects cannot be pickled". I think the error is stemming from torch.utils.data.DataLoader. or did i miss...

I am trying to train this model using the CUB data set for birds. Therefore I need to create a JSON file like dataset_coco.json for COCO, but for CUB. How...

You mentioned in Readme about teacher forcing in your implementation. But I am unable to see it. Please explain more about it, if it has been implemented. Thanks!