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

Extract_Feats.py #2

Closed VisheshTanwar-IITR closed 6 years ago

VisheshTanwar-IITR commented 6 years ago

@vijayvee Hello Vijay,

I have doubt to know about path defined in "sys.path.insert(0,'/home/vijay/deep-learning/caffe/python')".

Which path is given here? Should I need to give my python path? Also, where you call this file?

Thanks

vijayvee commented 6 years ago

Hello Vishesh,

I extract features using Caffe. This path should point to the caffe installation in your system. You may refer this guide to install Caffe.

VisheshTanwar-IITR commented 6 years ago

Thanks @vijayvee

I got that path.