research_library
Collection
Repository Library model stack mirrored from local research artifacts. • 41 items • Updated
How to use PeytonT/abstract-repo-planning with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="PeytonT/abstract-repo-planning") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("PeytonT/abstract-repo-planning")
model = AutoModelForSequenceClassification.from_pretrained("PeytonT/abstract-repo-planning", device_map="auto")Predicts repository-oriented implementation plans from abstract-level paper descriptions.
allenai/scibert_scivocab_uncasedencoderA4T2_abstractThis 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/abstract-repo-planninghttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dhttps://github.com/peytontolbert/research_libraryhttps://github.com/peytontolbert/research_library/blob/main/models/experiments/a4_abstract_repo_planning.jsonhttps://github.com/peytontolbert/research_library/tree/main/modelsThe training inputs for this package were assembled from the following Repository Library data sources:
arxiv_metadata: arXiv metadata records spanning titles, abstracts, authors, and category labels.github_repos: repository graph and code chunk data exported from the Repository Library repo pipeline.arxiv_metadata, github_reposabstract, repo_graphmodules[0.9, 0.1, 0.0]40008bf16cross_entropy5e-05512128full_finetune1000ddp0accuracy, macro_f1from transformers import AutoModelForSequenceClassification, AutoTokenizer
repo_id = "PeytonT/abstract-repo-planning"
tokenizer = AutoTokenizer.from_pretrained(repo_id)
model = AutoModelForSequenceClassification.from_pretrained(repo_id)
https://github.com/peytontolbert/research_libraryhttps://huggingface.co/collections/PeytonT/research-library-6a49c589ef4d763f7539b50dPeytonTBase model
allenai/scibert_scivocab_uncased