这是博客的第一篇文章。以后我会在这里记录一些学习中的想法、论文笔记和一些生活随感。

This is the first post of my blog. From now on, I will write down my thoughts on research (information diffusion, diffusion models, LLMs, etc.), reading notes, and some life reflections here.

如何发布一篇文章 / How to publish a post

  1. 在仓库的 _posts/ 目录新建一个文件,命名为 YYYY-MM-DD-英文标题.md,例如 2026-09-09-hello-blog.md
  2. 在文件开头写 front matter:

    ---
    title: "这篇文章的标题"
    tags:
      - 分类标签
    ---
    
  3. 正文直接用 Markdown 写作。第一段会自动作为博客首页的摘要。

博客页面支持数学公式(MathJax 已全局加载),例如行内公式 $E = mc^2$,或者公式块:

\[\mathbf{h}_t = \mathrm{GRU}(\mathbf{h}_{t-1},\,\mathbf{x}_t)\]

也可以引用其他人的工作,比如 AcadHomepage