moss-local-voice-acting-v4-emorant-64x200
收藏资源简介:
MOSS-Local Voice Acting v4 "emorant" 是一个专注于最大化情感表达的合成语音数据集,旨在通过高强度、戏剧化的情感传递来推动语音合成的情感表现力。数据集包含40种不同情感类别,每种情感包含200组数据,每组生成64个语音样本,总计目标为512,000个音频片段。音频为48 kHz单声道FLAC格式,由合并后的4.55B参数MOSS-TTS本地Transformer语音表演模型生成,未使用参考音频,模型根据对普通人类说话者的角色描述自主生成每组的声音。该版本核心特点是情感强度最大化,生成指令基于进化提示研究重写,包括情感映射到表达类别、直接情感命名、逐句增强、非语言声音提示和清晰度保障条款。数据集适用于文本到语音和音频分类任务,提供详细的评分表格,包含多种自动化评分指标。已知局限性包括极端情感表达可能影响清晰度,脚本为戏剧独白,评分基于模型预测。数据集采用Apache-2.0许可证,所有音频均为完全合成。
MOSS-Local Voice Acting v4 "emorant" is a synthetic speech dataset focused on maximizing emotional expression, aiming to advance the emotional expressiveness of speech synthesis through high-intensity, dramatic emotional delivery. The dataset contains 40 distinct emotion categories, with 200 groups of data per emotion, and 64 speech samples generated per group, with an overall target of 512,000 audio clips. The audio is in 48 kHz mono FLAC format, generated by the merged 4.55-billion-parameter MOSS-TTS local Transformer voice acting model, without using reference audio. The model autonomously generates the voice for each group based on character descriptions of ordinary human speakers. The core feature of this version is maximizing emotional intensity. The generation instructions were rewritten based on evolutionary prompting research, including emotion mapping to expression categories, direct emotion naming, sentence-by-sentence enhancement, non-verbal audio prompts, and clarity guarantee clauses. This dataset is applicable for text-to-speech and audio classification tasks, and provides detailed scoring sheets containing multiple automated evaluation metrics. Known limitations include that extreme emotional expressions may compromise clarity, the scripts are dramatic monologues, and the scoring is based on model predictions. The dataset is released under the Apache-2.0 license, and all audio is fully synthetic.
数据集概述
数据集名称:MOSS-Local Voice Acting v4 "emorant" — maximally emotional deliveries
许可证:Apache-2.0
任务类别:文本转语音(text-to-speech)、音频分类(audio-classification)
语言:英语(en)
数据集规模:100K < n < 1M(目标生成 512,000 个音频片段)
数据集大小:40 种情绪 × 200 组 × 64 次录制,每个 FLAC 文件为 48 kHz 单声道,原始模型输出(温度 1.0),无参考音频。
数据集特点
- 核心目标:v4 版本专注于最大强度的情感表达,通过重写指令,对每个情绪采用特定的“投送类别”(delivery class),包括 RANT(暴怒)、DISTRESS(痛苦)、GRIEF(悲伤)、JOY(喜悦)、TENDER(温柔)、WONDER(惊奇)以及 SPECIAL(特殊,如陶醉/戏谑/狂喜)。
- 情感命名:情感名称直接且具体(如“mid-explosion in an unhinged furious rant”),避免抽象描述。
- 升级弧线:指令中嵌入“随着每一句话更加……”的渐进式情感升级提示。
- 声音爆发提示:脚本中包含括号标注的非言语声音爆发提示(如喘息、啜泣、狂笑)。
- 可懂度保障:每条指令末尾强调“但每个词依然清晰可辨”,使 WER(词错误率)可作为过滤依据。
- 角色设置:所有角色均为“普通人类”(无奇幻生物),脚本为全新的单句提示,不使用 v2/v3 的脚本。
数据文件结构
data/<Emotion>.tar 每个情绪一个 tar 文件(约 14 GB,共 40 个): <Emotion>/<Emotion>_<group>_v<take>.flac 64 次录制 × 200 组,48 kHz 单声道 FLAC <Emotion>/scores.parquet 每个情绪对应的评分表子集 <Emotion>/cells.jsonl 每个情绪对应的生成单元 scores.parquet 完整评分表(运行完成后添加) cells.jsonl 全部 8,000 个生成单元
评分表(scores.parquet)字段说明
| 字段 | 描述 |
|---|---|
gid, emotion, ei_head, prompt_idx, seed |
组 ID、目标情绪、EI 头、提示索引、录制索引(匹配文件名中的 _v<take>) |
vocal_burst |
脚本中命名的非言语爆发提示 |
wer, inv_wer, hyp |
与脚本的词错误率(NVIDIA Parakeet-TDT-0.6b-v3 ASR 模型)、1/(1+WER)、ASR 转录结果 |
blend, genu |
VoiceCLAP-commercial 情感混合度和真实性 MLP 分数 |
prompt_sim |
VoiceCLAP 音频-文本余弦相似度(音频与样式指令) |
ei_*(42 列) |
Empathic-Insight-Voice-Plus 分数:40 个情感维度 + ei_Arousal、ei_Valence 和 ei_Authenticity |
target |
该组提示的目标情感的 EI-Plus 分数 |
rms_db, peak_db, dur |
响度(dBFS)和持续时间(秒) |
finished |
生成是否以 EOS 结束(推荐过滤条件) |
最佳选择(Best-of-N)建议
python import pandas as pd
df = pd.read_parquet("scores.parquet") n = lambda s: (s - s.min()) / (s.max() - s.min()) df["reward"] = (n(df["blend"]) + n(df["genu"]) + 1.25 * n(df["target"])) * df["inv_wer"] best3 = df[df.finished].sort_values("reward", ascending=False).groupby("gid").head(3)
生成细节
- 模型:融合基础模型与 rank-256 LoRA 的 4.55B
moss_tts_local架构,12 码本 RVQ、MOSS-Audio-Tokenizer-v2 编解码器,原生 48 kHz。 - 采样:温度 1.0,每批 64 条,bf16 + SDPA 注意力。
- 令牌预算:
单词数 × 6.0个码本帧(12.5 Hz),max_new_tokens = 2.2 × budget + 300。 - 评分:生成时融合 Parakeet ASR、VoiceCLAP 二元/真实性/提示相似度、Empathic-Insight-Voice-Plus 42 维向量、RMS/峰值响度。
- 计算资源:8 × A100-80GB,每个音频片段端到端约 2.0 秒(生成+完整评分),约 36 小时墙钟时间。
- 推理代码:LAION-AI/laion-moss-local-1.5-voice-acting-4.55b
系列版本对比
| 版本 | 特点 | 数据地址 |
|---|---|---|
| v2(255,746 片段) | 单提示脚本,中等情感提示 | laion/moss-local-voice-acting-64x100 |
| v3(255,272 片段) | 每组一个独有语音克隆参考(4,000 个说话人),双倍长度配对脚本 | laion/moss-local-voice-acting-v3-refs-64x100 |
| v4(当前) | 最大强度投送类别提示,每种情绪 200 组 | 当前仓库 |
| DramaBox 再诠释(188,125 片段) | 2,953 个完整人类表演,每个表演 ×64 次再诠释,从原表演克隆 | laion/moss-local-dramabox-full-reinterpretations-64 |
已知限制
- 极端投送(尖叫、啜泣、含糊)会刻意牺牲部分清晰度以换取强度——可使用
wer/finished过滤。 - 脚本为戏剧独白,非对话式语音。
- 所有评分为模型评分,非人工真实值。
样本预览
- 随机片段预览网格(已完成情绪的真实随机样本,附带提示和分数)




