Views
No views yet
allenai/scibert_scivocab_uncasedencoderM6T3_paper_texthttps://huggingface.co/PeytonT/paper-fulltext-embeddinghttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dhttps://github.com/peytontolbert/research_libraryhttps://github.com/peytontolbert/research_library/blob/main/models/experiments/m6_paper_fulltext_embedding.jsonhttps://github.com/peytontolbert/research_library/tree/main/modelslocal/paper_text_2m_dedup_v1paper_text_parquet: full-text paper corpus records prepared for model training.paper_text_parquettitle, abstract, textfulltext_embedding[0.8, 0.1, 0.1]04bf16contrastive0.0001512128peft_lora1000ddp0recall_at_10, ndcg_at_101from transformers import AutoModel, AutoTokenizer
2from peft import PeftModel
3
4repo_id = "PeytonT/paper-fulltext-embedding"
5base_id = "allenai/scibert_scivocab_uncased"
6
7tokenizer = AutoTokenizer.from_pretrained(repo_id)
8base = AutoModel.from_pretrained(base_id)
9model = PeftModel.from_pretrained(base, repo_id)https://github.com/peytontolbert/research_libraryhttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dPeytonT