minghangz / SPL

Generating Structured Pseudo Labels for Noise-resistant Zero-shot Video Sentence Localization
13 stars 0 forks source link

Where is the folder models? #4

Open Chuan-shanjia opened 4 months ago

Chuan-shanjia commented 4 months ago

Hello. Thank you for your great work! In captions_generator.py and features_extractor.py, you have the code from models.blip_itm import blip_itm from models.blip import blip_decoder But where is the folder models or the model blip?

minghangz commented 4 months ago

The folder models is from the BLIP's official code. Please clone BLIP and copy the following files into the directory for BLIP:

git clone git@github.com:salesforce/BLIP.git
cp captions_generator.py feature_extractor.py BLIP
cd BLIP
Chuan-shanjia commented 4 months ago

Thank you! It really helps.