Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/ZoteroFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function ZoteroFeed({
const controller = new AbortController();
// Fetch only top-level items; exclude children implicitly. We will filter
// attachments/notes on the client for extra safety.
const url = `https://api.zotero.org/groups/${groupId}/items/top?format=json&limit=${limit}&sort=date&direction=desc`;
const url = `https://api.zotero.org/groups/${groupId}/items/top?format=json&limit=${limit}&sort=dateAdded&direction=desc`;
fetch(url, { signal: controller.signal })
.then(async (r) => {
if (!r.ok) throw new Error(`${r.status} ${r.statusText}`);
Expand Down
12 changes: 6 additions & 6 deletions app/docs/ai/multimodal/multimodal-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,47 +13,47 @@ tags:

## 核心技术框架

### 🎯 LLaVA 框架
### LLaVA 框架

- 前往: [LLaVA 框架](./llava/)
- 视觉指令调优开创
- ViT + 投影层 + LLM 架构
- CLIP 基础技术详解
- 复现项目实践指导

### 🚀 QwenVL 系列
### QwenVL 系列

- 前往: [QwenVL 系列](./qwenvl/)
- 中文多模态大模型标杆
- Qwen2.5-VL 技术创新
- 微调复现实践教程
- 源码解读与简化实践

### 👁️ ViT 视觉编码器
### ViT 视觉编码器

- 前往: [ViT 视觉编码器](./vit/)
- Vision Transformer 原理
- 模型压缩与优化技术
- Token 合并策略研究
- 学习笔记资源整理

### 🧠 MLLM 多模态大模型
### MLLM 多模态大模型

- 前往: [MLLM 多模态大模型](./mllm/)
- 主流模型技术对比
- 细粒度感知技术
- 长视频理解方案
- 多轮对话交互设计

### 📹 视频大模型
### 视频大模型

- 前往: [视频大模型](./video-mm-todo/)
- 时空建模技术挑战
- 长视频理解问题
- 多粒度理解方案
- 实时处理技术

### 📚 多模态课程
### 多模态课程

- 前往: [多模态课程](./courses/)
- 理论基础与实践结合
Expand Down