Learns author and community representations from paper metadata and graph context.
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 AutoModel, AutoTokenizer
2
3repo_id = "PeytonT/author-embedding"
4
5tokenizer = AutoTokenizer.from_pretrained(repo_id)
6model = AutoModel.from_pretrained(repo_id)