MBZUAI / artst_asr_v2

huggingface.co
Total runs: 22
24-hour runs: 1
7-day runs: -20
30-day runs: -28
Model's Last Updated: September 10 2025
automatic-speech-recognition

Introduction of artst_asr_v2

Model Details of artst_asr_v2

Model Card for ArTST_v2

ArTST (ASR task)

ArTST model finetuned for automatic speech recognition (speech-to-text) on MGB2.

Model Description

This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.

How to Get Started with the Model
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_v2")
processor = SpeechT5Processor.from_pretrained("mbzuai/artst_asr_v2" , tokenizer=tokenizer)
model = SpeechT5ForSpeechToText.from_pretrained("mbzuai/artst_asr_v2").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=250)

transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)
print(transcription[0])
Usage with Pipeline
import torch
from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline

device = "cuda"
torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32

model_id = "MBZUAI/artst_asr_v2"

processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForSpeechSeq2Seq.from_pretrained(model_id).to(device)
pipe = pipeline(
    "automatic-speech-recognition",
    model=model,
    tokenizer=processor.tokenizer,
    feature_extractor=processor.feature_extractor,
    torch_dtype=torch_dtype,
    device=device,
)

audio , sr = sf.read("path/to/audio/file")
if sr != 16000: 
  audio = librosa.resample(audio), orig_sr=sr, target_sr=16000)
result = pipe(audio)
print(result['text'])
Model Sources [optional]
Citation [optional]

BibTeX:

@misc{djanibekov2024dialectalcoveragegeneralizationarabic,
      title={Dialectal Coverage And Generalization in Arabic Speech Recognition}, 
      author={Amirbek Djanibekov and Hawau Olamide Toyin and Raghad Alshalan and Abdullah Alitr and Hanan Aldarmaki},
      year={2024},
      eprint={2411.05872},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2411.05872}, 
}

@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",
}

Runs of MBZUAI artst_asr_v2 on huggingface.co

22
Total runs
1
24-hour runs
-2
3-day runs
-20
7-day runs
-28
30-day runs

More Information About artst_asr_v2 huggingface.co Model

More artst_asr_v2 license Visit here:

https://choosealicense.com/licenses/cc-by-nc-4.0

artst_asr_v2 huggingface.co

artst_asr_v2 huggingface.co is an AI model on huggingface.co that provides artst_asr_v2's model effect (), which can be used instantly with this MBZUAI artst_asr_v2 model. huggingface.co supports a free trial of the artst_asr_v2 model, and also provides paid use of the artst_asr_v2. Support call artst_asr_v2 model through api, including Node.js, Python, http.

artst_asr_v2 huggingface.co Url

https://huggingface.co/MBZUAI/artst_asr_v2

MBZUAI artst_asr_v2 online free

artst_asr_v2 huggingface.co is an online trial and call api platform, which integrates artst_asr_v2's modeling effects, including api services, and provides a free online trial of artst_asr_v2, you can try artst_asr_v2 online for free by clicking the link below.

MBZUAI artst_asr_v2 online free url in huggingface.co:

https://huggingface.co/MBZUAI/artst_asr_v2

artst_asr_v2 install

artst_asr_v2 is an open source model from GitHub that offers a free installation service, and any user can find artst_asr_v2 on GitHub to install. At the same time, huggingface.co provides the effect of artst_asr_v2 install, users can directly use artst_asr_v2 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

artst_asr_v2 install url in huggingface.co:

https://huggingface.co/MBZUAI/artst_asr_v2

Url of artst_asr_v2

artst_asr_v2 huggingface.co Url

Provider of artst_asr_v2 huggingface.co

MBZUAI
ORGANIZATIONS

Other API from MBZUAI

huggingface.co

Total runs: 76.6K
Run Growth: 1.1K
Growth Rate: 1.49%
Updated:February 20 2025
huggingface.co

Total runs: 5.5K
Run Growth: 4.4K
Growth Rate: 80.18%
Updated:March 01 2024
huggingface.co

