research_library
Collection
Repository Library model stack mirrored from local research artifacts. • 41 items • Updated
How to use PeytonT/metadata-embedding with PEFT:
Task type is invalid.
Builds dense embeddings over paper metadata fields such as title, abstract, authors, and categories.
allenai/scibert_scivocab_uncasedencoderM1T1_metadataThis 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/metadata-embeddinghttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dhttps://github.com/peytontolbert/research_libraryhttps://github.com/peytontolbert/research_library/blob/main/models/experiments/m1_metadata_embedding.jsonhttps://github.com/peytontolbert/research_library/tree/main/modelsThe training inputs for this package were assembled from the following Repository Library data sources:
PeytonT/1m_papers_textpaper_text_parquet: full-text paper corpus records prepared for model training.paper_text_parquettitle, abstract, categories, authorsmetadata_embedding[0.8, 0.1, 0.1]0512bf16contrastive0.0001256512peft_lora-1Trueddp0recall_at_10, ndcg_at_10from transformers import AutoModel, AutoTokenizer
from peft import PeftModel
repo_id = "PeytonT/metadata-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