Instructions to use Jun421/MVP-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jun421/MVP-base with Transformers:
# Load model directly from transformers import AutoTokenizer, FiDT5 tokenizer = AutoTokenizer.from_pretrained("Jun421/MVP-base") model = FiDT5.from_pretrained("Jun421/MVP-base") - Notebooks
- Google Colab
- Kaggle
Add model card with pipeline tag, license, library name, and usage instructions
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: text-ranking
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# MVP: Multi-view-guided Passage Reranking with Large Language Models
|
| 8 |
+
|
| 9 |
+
This repository contains the official implementation for the EMNLP 2025 paper:
|
| 10 |
+
[**Multi-view-guided Passage Reranking with Large Language Models**](https://huggingface.co/papers/2509.07485)
|
| 11 |
+
by Jeongwoo Na*, Jun Kwon*, Eunseong Choi, Jongwuk Lee (* : equal contribution)
|
| 12 |
+
|
| 13 |
+
## Overview
|
| 14 |
+
MVP (Multi-View-guided Passage Reranking) is a non-generative LLM-based reranking method designed to overcome the efficiency and bias sensitivity challenges of existing LLM-based rerankers. It encodes query-passage information into diverse view embeddings, ensuring accurate representation without external biases. The model then combines query-aware passage embeddings to produce distinct anchor vectors, which are used to directly compute relevance scores in a single decoding step. An orthogonal loss encourages diversity across these views.
|
| 15 |
+
|
| 16 |
+
With just 220M parameters, MVP matches the performance of much larger 7B-scale fine-tuned models while achieving a 100x reduction in inference latency. The 3B-parameter variant of MVP achieves state-of-the-art performance on both in-domain and out-of-domain benchmarks.
|
| 17 |
+
|
| 18 |
+
## How to Use
|
| 19 |
+
|
| 20 |
+
### Setup Environment
|
| 21 |
+
```
|
| 22 |
+
conda env create -f mvp.yaml
|
| 23 |
+
conda activate mvp
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
### Run MVP
|
| 27 |
+
```
|
| 28 |
+
cd inference
|
| 29 |
+
bash run_evaluation.sh
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Model Checkpoints
|
| 33 |
+
- [`MVP-base`](https://huggingface.co/Jun421/MVP-base)
|
| 34 |
+
- [`MVP-3b`](https://huggingface.co/Jun421/MVP-3b)
|
| 35 |
+
|
| 36 |
+
## Datasets
|
| 37 |
+
|
| 38 |
+
### Evaluation Datasets
|
| 39 |
+
- [BM25-Top100](https://huggingface.co/datasets/Soyoung97/beir-eval-bm25-top100) (`Soyoung97/beir-eval-bm25-top100`)
|
| 40 |
+
|
| 41 |
+
### Training Datasets
|
| 42 |
+
- [Train/Valid](https://huggingface.co/datasets/Jun421/MVP-train) (`Jun421/MVP-train`)
|
| 43 |
+
This dataset is derived from the BEIR/MSMARCO license, and its usage is restricted to **academic purposes** only.
|
| 44 |
+
|
| 45 |
+
## Acknowledgments
|
| 46 |
+
The implementation of this model is based on the [ListT5](https://github.com/soyoung97/ListT5) repository.
|