VL_adapter
VL_adapter copied to clipboard
PyTorch code for "VL-Adapter: Parameter-Efficient Transfer Learning for Vision-and-Language Tasks" (CVPR2022)
Thank you for sharing this code! I am testing your code for multitask video with BART on 24GB GPUs. To run your code on 24GB GPUs, I used below command...
Hey Authors, Thank you for the repo @ylsung . Can you please explain a bit how you guys sent the question and paired answers to the model as each question...
how to solve it...there is no 'train.json' file in the download link
# Patching CVE-2007-4559 Hi, we are security researchers from the Advanced Research Center at [Trellix](https://www.trellix.com). We have began a campaign to patch a widespread bug named CVE-2007-4559. CVE-2007-4559 is a...
Hi, Guys, Thank you for providing the details in feature extraction. I encountered a problem in [feature_extraction/coco_CLIP.py](https://github.com/ylsung/VL_adapter/blob/main/feature_extraction/coco_CLIP.py). I used the following arguments to be consistent with your paper. ``` 'att_size':...
Thanks for your brilliant work. ``` batch['log_train_accuracy'] = self.args.log_train_accuracy # self.optim.zero_grad() if self.args.fp16 and _use_native_amp: with autocast(): if self.args.distributed: results = self.model.module.train_step(batch) else: results = self.model.train_step(batch) else: if self.args.distributed: results...