Motif-Technologies/Motif-3-Beta

Hugging Face Models Trending 模型

摘要

Motif Technologies 发布了 Motif-3 的中期测试版检查点,这是一个大规模混合专家语言模型,总参数约 314B(激活约 13B),上下文长度 256K,并采用自定义架构如分组差分潜在注意力(GDLA),公开可用于非商业研究。

任务:文本生成 标签:transformers, safetensors, Motif, feature-extraction, motif, motif-3, mixture-of-experts, moe, long-context, multilingual, preview, text-generation, conversational, custom_code, en, ko, region:us
查看原文
查看缓存全文

缓存时间: 2026/07/21 12:36

Motif-Technologies/Motif-3-Beta · Hugging Face

来源:https://huggingface.co/Motif-Technologies/Motif-3-Beta

⚠️预览/测试版检查点——并非最终版本。此仓库托管了Motif-3的一个中间检查点。最终检查点将很快发布。

Motif-3是一个大规模的混合专家(MoE)语言模型,由Motif Technologies(https://motiftech.io/)从头开始构建,采用完全自主设计——并非对现有开源架构的重新参数化。

亮点

  • 🧠约314B总参数 / 每个token约13B活跃(稀疏MoE)
  • 📏256K上下文长度(262,144个token),原生长上下文
  • ⚡ 稀疏路由:384个专家,每个token激活8个,外加1个共享专家
  • 🌐多语言,通用用途

模型详情

属性
模型类型混合专家因果语言模型
总参数约314B
活跃参数每个token约13B
隐藏层大小4096
层数53
路由专家数384(top-8)
共享专家数1
上下文长度262,144(256K)
词表大小220,160
张量类型bfloat16

架构

Motif-3是完全自主设计,引入了多个自定义组件:

  • 分组差分潜注意力(Grouped Differential Latent Attention, GDLA)
  • 分组PolyNorm激活,每个专家独立应用
  • 改进的mHC

基准测试

Artificial Analysis Intelligence Index (AAII):44

详情请参见Artificial Analysis(https://artificialanalysis.ai/)。

使用方法

专门的vLLM服务指南即将推出。

模型附带了自定义建模代码,因此加载时需要设置trust_remote_code=True

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_id = "Motif-Technologies/Motif-3-Beta"

tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    trust_remote_code=True,
    torch_dtype=torch.bfloat16,
    device_map="auto",
)

messages = [{"role": "user", "content": "Hello!"}]
inputs = tokenizer.apply_chat_template(
    messages, add_generation_prompt=True, return_tensors="pt"
).to(model.device)

outputs = model.generate(inputs, max_new_tokens=512)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))

获取方式

本模型开放获取——任何人都可以下载权重,无需申请权限。

许可证

仅允许为个人、教育和非商业研究目的使用、修改和重新分发本软件。

未经Motif Technologies事先书面许可,禁止商业使用。


© Motif Technologies。保留所有权利。

相似文章

Motif 3:技术报告

Hugging Face Daily Papers

Motif 3 是一个具有 3140 亿参数的混合专家语言模型,每个 token 激活 132 亿参数,采用分组差分潜在注意力,并在 12.5 万亿 token 上完成训练,在推理、编程和长上下文任务中展现出具有竞争力的性能。

Motif-Video 2B:技术报告

Hugging Face Daily Papers

# 论文页面 - Motif-Video 2B:技术报告 来源:[https://huggingface.co/papers/2604.16503](https://huggingface.co/papers/2604.16503) 作者:、、、、、、、、、、、、、、、、、、、、、 ## 摘要 Motif-Video 2B 采用共享交叉注意力与三段式主干的专用架构,以及高效训练方法,在显著降低参数量和训练数据用量的同时,实现了高质量文本到视频生成。

为什么 Motif3 如此出色?

Reddit r/ArtificialInteligence

Motif3 是一家韩国初创公司推出的AI模型,在基准测试中表现出色,与 ChatGPT-Luna 相当,引发了对韩国主权AI能力的兴趣。

JetBrains 的 Mellum 2(阅读时间 49 分钟)

TLDR AI

JetBrains 发布 Mellum 2,这是一个 12B 参数的开源权重混合专家语言模型,专注于软件工程领域,在代码生成、推理和工具使用方面性能具有竞争力,基于 Apache 2.0 许可证发布。