ArTST - Arabic Text Speech Transformer
Collection
Open source project for Arabic Speech Recognition and Generation โข 12 items โข Updated โข 13
How to use MBZUAI/artst_asr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="MBZUAI/artst_asr") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("MBZUAI/artst_asr")
model = AutoModelForSpeechSeq2Seq.from_pretrained("MBZUAI/artst_asr")ArTST model finetuned for automatic speech recognition (speech-to-text) on MGB2.
This is the model card of a ๐ค transformers model that has been pushed on the Hub. This model card has been automatically generated.
import soundfile as sf
from transformers import (
SpeechT5Config,
SpeechT5FeatureExtractor,
SpeechT5ForSpeechToText,
SpeechT5Processor,
SpeechT5Tokenizer,
)
from custom_tokenizer import CustomTextTokenizer
device = "cuda" if torch.cuda.is_available() else "cpu"
tokenizer = SpeechT5Tokenizer.from_pretrained("mbzuai/artst_asr")
processor = SpeechT5Processor.from_pretrained("mbzuai/artst_asr" , tokenizer=tokenizer)
model = SpeechT5ForSpeechToText.from_pretrained("mbzuai/artst_asr").to(device)
audio, sr = sf.read("audio.wav")
inputs = processor(audio=audio, sampling_rate=sr, return_tensors="pt")
predicted_ids = model.generate(**inputs.to(device), max_length=150, num_beams=10)
transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)
print(transcription[0])
BibTeX:
@inproceedings{toyin-etal-2023-artst,
title = "{A}r{TST}: {A}rabic Text and Speech Transformer",
author = "Toyin, Hawau and
Djanibekov, Amirbek and
Kulkarni, Ajinkya and
Aldarmaki, Hanan",
booktitle = "Proceedings of ArabicNLP 2023",
month = dec,
year = "2023",
address = "Singapore (Hybrid)",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2023.arabicnlp-1.5",
doi = "10.18653/v1/2023.arabicnlp-1.5",
pages = "41--51",
}