Routes retrieval expansion over local repository graph neighborhoods.
This 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.
The training inputs for this package were assembled from the following Repository Library data sources:
1from transformers import AutoModelForSequenceClassification, AutoTokenizer
2
3repo_id = "PeytonT/graph-neighborhood-router"
4
5tokenizer = AutoTokenizer.from_pretrained(repo_id)
6model = AutoModelForSequenceClassification.from_pretrained(repo_id)