Files
myWiki/concepts/ua-sid.md

33 lines
1.4 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "UA-SID (Unified Advertisement Semantic ID)"
created: 2026-06-28
updated: 2026-06-28
type: concept
tags: [generative-recommendation, advertising, tokenization, semantic-id, mllm]
sources: [GR4AD]
---
# Unified Advertisement Semantic ID (UA-SID)
UA-SID 是 [[GR4AD]] 提出的广告统一语义 ID 方案,解决广告场景中内容语义与业务信号难以联合建模的核心挑战。
## 生成流程
1. **广告 MLLM 嵌入**:端到端微调一个多模态 LLM在真实广告创意视频 + 文本 + 元数据)上通过 instruction tuning 和共现学习训练,生成统一语义嵌入向量
2. **MGMR RQ-Kmeans 量化**:通过[[mgmr-rq-kmeans|MGMR RQ-Kmeans]]将连续嵌入量化为离散的多级 token 序列——多粒度(不同语义层次)多分辨率(不同聚类分辨率)量化,显著降低 SID 碰撞率并提高 codebook 利用率
3. **双向索引**:维护 UA-SID ↔ Item ID 的实时双向索引,新物品到达时仅需从内容计算 UA-SID 并更新索引,数秒内可查
## 相比传统 SID 的优势
| 维度 | 传统 SID | UA-SID |
|------|---------|--------|
| 内容模态 | 文本为主 | 视频 + 文本 + 元数据 |
| 业务信号 | 未建模 | 联合建模转化类型、广告账户等 |
| Codebook 利用率 | 偏低 | MGMR 提升利用率 |
| 索引更新 | 需频繁重建 | 秒级增量更新 |
## 参考
- [[GR4AD]]
- [[semantic-id|Semantic ID]]
- [[mgmr-rq-kmeans|MGMR RQ-Kmeans]]