Fetch an arXiv paper via ar5iv and create a structured summary following the project's ML document conventions and DoD checklist
Summarize an arXiv paper and save it as a Markdown document in the machine-learning/ directory.
The user will provide an arXiv URL (e.g., https://arxiv.org/abs/2312.00752) as the argument.
https://arxiv.org/abs/<ID> to https://ar5iv.labs.arxiv.org/html/<ID> to get an HTML-rendered version of the paper.2312.00752 → 2023, 1706.03762 → 2017).echo "<paper title>" | bash scripts/title-converter.sh to convert the paper title to a kebab-case filename.mkdir -p machine-learning/<year>/machine-learning/<year>/<filename>.md following the Document Template below.The summary MUST follow this structure, modeled after existing documents in this repository:
# Meta Information
- URL: [<Paper Title>](<original arxiv URL>)
- LICENSE: [arXiv.org - Non-exclusive license to distribute](https://arxiv.org/licenses/nonexclusive-distrib/1.0/license.html)
- Reference: <authors> (<year>). <title>. <venue/journal>.
# <Follow the paper's own section structure>
## <Section headings matching the paper>
<Content summarized in concrete, specific sentences.>
<Mathematical notation using LaTeX/MathJax ($...$).>
<Specify tensor/matrix dimensions explicitly.>
<Use > [!NOTE] blocks for direct quotes or clarifications.>
<Use > [!TIP] blocks for helpful external references.>
<Use > [!IMPORTANT] blocks for critical information.>
# Experiments
- Dataset: <list all datasets used>
- Hardware: <if mentioned>
- Optimizer: <if mentioned>
- Results: <key quantitative results>
Follow these rules strictly when writing the summary. These come from the Definition of Done (DoD) checklist:
> [!NOTE] for direct quotes from the paper> [!TIP] for links to external references or tutorials> [!IMPORTANT] for critical details not obvious from the paper> [!CAUTION] for personal interpretations that may contain errors$...$ for inline math. For block equations (even single-line), use a math fenced code block with \begin{align}...\end{align} — do NOT use $$...$$.