Total runs: 5.3K
Run Growth: -1.2K
Growth Rate: -23.60%
Updated:April 08 2026
huggingface.co

Total runs: 4.6K
Run Growth: -1.3K
Growth Rate: -27.43%
Updated:April 08 2026
huggingface.co

Total runs: 3.0K
Run Growth: -1.0K
Growth Rate: -35.01%
Updated:April 08 2026
huggingface.co

Total runs: 2.5K
Run Growth: -424
Growth Rate: -17.00%
Updated:April 08 2026
huggingface.co

Total runs: 1.2K
Run Growth: -1.2K
Growth Rate: -99.49%
Updated:April 28 2023
huggingface.co

Total runs: 1.1K
Run Growth: -1.2K
Growth Rate: -110.15%
Updated:April 28 2023
huggingface.co

Total runs: 935
Run Growth: -1.2K
Growth Rate: -125.13%
Updated:April 28 2023
huggingface.co

Total runs: 922
Run Growth: -856
Growth Rate: -92.84%
Updated:March 13 2025
huggingface.co

Total runs: 916
Run Growth: 242
Growth Rate: 26.42%
Updated:February 28 2024
huggingface.co

Total runs: 732
Run Growth: 689
Growth Rate: 94.13%
Updated:March 25 2024
huggingface.co

Total runs: 406
Run Growth: 0
Growth Rate: 0.00%
Updated:December 26 2024
huggingface.co

Total runs: 262
Run Growth: 78
Growth Rate: 29.77%
Updated:February 27 2026
huggingface.co

Total runs: 158
Run Growth: -1.6K
Growth Rate: -1019.87%
Updated:December 27 2023
huggingface.co

Total runs: 137
Run Growth: 31
Growth Rate: 22.63%
Updated:February 28 2024
huggingface.co

Total runs: 117
Run Growth: 103
Growth Rate: 88.03%
Updated:December 16 2024
huggingface.co

Total runs: 116
Run Growth: -179
Growth Rate: -154.31%
Updated:February 27 2026
huggingface.co

Total runs: 93
Run Growth: -112
Growth Rate: -120.43%
Updated:February 27 2026
huggingface.co

Total runs: 80
Run Growth: 42
Growth Rate: 52.50%
Updated:December 18 2024
huggingface.co

Total runs: 67
Run Growth: 31
Growth Rate: 46.27%
Updated:September 10 2025
huggingface.co

Total runs: 57
Run Growth: 51
Growth Rate: 89.47%
Updated:January 20 2026
huggingface.co

Total runs: 29
Run Growth: -5
Growth Rate: -17.24%
Updated:September 10 2025
huggingface.co

Total runs: 29
Run Growth: 0
Growth Rate: 0.00%
Updated:July 11 2026
huggingface.co

Total runs: 25
Run Growth: 11
Growth Rate: 45.83%
Updated:December 27 2023
huggingface.co

Total runs: 25
Run Growth: 17
Growth Rate: 68.00%
Updated:March 16 2025
huggingface.co

Total runs: 23
Run Growth: 8
Growth Rate: 34.78%
Updated:December 16 2024
huggingface.co

Total runs: 21
Run Growth: 2
Growth Rate: 9.52%
Updated:December 16 2024
huggingface.co

Total runs: 20
Run Growth: 13
Growth Rate: 65.00%
Updated:February 28 2024
huggingface.co

Total runs: 14
Run Growth: 14
Growth Rate: 100.00%
Updated:November 28 2025
huggingface.co

Total runs: 13
Run Growth: 9
Growth Rate: 69.23%
Updated:June 12 2025
huggingface.co

Total runs: 9
Run Growth: -3
Growth Rate: -33.33%
Updated:March 25 2024
huggingface.co

Total runs: 8
Run Growth: 1
Growth Rate: 12.50%
Updated:April 13 2026
huggingface.co

Total runs: 2
Run Growth: 0
Growth Rate: 0.00%
Updated:January 19 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 05 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:June 09 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 10 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 10 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 10 2025