LinWeizheDragon / FLMR

The huggingface implementation of Fine-grained Late-interaction Multi-modal Retriever.
42 stars 2 forks source link

作者你好,这个FLMR和官方版本的Retrieval-Augmented-Visual-Question-Answering区别在哪?FLMR是不是没用blip? #19

Closed zzk2021 closed 1 month ago

LinWeizheDragon commented 1 month ago

This is also official. It is difficult to set up the entire environment with the original RA-VQA codebase. We provide an implementation based on Huggingface-transformers. This implementation provides support for inference with FLMR and PreFLMR, fine-tuning scripts, and evaluation scripts. You can easily run inference with this implementation. If you want to fine-tune a blip based on the retrieved documents of PreFLMR, you can run inference, collect the retrieved documents, and write your own code to fine-tune a blip model.

zzk2021 commented 1 month ago

thanks for your reply!