Views
No views yet
| Artifact | Original creator | Description |
|---|---|---|
pytorch_model.bin, config.json, and tokenizer files | Zeng, Luo, and Zamani (2024) | Original PAG checkpoint, lexical_ripor_direct_lng_knp_seq2seq_1, mirrored without modification. |
identifiers/rq_docids.json | Zeng, Luo, and Zamani (2024) | Sequential residual-quantization document identifiers, originally released as aq_smtid/docid_to_tokenids.json. |
identifiers/set_docids.json | Zeng, Luo, and Zamani (2024) | Set-based lexical document identifiers, originally released as top_bow/docid_to_tokenids.json. |
lost_in_decoding_artifacts/msmarco-dev/ | Lost in Decoding authors | Query variations for the MS MARCO Passage Ranking Dev set. |
lost_in_decoding_artifacts/trec-dl-2019/ | Lost in Decoding authors | Query variations for the TREC Deep Learning 2019 Passage Ranking topics. |
lost_in_decoding_artifacts/trec-dl-2020/ | Lost in Decoding authors | Query variations for the TREC Deep Learning 2020 Passage Ranking topics. |
lost_in_decoding_artifacts/metadata/ | Lost in Decoding authors | Perturbation types, generation settings, and random seeds. |
data_download/ | Lost in Decoding authors | Scripts for downloading the original MS MARCO collection, official queries, and qrels from their upstream providers. |
LICENSE.md.data_download/ to fetch them directly from Microsoft/NIST:1git clone https://huggingface.co/kiyam/lost-in-decoding-pag
2cd lost-in-decoding-pag
3bash data_download/prepare_evaluation_data.shT5ForLexicalSemanticGeneration, based on T5-base.pytorch_model.bintransformers 4.17-era pytorch_model.bin).T5ForLexicalSemanticGeneration class is not part
of the standard Transformers library — it is defined in the
Lost-in-Decoding repository.pytorch_model.bin
(direct download)kiyam/lost-in-decoding-pag), not the /blob/main/...
page URL, for from_pretrained() and programmatic downloads.1from transformers import AutoConfig, AutoTokenizer
2from t5_pretrainer.modeling.t5_generative_retriever import (
3 T5ForLexicalSemanticGeneration,
4)
5
6repo_id = "kiyam/lost-in-decoding-pag"
7
8config = AutoConfig.from_pretrained(repo_id)
9tokenizer = AutoTokenizer.from_pretrained(repo_id)
10
11model = T5ForLexicalSemanticGeneration.from_pretrained(
12 repo_id,
13 config=config,
14)T5ForLexicalSemanticGeneration comes from the
Lost-in-Decoding repository
(t5_pretrainer/modeling/t5_generative_retriever.py) — install/clone that
repository so the class is importable. from_pretrained resolves repo_id
against the Hub and downloads config.json + pytorch_model.bin
automatically; it does not accept the /blob/main/... file page URL.identifiers/)docid (str) -> list[int] (token ID sequences forming each
document's identifier). See identifiers/README.md
for details.lost_in_decoding_artifacts/)lost_in_decoding_artifacts/README.md
for format and generation details.data_download/download_msmarco.sh.data_download/download_trec_dl_2019.sh / download_trec_dl_2020.sh.cross_lingual/scripts/download_mmarco.sh in the code repository.1@inproceedings{mekonnen2026lost,
2 title = {Lost in Decoding? Reproducing and Stress-Testing the Look-Ahead Prior in Generative Retrieval},
3 author = {Mekonnen, Kidist Amde and Li, Yongkang and Tang, Yubao and Lupart, Simon and de Rijke, Maarten},
4 booktitle = {Proceedings of the 49th International ACM SIGIR Conference on Research and Development in Information Retrieval},
5 pages = {2994--3005},
6 year = {2026},
7 doi = {10.1145/3805712.3808567}
8}1@inproceedings{zeng2024planning,
2 title = {Planning Ahead in Generative Retrieval: Guiding Autoregressive Generation through Simultaneous Decoding},
3 author = {Zeng, Hansi and Luo, Chen and Zamani, Hamed},
4 booktitle = {Proceedings of the 47th International ACM SIGIR Conference on Research and Development in Information Retrieval},
5 pages = {469--480},
6 year = {2024},
7 doi = {10.1145/3626772.3657746}
8}LICENSE.md. This repository mixes materials with
different provenance and licensing: artifacts created for the Lost in
Decoding study are released under Apache License 2.0, while the PAG
checkpoint and document-identifier files are third-party artifacts mirrored
here without modification. The upstream PAG repository does not publish an
explicit license file, so no specific license terms are asserted for those
files beyond attribution to their original authors.