vijayvee / video-captioning

This repository contains the code for a video captioning system inspired by Sequence to Sequence -- Video to Text. This system takes as input a video and generates a caption in English describing the video.
MIT License
165 stars 66 forks source link

Channel Reversal for VGG #21

Closed AsimJalwana closed 4 years ago

AsimJalwana commented 5 years ago

Hi, Looking at the feature extraction part, I cannot see if you have reversed the channels to BGR from the RGB frames. Have you trained the VGG network on RGB? Please confirm.

vijayvee commented 4 years ago

Hi Asim, good call, I don't think I do the channel reversal in the input pipeline. Corrected this in the feature extraction part.

AsimJalwana commented 4 years ago

Thanks Vijay for the reply and correction, Cheers!