Setting the file. One moment.
Skill 17 · Huggingface Paper Publisher
Subchapter 17.1
references/quick_reference.mdMarkdown4 KBView on GitHub
# Index from arXiv
uv run scripts/paper_manager.py index --arxiv-id "2301.12345"
# Check if exists
uv run scripts/paper_manager.py check --arxiv-id "2301.12345"# Link to model
uv run scripts/paper_manager.py link \
--repo-id "username/model" \
--repo-type "model" \
--arxiv-id "2301.12345"
# Link to dataset
uv run scripts/paper_manager.py link \
--repo-id "username/dataset" \
--repo-type "dataset" \
--arxiv-id "2301.12345"
# Link multiple papers
uv run scripts/paper_manager.py link \
--repo-id "username/model" \
--repo-type "model" \
--arxiv-ids "2301.12345,2302.67890"# Standard template
uv run scripts/paper_manager.py create \
--template "standard" \
--title "Paper Title" \
--output "paper.md"
# Modern template
uv run scripts/paper_manager.py create \
--template "modern" \
--title "Paper Title" \
--authors "Author1, Author2" \
--abstract "Abstract text" \
--output "paper.md"
# ML Report
uv run scripts/paper_manager.py create \
--template "ml-report" \
--title "Experiment Report" \
--output "report.md"
# arXiv style
uv run scripts/paper_manager.py create \
--template "arxiv" \
--title "Paper Title" \
--output "paper.md"# Generate BibTeX
uv run scripts/paper_manager.py citation \
--arxiv-id "2301.12345" \
--format "bibtex"# JSON format
uv run scripts/paper_manager.py info \
--arxiv-id "2301.12345" \
--format "json"
# Text format
uv run scripts/paper_manager.py info \
--arxiv-id "2301.12345" \
--format "text"https://huggingface.co/papers/{arxiv-id}https://huggingface.co/papers/2301.12345https://arxiv.org/abs/{arxiv-id}https://arxiv.org/pdf/{arxiv-id}.pdfhttps://arxiv.org/abs/2301.12345---
language:
- en
license: apache-2.0
tags:
- text-generation
- transformers
library_name: transformers
------
language:
- en
license: cc-by-4.0
task_categories:
- text-generation
size_categories:
- 10K<n<100K
---All these formats work:
2301.12345arxiv:2301.12345https://arxiv.org/abs/2301.12345https://arxiv.org/pdf/2301.12345.pdfexport HF_TOKEN="your_token"echo "HF_TOKEN=your_token" > .envuv run scripts/paper_manager.py index --arxiv-id "2301.12345"
uv run scripts/paper_manager.py link --repo-id "user/model" --arxiv-id "2301.12345"uv run scripts/paper_manager.py create --template "modern" --title "Title" --output "paper.md"
# Edit paper.md
# Submit to arXiv → get ID
uv run scripts/paper_manager.py index --arxiv-id "NEW_ID"
uv run scripts/paper_manager.py link --repo-id "user/model" --arxiv-id "NEW_ID"for id in "2301.12345" "2302.67890"; do
uv run scripts/paper_manager.py link --repo-id "user/model" --arxiv-id "$id"
doneVisit https://huggingface.co/papers/{arxiv-id} to trigger indexing
Check HF_TOKEN is set and has write access
Wait a moment and retry - arXiv has rate limits
standard - Traditional academic papermodern - Web-friendly format (Distill-style)arxiv - arXiv journal formatml-report - ML experiment documentationscripts/paper_manager.pytemplates/*.mdexamples/example_usage.mdreferences/quick_reference.md# Command help
uv run scripts/paper_manager.py --help
# Subcommand help
uv run scripts/paper_manager.py link --help