Skip to content

Commit f73e004

Browse files
committed
Add research blog pages and refresh blog index
1 parent d92ae81 commit f73e004

13 files changed

Lines changed: 2524 additions & 177 deletions

File tree

assets/highlights.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ desc: A “Thinking with Video” paradigm—video-generation models like Sora-2
2222
标签: 多模态, 视频
2323
tags: Multimodal, Video
2424
图: assets/img/highlights/thinking-with-video.png
25-
链接: https://openaccess.thecvf.com/content/CVPR2026/html/Tong_Thinking_with_Video_Video_Generation_as_a_Promising_Multimodal_Reasoning_CVPR_2026_paper.html
25+
链接: /blog/cn/thinking-with-video/
2626

2727
---
2828

@@ -34,7 +34,7 @@ desc: A scalable speech-generation foundation model supporting zero-shot voice c
3434
标签: 语音
3535
tags: Speech
3636
图: assets/img/highlights/moss-tts.png
37-
链接: https://arxiv.org/abs/2603.18090
37+
链接: /blog/cn/moss-tts/
3838

3939
---
4040

@@ -46,7 +46,7 @@ desc: Introduces Reinforcement Learning from Community Feedback (RLCF): a "Scien
4646
标签: AI4AI
4747
tags: AI4AI
4848
图: assets/img/highlights/scientific-taste.png
49-
链接: https://arxiv.org/abs/2603.14473
49+
链接: /blog/cn/scientific-taste/
5050

5151
---
5252

@@ -58,7 +58,7 @@ desc: An open-source joint video-audio generation model producing high-quality,
5858
标签: 视频, 语音
5959
tags: Video, Speech
6060
图: assets/img/highlights/mova.jpg
61-
链接: https://arxiv.org/abs/2602.08794
61+
链接: /blog/cn/mova/
6262

6363
---
6464

assets/js/content-data.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@
55
tagline: '追求极致的开放 AI 研究'
66
},
77
highlights: [
8+
{
9+
title: { zh: 'Thinking with Video:用视频生成做多模态推理', en: 'Thinking with Video: Video Generation as a Promising Multimodal Reasoning Paradigm' },
10+
desc: { zh: '提出“用视频思考”范式:让 Sora-2 等视频生成模型以视频帧为统一媒介进行多模态推理,弥补文字/图像难以刻画动态过程的不足。', en: 'A “Thinking with Video” paradigm where video-generation models like Sora-2 reason over generated video frames as a unified medium for dynamic multimodal reasoning.' },
11+
date: '2026.6',
12+
image: 'assets/img/highlights/thinking-with-video.png',
13+
url: '/blog/cn/thinking-with-video/'
14+
},
15+
{
16+
title: { zh: 'MOSS-TTS 技术报告', en: 'MOSS-TTS Technical Report' },
17+
desc: { zh: '可扩展的语音生成基座模型,支持零样本音色克隆、时长与发音控制、流畅中英混说与长语音生成。', en: 'A scalable speech-generation foundation model supporting zero-shot voice cloning, duration and pronunciation control, smooth code-switching, and stable long-form generation.' },
18+
date: '2026.3',
19+
image: 'assets/img/highlights/moss-tts.png',
20+
url: '/blog/cn/moss-tts/'
21+
},
22+
{
23+
title: { zh: 'AI 也能学会“科学品味”', en: 'AI Can Learn Scientific Taste' },
24+
desc: { zh: '提出“社区反馈强化学习”(RLCF):用大规模引用信号训练 Scientific Judge,并对齐 Scientific Thinker 提出高影响力研究构想。', en: 'Introduces Reinforcement Learning from Community Feedback (RLCF), training a Scientific Judge and Scientific Thinker from large-scale scientific community signals.' },
25+
date: '2026.3',
26+
image: 'assets/img/highlights/scientific-taste.png',
27+
url: '/blog/cn/scientific-taste/'
28+
},
29+
{
30+
title: { zh: 'MOVA:可扩展的同步视频-音频生成', en: 'MOVA: Towards Scalable and Synchronized Video-Audio Generation' },
31+
desc: { zh: '开源视频-音频联合生成模型,可同步生成高质量画面与声音,覆盖唇形同步语音、环境音效与内容匹配的音乐。', en: 'An open-source joint video-audio generation model producing high-quality, synchronized visuals and audio, including lip-synced speech, environmental sound effects, and content-aligned music.' },
32+
date: '2026.2',
33+
image: 'assets/img/highlights/mova.jpg',
34+
url: '/blog/cn/mova/'
35+
},
836
{
937
title: { zh: 'MOSS-Speech: 真语音到语音生成', en: 'MOSS-Speech: True Speech-to-Speech Generation' },
1038
desc: { zh: '原生端到端语音交互,无需任何中间文本引导', en: 'Native end-to-end speech interaction without any intermediate text guidance' },

assets/js/spa.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,12 +389,19 @@
389389
var items = [];
390390
(SPA_DATA.highlights || []).forEach(function (h) {
391391
var htags = (h.tags && (h.tags[currentLang] || h.tags.zh)) || [];
392+
var url = h.url || 'javascript:void(0)';
393+
var isBlogUrl = /^\/?blog\//.test(url);
394+
if (isBlogUrl) {
395+
url = currentLang === 'en'
396+
? url.replace(/^\/?blog\/cn\//, '/blog/en/')
397+
: url.replace(/^\/?blog\/en\//, '/blog/cn/');
398+
}
392399
items.push({
393-
tags: htags.concat([t('blog.tag.external')]),
400+
tags: htags.concat([t(isBlogUrl ? 'blog.tag.blog' : 'blog.tag.external')]),
394401
title: pick(h.title),
395402
desc: pick(h.desc),
396403
date: h.date, sort: dateKey(h.date), image: h.image,
397-
url: h.url || 'javascript:void(0)', external: !!h.url
404+
url: url, external: !!h.url && !isBlogUrl
398405
});
399406
});
400407
(SPA_DATA.blogPosts || []).forEach(function (p) {

0 commit comments

Comments
 (0)