英文

S2T-SMALL-MUSTC-EN-FR-ST

s2t-small-mustc-en-fr-st 是一个训练用于端到端语音翻译(ST)的语音到文本转换器(S2T)模型。该S2T模型在 this paper 中提出并在 this repository 中发布。

模型描述

S2T是一个基于Transformer的序列到序列(编码器-解码器)模型,专为端到端的自动语音识别(ASR)和语音翻译(ST)而设计。它使用卷积降采样器将语音输入长度缩小3/4,然后输入编码器。该模型通过标准的自回归交叉熵损失进行训练,并自回归地生成转录/翻译。

预期用途和限制

该模型可用于将英语语音转换为法语文本。查看 model hub 以查找其他S2T检查点。

如何使用

由于这是一个标准的序列到序列Transformer模型,您可以使用generate方法通过将语音特征传递给模型来生成转录。

注意:Speech2TextProcessor对象使用 torchaudio 来提取滤波器组特征。在运行此示例之前,请确保安装了torchaudio软件包。

您可以使用pip install transformers"[speech, sentencepiece]" 通过安装额外的语音依赖项来安装它们,也可以使用pip install torchaudio sentencepiece分别安装软件包。

import torch
from transformers import Speech2TextProcessor, Speech2TextForConditionalGeneration
from datasets import load_dataset
import soundfile as sf

model = Speech2TextForConditionalGeneration.from_pretrained("facebook/s2t-small-mustc-en-fr-st")
processor = Speech2TextProcessor.from_pretrained("facebook/s2t-small-mustc-en-fr-st")

def map_to_array(batch):
    speech, _ = sf.read(batch["file"])
    batch["speech"] = speech
    return batch

ds = load_dataset(
    "patrickvonplaten/librispeech_asr_dummy",
    "clean",
    split="validation"
)
ds = ds.map(map_to_array)

inputs = processor(
    ds["speech"][0],
    sampling_rate=16_000,
    return_tensors="pt"
)
generated_ids = model.generate(input_ids=inputs["input_features"], attention_mask=inputs["attention_mask"])

translation = processor.batch_decode(generated_ids, skip_special_tokens=True)

训练数据

s2t-small-mustc-en-fr-st在 MuST-C 的英法子集上进行训练。MuST-C是一个多语言语音翻译语料库,其规模和质量有助于训练从英语到多种语言的端到端语音翻译系统。对于每种目标语言,MuST-C包括来自英语TED演讲的几百小时音频录音,这些录音在句子级别上自动与其手动转录和翻译对齐。

训练过程

预处理

通过PyKaldi或torchaudio从WAV/FLAC音频文件自动提取符合Kaldi标准的80通道对数梅尔滤波器组特征进行预处理。对每个示例应用了utterance级的CMVN(倒谱均值和方差归一化)。

文本采用SentencePiece进行小写和标记化,词汇量大小为8,000。

训练

模型使用标准的自回归交叉熵损失进行训练,使用 SpecAugment 进行优化。编码器接收语音特征,解码器自回归地生成转录。为了加快模型训练和获得更好的性能,编码器会进行英语ASR的预训练。

评估结果

en-fr的MuST-C测试结果(BLEU分数):32.9

BibTeX条目和引用信息

@inproceedings{wang2020fairseqs2t,
  title = {fairseq S2T: Fast Speech-to-Text Modeling with fairseq},
  author = {Changhan Wang and Yun Tang and Xutai Ma and Anne Wu and Dmytro Okhonko and Juan Pino},
  booktitle = {Proceedings of the 2020 Conference of the Asian Chapter of the Association for Computational Linguistics (AACL): System Demonstrations},
  year = {2020},
}