<feed xmlns="http://www.w3.org/2005/Atom"> <id>https://yuyangouc.github.io/about/</id><title>Yu Yang</title><subtitle>于洋的个人博客 — 技术、生活与其它。</subtitle> <updated>2026-05-17T20:19:44+08:00</updated> <author> <name>Yu Yang</name> <uri>https://yuyangouc.github.io/about/</uri> </author><link rel="self" type="application/atom+xml" href="https://yuyangouc.github.io/about/feed.xml"/><link rel="alternate" type="text/html" hreflang="zh-CN" href="https://yuyangouc.github.io/about/"/> <generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator> <rights> © 2026 Yu Yang </rights> <icon>/about/assets/img/favicons/favicon.ico</icon> <logo>/about/assets/img/favicons/favicon-96x96.png</logo> <entry><title>CS3: Efficient Online Capability Synergy for Two-Tower Recommendation</title><link href="https://yuyangouc.github.io/about/posts/CS3_notes/" rel="alternate" type="text/html" title="CS3: Efficient Online Capability Synergy for Two-Tower Recommendation" /><published>2026-05-17T20:00:00+08:00</published> <updated>2026-05-17T20:19:21+08:00</updated> <id>https://yuyangouc.github.io/about/posts/CS3_notes/</id> <content type="text/html" src="https://yuyangouc.github.io/about/posts/CS3_notes/" /> <author> <name>Yu Yang</name> </author> <category term="论文笔记" /> <category term="推荐系统" /> <summary>论文元信息 标题：CS3: Efficient Online Capability Synergy for Two-Tower Recommendation 作者：Lixiang Wang, Shaoyun Shi, Peng Wang, Wenjin Wu, Peng Jiang 机构：快手 (Kuaishou Technology) 会议：SIGIR 2026（2026.07） arXiv：2604.19269（2026-04-21 submitted） 代码：github.com/lixiangwang/CS3Rec 线上规模：快手广告，DAU &amp;gt; 4 亿 一句话定位 CS3 在做的事情和 HSNN 方向完全相反： HSNN：打破双塔范式去解决根本问题 CS3：承认双塔范式不能动，然后在 plug-and-play 的...</summary> </entry> <entry><title>GitHub Pages 踩坑小记</title><link href="https://yuyangouc.github.io/about/posts/github-pages-notes/" rel="alternate" type="text/html" title="GitHub Pages 踩坑小记" /><published>2026-05-12T22:30:00+08:00</published> <updated>2026-05-12T22:30:00+08:00</updated> <id>https://yuyangouc.github.io/about/posts/github-pages-notes/</id> <content type="text/html" src="https://yuyangouc.github.io/about/posts/github-pages-notes/" /> <author> <name>Yu Yang</name> </author> <category term="技术笔记" /> <category term="DevOps" /> <summary>把博客搭在 GitHub Pages 上的过程中踩了几个坑，记一下给以后的自己。 仓库命名决定 URL 形态 &amp;lt;username&amp;gt;.github.io → 访问地址是 https://&amp;lt;username&amp;gt;.github.io 任意其它名字 → 访问地址是 https://&amp;lt;username&amp;gt;.github.io/&amp;lt;repo-name&amp;gt; 重命名仓库会让 URL 跟着变（配置自动迁移），但 Unpublish 会清空 Pages 配置，需要重新 Save。 子路径下 baseurl 的坑 项目仓库部署在子路径下（/blog、/about2 之类），如果 _config.yml 里的 baseurl 没设对，所有静态资源会 404。 好消息是：用 GitHub Actions + actions/configure-p...</summary> </entry> <entry><title>Chirpy 里常用的 Markdown 扩展语法</title><link href="https://yuyangouc.github.io/about/posts/markdown-cheatsheet/" rel="alternate" type="text/html" title="Chirpy 里常用的 Markdown 扩展语法" /><published>2026-05-11T10:00:00+08:00</published> <updated>2026-05-11T10:00:00+08:00</updated> <id>https://yuyangouc.github.io/about/posts/markdown-cheatsheet/</id> <content type="text/html" src="https://yuyangouc.github.io/about/posts/markdown-cheatsheet/" /> <author> <name>Yu Yang</name> </author> <category term="技术笔记" /> <category term="Jekyll" /> <summary>Chirpy 在标准 Markdown 基础上加了不少实用扩展，整理一下以后写文章方便。 Callout 块 四种样式，对应不同语境： 这是一条普通提示 这是一条 tip 这是一条警告 这是一条危险提示 文件路径 _config.yml 这样标注会带背景色。 代码高亮 ```python def hello(name: str) -&amp;gt; None: print(f"hello, {name}") ``` 渲染效果： def hello(name: str) -&amp;gt; None: print(f"hello, {name}") 图片占位 ![alt](path/to/image.png){: width="400" height="200" } _图片下方的说明文字_ 数学公式 Chirpy 自...</summary> </entry> <entry><title>Hello，博客上线</title><link href="https://yuyangouc.github.io/about/posts/hello-chirpy/" rel="alternate" type="text/html" title="Hello，博客上线" /><published>2026-05-10T20:00:00+08:00</published> <updated>2026-05-10T20:00:00+08:00</updated> <id>https://yuyangouc.github.io/about/posts/hello-chirpy/</id> <content type="text/html" src="https://yuyangouc.github.io/about/posts/hello-chirpy/" /> <author> <name>Yu Yang</name> </author> <category term="随笔" /> <summary>好久没写博客了，今天花了点时间用 Jekyll + Chirpy 主题搭了一个，顺便记录一下过程。 为什么选 Chirpy 几个理由： 功能齐全 — 侧栏、目录、搜索、分类、tags、归档全都有 暗色主题 — 可以手动切换，深夜友好 GitHub Pages 可部署 — 通过 Actions 自动构建，不用自己管服务器 Markdown 原生 — 发一篇文章 = 新建一个 .md 文件 目录结构 . ├── _config.yml # 全站配置 ├── _posts/ # 博客文章放这里 ├── _tabs/ # 顶栏/侧栏页面（about、归档等） ├── assets/ # 自定义图片、图标等 └── index.html # 首页入口（不用动） 写作流程 每写一篇新文章： ...</summary> </entry> </feed>
