Views
No views yet
| Metric | Score |
|---|---|
| Top-1 Accuracy | 32.5% |
| Top-5 Accuracy | 56.0% |
| Top-10 Accuracy | 63.5% |
| MRR | 0.433 |
z_checkpoint/: Phase 1 z embeddings checkpointquery_encoder/: Phase 2 query encoder checkpointresults/: Evaluation results and examples1from huggingface_hub import hf_hub_download
2
3# Download z checkpoint
4z_path = hf_hub_download("honey0119/mz-RAG-v9-squad", "z_checkpoint/checkpoint_final.pt")
5
6# Download query encoder
7encoder_path = hf_hub_download("honey0119/mz-RAG-v9-squad", "query_encoder/query_encoder.pt")