research_library
Collection
Repository Library model stack mirrored from local research artifacts. • 41 items • Updated
How to use PeytonT/repo-paper-alignment with PEFT:
Task type is invalid.
Aligns repository content with scientific paper content in a shared training setup.
sentence-transformers/all-MiniLM-L6-v2encoderC2T5_crossThis model is part of the Repository Library stack, a research system for indexing, retrieving, aligning, and reasoning over scientific papers, structured paper content, repositories, and cross-domain links between them.
https://huggingface.co/PeytonT/repo-paper-alignmenthttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dhttps://github.com/peytontolbert/research_libraryhttps://github.com/peytontolbert/research_library/blob/main/models/experiments/c2_repo_paper_alignment.jsonhttps://github.com/peytontolbert/research_library/tree/main/modelsThe training inputs for this package were assembled from the following Repository Library data sources:
paper_repo_pairs: paper-to-repository alignment pairs built from the local alignment pipeline.paper_repo_pairsunknownunknown[0.9, 0.1, 0.0]10008bf16contrastive5e-05256256full_finetune1000ddp0recall_at_10, ndcg_at_10from transformers import AutoModel, AutoTokenizer
from peft import PeftModel
repo_id = "PeytonT/repo-paper-alignment"
base_id = "sentence-transformers/all-MiniLM-L6-v2"
tokenizer = AutoTokenizer.from_pretrained(repo_id)
base = AutoModel.from_pretrained(base_id)
model = PeftModel.from_pretrained(base, repo_id)
https://github.com/peytontolbert/research_libraryhttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dPeytonTBase model
nreimers/MiniLM-L6-H384-uncased