RWKV7-G0a3 13.3B 发布:世界最强纯 RNN 大语言模型
2025 年 11 月 1 日, RWKV7-G0a3 13.3B 推理模型开源发布。这是世界迄今最强的纯 RNN 大语言模型。
我们以 RWKV6-world-v2.1 14B 模型为基础,仅继续训练 2T tokens(加入了蒸馏的 35B tokens from DeepSeek v3.1),即获得了有竞争力的效果。它依然是纯预训练模型(无后训练,无刷榜),评测成绩符合模型实际使用体验。
RWKV 模型名称的 G1/G1a/G1a2/G0a3 等字段是训练数据的版本,数据质量 G#a3 > G#a2 > G#a > G#,数据数量 G1 > G0。简单规则:同一参数选择最新的模型,效果最好。
模型性能评估
Uncheatable Eval 评测
Uncheatable Eval 使用最新的论文/新闻/代码/小说等实时数据,测试压缩率("压缩即智能"),评估基底语言模型的真实语言建模能力和泛化能力。
MMLU & MMLU PRO
评估模型在多学科的综合知识(MMLU PRO 比 MMLU 更难)。
GSM8K
评估模型在中学难度数学应用题的推理能力。
MATH500
测试模型在更难数学问题的解题能力。
CEval
以多行业真实试题,评估模型中文理解和专业知识。
模型实战
G0a3 系列模型加入更多数据,显著提升 vibe coding 能力。例如:RWKV7-G0a3 7.2B发布:迄今最强RNN,高并发vibe coding
写代码,推荐解码参数:Temperature=1,Top_P=0.3,Presence Penalty=1,Frequency Penalty=0.1,decay=0.99
在下述代码示例中,我们把模型生成的 HTML 内容放到 https://html.onlineviewer.net/ 进行预览。
首先:用 SVG 画一只橘猫的侧面图(毕加索风格),即使关闭思考模式,也能生成合理的结果:
继续: 用SVG画一张深圳夜景配图,包含建筑剪影和霓虹灯带,视觉主色调明确为深蓝 #0a1a2b(背景)与霓虹粉 #ff3ea5(点缀/光效):
继续:请生成一个单文件 HTML 页面,主题:武松打虎。页面需包含:标题、简介段落、一段描写打虎场景的正文、至少一张配图(可用占位图 URL),并用干净的 CSS 美化页面(响应式)。输出完整的 HTML 文件源码。
所有生成的代码都在文末附录。我们会持续发布 vibe coding 能力显著更强的模型。
如前所述,RWKV 作为纯 RNN 模型,尤其适合大规模并行生成:RWKV-7 7B单5090解码10000+ tok/s演示
我们提供了大规模并行生成网页的推理工具:
效果预览:
故事创作
创作任务推荐的解码参数:Temperature=0.6,Top_P=0.7,Presence Penalty=2,Frequency Penalty=0.2
我们在新模型主蒸 DeepSeek v3.1,可以看到它的显著风格:
RWKV 与北京智源研究院合作优化推理速度
RWKV 团队与北京智源研究院合作优化推理效率,使用 FlagOS 的 FlagGems Triton 语言算子库,在保持精度的前提下提升了模型的推理速度。
例如,由于 RWKV 架构在设计时支持 FFN 无损稀疏化,在 bsz 1 时,FlagGems 算子 rwkv_mm_sparsity 对比 CUDA matmul 可提升 74% 到 202% 速度。
进一步配合 CUDA Graph 优化,RWKV-7 的 bsz=1 推理 Decode 端到端速度在英伟达 RTX5090 提升 28%,在英伟达 A100 提升 135%。
目前在 https://github.com/BlinkDL/Albatross/tree/main/faster_251101 显示,速度已达:
- 模型
RWKV-7 13.3B fp16,显卡RTX5090 with CUDAGraph and sparse FFN (lossless),推理速度 66+ token/s(bsz1) - 模型
RWKV-7 7.2B fp16,显卡RTX5090 with CUDAGraph and sparse FFN (lossless),推理速度 123+ token/s(bsz1) - 模型
RWKV-7 7.2B fp16,显卡RTX5090,推理速度 10250+ token/s (bsz960)
欢迎大家测试,如遇到任何问题,都欢迎向我们询问。
模型下载
下载 RWKV7-G0a3 13.3B 模型(.pth 格式):
- Hugging Face:https://huggingface.co/BlinkDL/rwkv7-g1/resolve/main/rwkv7-g0a3-13.3b-20251031-ctx4096.pth?download=true
- 魔搭:https://modelscope.cn/models/RWKV/rwkv7-g1/resolve/master/rwkv7-g0a3-13.3b-20251031-ctx4096.pth
- Wisemodel:https://download.wisemodel.cn/file-proxy/rwkv4fun/RWKV-7-G1/-/raw/main/rwkv7-g0a3-13.3b-20251031-ctx4096.pth?inline=false
下载 .gguf 格式:https://modelscope.cn/models/shoumenchougou/RWKV7-G0a3-13.3B-GGUF/files
下载 Ollama 格式:https://ollama.com/mollysama
如何使用 RWKV 模型
本地部署
可以使用 RWKV Runner、Ai00、RWKV pip 等推理工具本地部署 RWKV 模型。RWKV 模型也适配了 llama.cpp、ollama 等热门的模型推理工具。
目前最快的 RWKV 推理工具是 Albatross:https://github.com/BlinkDL/Albatross
由于 RWKV7-G0a3 13.3B 是新模型,目前建议使用 RWKV Runner 以保证得到正确结果。
可以在 RWKV 官网 - 模型推理教程中查看上述推理工具的使用教程。
加入 RWKV 社区
欢迎大家加入 RWKV 社区,可以从 RWKV 中文官网了解 RWKV 模型,也可以加入 RWKV 论坛、QQ 频道和 QQ 群聊,一起探讨 RWKV 模型。
- 📖 RWKV 中文文档:https://www.rwkv.cn
- 💬 RWKV 论坛:https://community.rwkv.cn/
- 🐧 QQ 频道:https://pd.qq.com/s/9n21eravc
- 📺 BiliBili 视频教程:https://space.bilibili.com/3546689096910933
欢迎大家基于 RWKV-7 进行创业、科研,我们也会为基于 RWKV 的项目提供技术支持。
如果您的团队正在基于 RWKV 创业或开展研究,请联系我们!(在"RWKV元始智能"微信公众号留言您的联系方式,或发送邮件到"contact@rwkvos.com"。)
附录代码
vibe coding 1:svg 绘制橘猫
vibe coding prompt: 用 SVG 画一只橘猫的侧面图(毕加索风格)
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>毕加索风格橘猫</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
text-align: center;
padding: 20px;
background-color: white;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-width: 90%;
}
h1 {
color: #ff6b6b;
margin-bottom: 20px;
font-weight: 600;
}
.svg-container {
margin: 20px auto;
max-width: 400px;
}
svg {
filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
.description {
color: #555;
line-height: 1.6;
margin-top: 20px;
padding: 0 15px;
}
.highlight {
color: #ff6b6b;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>毕加索风格橘猫</h1>
<div class="svg-container">
<svg width="300" height="400" viewBox="0 0 300 400">
<!-- 背景 -->
<rect width="100%" height="100%" fill="#f8f9fa" />
<!-- 头部 -->
<path d="M150,100 C180,80 220,90 230,120 C240,150 220,180 190,190 C160,200 130,180 120,150 C110,120 130,90 150,100 Z" fill="#ffa500" />
<!-- 耳朵 -->
<path d="M120,80 L140,60 L160,80 L140,100 Z" fill="#ffa500" />
<path d="M180,80 L200,60 L220,80 L200,100 Z" fill="#ffa500" />
<!-- 眼睛 -->
<circle cx="130" cy="140" r="15" fill="#333" />
<circle cx="170" cy="140" r="15" fill="#333" />
<circle cx="135" cy="140" r="5" fill="white" />
<circle cx="165" cy="140" r="5" fill="white" />
<!-- 鼻子 -->
<path d="M150,170 L145,185 L155,185 Z" fill="#333" />
<!-- 嘴巴 -->
<path d="M140,190 Q150,200 160,190" stroke="#333" stroke-width="2" fill="none" />
<!-- 胡须 -->
<line x1="130" y1="170" x2="100" y2="165" stroke="#333" stroke-width="1.5" />
<line x1="130" y1="175" x2="100" y2="170" stroke="#333" stroke-width="1.5" />
<line x1="130" y1="180" x2="100" y2="175" stroke="#333" stroke-width="1.5" />
<line x1="170" y1="170" x2="200" y2="165" stroke="#333" stroke-width="1.5" />
<line x1="170" y1="175" x2="200" y2="170" stroke="#333" stroke-width="1.5" />
<line x1="170" y1="180" x2="200" y2="175" stroke="#333" stroke-width="1.5" />
<!-- 身体 -->
<path d="M150,190 C120,210 80,230 70,270 C60,310 80,350 120,370 C160,390 200,370 220,330 C240,290 230,250 210,220 C190,190 170,180 150,190 Z" fill="#ffa500" />
<!-- 前腿 -->
<path d="M120,290 L100,320 L110,340 L130,320 Z" fill="#ffa500" />
<path d="M180,290 L200,320 L190,340 L170,320 Z" fill="#ffa500" />
<!-- 后腿 -->
<path d="M220,330 L240,360 L230,380 L210,360 Z" fill="#ffa500" />
<path d="M160,330 L140,360 L150,380 L170,360 Z" fill="#ffa500" />
<!-- 尾巴 -->
<path d="M220,330 C250,320 270,300 260,270 C250,240 230,230 210,240 C190,250 180,270 190,290 C200,310 220,320 220,330 Z" fill="#ffa500" />
<!-- 爪子 -->
<circle cx="100" cy="325" r="5" fill="#ffa500" />
<circle cx="110" cy="345" r="5" fill="#ffa500" />
<circle cx="130" cy="325" r="5" fill="#ffa500" />
<circle cx="140" cy="345" r="5" fill="#ffa500" />
<circle cx="160" cy="325" r="5" fill="#ffa500" />
<circle cx="170" cy="345" r="5" fill="#ffa500" />
<circle cx="200" cy="325" r="5" fill="#ffa500" />
<circle cx="210" cy="345" r="5" fill="#ffa500" />
<circle cx="230" cy="325" r="5" fill="#ffa500" />
<circle cx="240" cy="345" r="5" fill="#ffa500" />
<circle cx="260" cy="325" r="5" fill="#ffa500" />
<circle cx="270" cy="345" r="5" fill="#ffa500" />
<!-- 艺术效果线条 -->
<path d="M150,100 L120,80" stroke="#ff6b6b" stroke-width="2" stroke-dasharray="5,3" />
<path d="M150,100 L180,80" stroke="#ff6b6b" stroke-width="2" stroke-dasharray="5,3" />
<path d="M150,190 L120,290" stroke="#ff6b6b" stroke-width="2" stroke-dasharray="5,3" />
<path d="M150,190 L180,290" stroke="#ff6b6b" stroke-width="2" stroke-dasharray="5,3" />
<path d="M150,190 L220,330" stroke="#ff6b6b" stroke-width="2" stroke-dasharray="5,3" />
<path d="M150,190 L160,330" stroke="#ff6b6b" stroke-width="2" stroke-dasharray="5,3" />
</svg>
</div>
<p class="description">
这只<span class="highlight">毕加索风格的橘猫</span>采用了立体主义的几何形状和鲜明的色彩对比,展现了艺术与自然的完美结合。通过简化的形状和抽象的线条,捕捉了猫咪的优雅姿态和独特个性。
</p>
</div>
</body>
</html>
vibe coding 2:svg 绘制深圳夜景
vibe coding prompt:用SVG画一张深圳夜景配图,包含建筑剪影和霓虹灯带,视觉主色调明确为深蓝 #0a1a2b(背景)与霓虹粉 #ff3ea5(点缀/光效)
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>深圳夜景</title>
<style>
body {
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #0a1a2b;
font-family: 'Arial', sans-serif;
}
.container {
max-width: 800px;
text-align: center;
}
h1 {
color: #ff3ea5;
margin-bottom: 30px;
text-shadow: 0 0 10px rgba(255, 62, 165, 0.5);
}
.svg-container {
border-radius: 8px;
box-shadow: 0 0 20px rgba(255, 62, 165, 0.3);
overflow: hidden;
}
/* 添加一些动画效果 */
@keyframes glow {
0% { opacity: 0.7; }
50% { opacity: 1; }
100% { opacity: 0.7; }
}
.neon-light {
animation: glow 3s infinite alternate;
}
</style>
</head>
<body>
<div class="container">
<h1>深圳夜景</h1>
<div class="svg-container">
<svg width="800" height="500" viewBox="0 0 800 500">
<!-- 背景 -->
<rect width="800" height="500" fill="#0a1a2b" />
<!-- 远处山脉轮廓 -->
<path d="M0,300 Q100,250 200,280 T400,270 T600,290 T800,300 L800,500 L0,500 Z" fill="#152a3c" />
<!-- 近处地面 -->
<rect x="0" y="450" width="800" height="50" fill="#1a2a3c" />
<!-- 建筑群 -->
<g id="buildings">
<!-- 左侧建筑群 -->
<rect x="50" y="200" width="40" height="150" fill="#111" />
<rect x="90" y="180" width="35" height="170" fill="#111" />
<rect x="135" y="220" width="30" height="130" fill="#111" />
<rect x="175" y="190" width="40" height="160" fill="#111" />
<rect x="225" y="210" width="35" height="140" fill="#111" />
<!-- 中间主要建筑 -->
<rect x="300" y="150" width="60" height="200" fill="#111" />
<rect x="360" y="120" width="70" height="230" fill="#111" />
<rect x="440" y="160" width="50" height="190" fill="#111" />
<rect x="490" y="140" width="65" height="210" fill="#111" />
<rect x="565" y="170" width="55" height="180" fill="#111" />
<!-- 右侧建筑群 -->
<rect x="650" y="200" width="40" height="150" fill="#111" />
<rect x="695" y="180" width="35" height="170" fill="#111" />
<rect x="735" y="220" width="30" height="130" fill="#111" />
<rect x="775" y="190" width="40" height="160" fill="#111" />
<rect x="825" y="210" width="35" height="140" fill="#111" />
</g>
<!-- 霓虹灯带 -->
<g id="neon-lights">
<!-- 建筑顶部霓虹灯 -->
<rect x="50" y="200" width="40" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="90" y="180" width="35" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="135" y="220" width="30" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="175" y="190" width="40" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="225" y="210" width="35" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="300" y="150" width="60" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="360" y="120" width="70" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="440" y="160" width="50" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="490" y="140" width="65" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="565" y="170" width="55" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="650" y="200" width="40" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="695" y="180" width="35" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="735" y="220" width="30" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="775" y="190" width="40" height="5" fill="#ff3ea5" class="neon-light" />
<rect x="825" y="210" width="35" height="5" fill="#ff3ea5" class="neon-light" />
<!-- 空中霓虹灯带 -->
<path d="M100,250 Q150,200 200,250 T300,200 T400,250 T500,200 T600,250 T700,200 T800,250"
fill="none" stroke="#ff3ea5" stroke-width="3" class="neon-light" />
<!-- 闪烁的霓虹点 -->
<circle cx="150" cy="180" r="3" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite" />
</circle>
<circle cx="250" cy="220" r="2" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="1.5s" repeatCount="indefinite" begin="0.5s" />
</circle>
<circle cx="350" cy="190" r="4" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="2.5s" repeatCount="indefinite" begin="1s" />
</circle>
<circle cx="450" cy="170" r="3" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite" begin="1.5s" />
</circle>
<circle cx="550" cy="210" r="2" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="1.5s" repeatCount="indefinite" begin="2s" />
</circle>
<circle cx="650" cy="180" r="3" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite" begin="2.5s" />
</circle>
<circle cx="750" cy="220" r="2" fill="#ff3ea5" class="neon-light">
<animate attributeName="opacity" values="0.3;1;0.3" dur="1.5s" repeatCount="indefinite" begin="3s" />
</circle>
</g>
<!-- 月亮 -->
<circle cx="700" cy="80" r="25" fill="#f0f0f0" />
<circle cx="685" cy="65" r="15" fill="#0a1a2b" />
</svg>
</div>
</div>
</body>
</html>
vibe coding 3:武松打虎 web
vibe coding prompt: 请生成一个单文件 HTML 页面,主题:武松打虎。页面需包含:标题、简介段落、一段描写打虎场景的正文、至少一张配图(可用占位图 URL),并用干净的 CSS 美化页面(响应式)。输出完整的 HTML 文件源码。
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>武松打虎 - 水浒传经典故事</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f5e9;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 30px;
padding: 20px;
background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
h1 {
color: #fff;
font-size: 2.5rem;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.subtitle {
color: #e6d7b8;
font-size: 1.2rem;
font-style: italic;
}
.container {
display: flex;
flex-direction: column;
gap: 30px;
}
.intro {
background-color: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.intro h2 {
color: #8b4513;
border-bottom: 2px solid #d4af37;
padding-bottom: 10px;
margin-bottom: 15px;
}
.story {
background-color: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.story h2 {
color: #8b4513;
border-bottom: 2px solid #d4af37;
padding-bottom: 10px;
margin-bottom: 15px;
}
.story p {
margin-bottom: 15px;
text-indent: 2em;
font-size: 1.1rem;
}
.image-section {
text-align: center;
margin: 30px 0;
}
.image-section img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.image-section img:hover {
transform: scale(1.02);
}
.image-caption {
margin-top: 10px;
font-style: italic;
color: #666;
}
footer {
text-align: center;
margin-top: 40px;
padding: 20px;
color: #666;
font-size: 0.9rem;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.subtitle {
font-size: 1rem;
}
.container {
padding: 15px;
}
.story p {
font-size: 1rem;
}
}
@media (max-width: 480px) {
body {
padding: 10px;
}
h1 {
font-size: 1.8rem;
}
.story p {
font-size: 0.95rem;
}
}
</style>
</head>
<body>
<header>
<h1>武松打虎</h1>
<p class="subtitle">水浒传经典故事之一</p>
</header>
<div class="container">
<section class="intro">
<h2>故事简介</h2>
<p>《武松打虎》是中国古典四大名著之一《水浒传》中的经典章节,讲述了武松在景阳冈上与一只猛虎搏斗并最终将其击毙的英勇事迹。这一故事不仅展现了武松的勇猛无畏,也体现了中国传统文化中"义薄云天"的侠义精神。</p>
<p>武松原是山东清河县人,因杀死杀兄仇人西门庆而被迫逃亡,途经景阳冈时遭遇猛虎。在酒醉状态下,他凭借过人的勇气和武艺,与老虎展开殊死搏斗,最终成功将其击毙,成为民间传颂的英雄人物。</p>
</section>
<section class="story">
<h2>故事正文</h2>
<p>话说武松在孟州牢城营做了三年牢,后来被释放,前往东京投奔哥哥武大郎。路经山东阳谷县境内的景阳冈时,已是黄昏时分。武松走得口渴难耐,见路边有一家酒店,便进去喝酒。</p>
<p>店家见武松生得壮实,便劝他多饮几杯。武松本就性情豪爽,又加上连日赶路劳累,便喝了十八碗烈酒。酒酣耳热之际,店家告诉他前方有一条景阳冈,上面有一只吃人的吊睛白额大虫,劝他不要独自前往。</p>
<p>武松却不以为然,认为自己身强力壮,何惧猛虎?他拍案叫道:"你这厮休要危言耸听!若真有那畜生,我必教他知道爷爷的手段!"说罢,提起行李,摇摇晃晃地向景阳冈走去。</p>
<p>刚上冈不远,忽听得树林中风声飒飒,草木簌簌。武松定睛看时,只见一只斑斓猛虎从林中窜出,直扑过来。武松虽然酒醉,但见到猛虎,酒醒了一半,急忙抽出朴刀迎战。</p>
<p>那老虎扑到近前,武松举刀砍去,却被老虎躲过。老虎反身一扑,武松侧身闪避,与老虎扭打在一起。两人(虎)缠斗良久,武松渐渐觉得力气不支,心想:"今日若死在此处,岂不冤枉!"便奋力挣脱,滚到一旁。</p>
<p>武松见老虎扑空,立即翻身跃起,趁老虎回头之际,一刀砍在老虎颈上。老虎吃痛,转身再扑。武松又是一刀,这次砍中老虎前腿。老虎吃痛,怒吼连连,再次扑来。</p>
<p>武松见老虎伤势严重,知道它已是强弩之末,便不再躲闪,挺刀直刺。这一刀正中老虎心窝,老虎发出一声惨嚎,倒地而死。武松取出老虎眼珠吞下,又割下老虎皮毛,带着尸体回到阳谷县,献给县太爷。</p>
<p>县太爷闻讯亲自前来查看,见果然是一只猛虎,便命人将武松送回孟州牢城营。武松因此事迹传扬开来,声名大振,后来更是成为梁山好汉之一。</p>
</section>
<section class="image-section">
<img src="https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="武松打虎场景">
<p class="image-caption">武松与老虎搏斗的经典场景</p>
</section>
</div>
<footer>
<p>© 2023 中国古典文学故事 | 《水浒传》经典篇章</p>
</footer>
</body>
</html>
关注公众号
低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
-
上一篇
亚马逊与 OpenAI 达成 380 亿美元协议
OpenAI已与亚马逊云服务(AWS)签署一项总额高达380亿美元的算力资源采购协议。这一合作被视为其减少对微软依赖、构建多元化技术生态的重要战略举措。 根据协议内容,OpenAI将立即启动在AWS基础设施上的工作负载部署,初期将依托美国地区数十万台英伟达高性能图形处理器(GPU)构建算力集群,并计划在未来数年内持续扩大资源规模,以满足其不断增长的模型训练与推理需求。 作为估值已突破5000亿美元的AI独角兽,OpenAI此前长期与微软保持深度合作,后者不仅是其核心投资者,还通过Azure云平台为其提供算力支持。然而,此次与AWS的签约被业界视为OpenAI“去单一化”的关键信号。 OpenAI在声明中透露,初期部署的英伟达GPU集群将重点支持其多模态大模型研发及实时推理服务,而后续扩容计划则暗示了该公司对AI技术商业化落地的雄心。随着自动驾驶、机器人、医疗诊断等高算力需求场景的拓展,全球AI产业对基础设施的依赖度将持续攀升,此次合作或成为行业资源整合的新范式。
-
下一篇
大模型如何革新搜索相关性?智能升级让搜索更 “懂你”
一、背 景 你是否曾在社区搜索时遇到这样的困扰:想找一双“平价学生党球鞋”,结果出现的多是限量联名款?或者输入“初冬轻薄通勤羽绒服”,却看到厚重登山款?这类“搜不准”的情况,正是搜索相关性技术要解决的核心问题——让搜索引擎更准确地理解用户意图,返回真正匹配的结果。今天,我们就来揭秘得物如何用大模型技术让搜索变得更“聪明”。 搜索相关性,即衡量搜索结果与用户查询的匹配程度,通俗来说就是“搜得准不准”。作为搜索体验的基石,良好的相关性能够帮助用户更顺畅地从种草走向决策,同时也对购买转化率和用户留存具有重要影响。 二、传统相关性迭代痛点 从算法层面看,搜索相关性模型需要计算用户查询与内容(包括下挂商卡)之间的相关程度。系统需要理解几十种用户意图,如品牌、系列、送礼、鉴别等,识别几十种商品属性,如人群、颜色、材质、款式,还要覆盖平台上数千个商品类目,从跑步鞋、冲锋衣到咖啡机、吹风机等等。 我们早期主要采用基于BERT的交互式模型,结合大量人工标注数据,来构建搜索相关性系统。然而,随着业务发展,传统方法在迭代过程中逐渐暴露出以下痛点: 资源消耗大,标注成本高昂:模型效果严重依赖海量人工标注数据...
相关文章
文章评论
共有0条评论来说两句吧...












微信收款码
支付宝收款码