Predicts whether retrieved or generated candidates should be accepted, repaired, or broadened.
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/verifier-accept-policy"
4
5tokenizer = AutoTokenizer.from_pretrained(repo_id)
6model = AutoModelForSequenceClassification.from_pretrained(repo_id)