research_library
Collection
Repository Library model stack mirrored from local research artifacts. • 41 items • Updated
How to use PeytonT/paper-sentence-embedding with PEFT:
Task type is invalid.
Produces sentence-level embeddings over paper text.
allenai/scibert_scivocab_uncasedencoderM7T3_paper_textThis 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/paper-sentence-embeddinghttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dhttps://github.com/peytontolbert/research_libraryhttps://github.com/peytontolbert/research_library/blob/main/models/experiments/m7_paper_sentence_embedding.jsonhttps://github.com/peytontolbert/research_library/tree/main/modelsThe training inputs for this package were assembled from the following Repository Library data sources:
local/paper_text_2m_dedup_v1paper_text_parquet: full-text paper corpus records prepared for model training.paper_text_parquettitle, abstract, textsentence_embedding[0.8, 0.1, 0.1]08bf16contrastive0.000138464peft_lora1000ddp0recall_at_10, ndcg_at_10from transformers import AutoModel, AutoTokenizer
from peft import PeftModel
repo_id = "PeytonT/paper-sentence-embedding"
base_id = "allenai/scibert_scivocab_uncased"
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
allenai/scibert_scivocab_uncased