Open escorciav opened 2 weeks ago
Worked for me (I believe). If needed, check my fork of clip-bench out :wink: . Your welcome!
clip_benchmark eval --model "ViT-B-16" --model_type synthclip --pretrained $pretrained --dataset=$dataset --output=$output --dataset_root $dataset_root
# Debugging
# python -m ipdb clip-benchmark/clip_benchmark/cli.py eval --model_type synthclip --pretrained $pretrained --dataset=$dataset --output=$output --dataset_root $dataset_root --num_workers 0
In case anyone is interested
Hi guys!
Thanks for making your research accessible to the public & congrats on your CVPRW-2024 paper :tada:
Is this the boilerplate required to plugin SynthCLIP in clip-bench as mentioned in #5 or #2 ?
cp Training/models.py <clip-benchmark-dir/clip_benchmark/models/synthclip.py>
Append this function onto that module
then register it as mentioned here
Thanks in advance!