Instructions to use sanaweb/speech-to-text-fa with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use sanaweb/speech-to-text-fa with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("fill-in-model-name") model.load_adapter("sanaweb/speech-to-text-fa", set_active=True) - Notebooks
- Google Colab
- Kaggle
| import torch | |
| import re | |
| import librosa | |
| from datasets import load_dataset, load_metric | |
| from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor | |
| LANG_ID = "fa" | |
| MODEL_ID = "jonatasgrosman/wav2vec2-large-xlsr-53-persian" | |
| DEVICE = "cuda" | |
| CHARS_TO_IGNORE = [",", "?", "¿", ".", "!", "¡", ";", ";", ":", '""', "%", '"', "�", "ʿ", "·", "჻", "~", "՞", | |
| "؟", "،", "।", "॥", "«", "»", "„", "“", "”", "「", "」", "‘", "’", "《", "》", "(", ")", "[", "]", | |
| "{", "}", "=", "`", "_", "+", "<", ">", "…", "–", "°", "´", "ʾ", "‹", "›", "©", "®", "—", "→", "。", | |
| "、", "﹂", "﹁", "‧", "~", "﹏", ",", "{", "}", "(", ")", "[", "]", "【", "】", "‥", "〽", | |
| "『", "』", "〝", "〟", "⟨", "⟩", "〜", ":", "!", "?", "♪", "؛", "/", "\\", "º", "−", "^", "ʻ", "ˆ"] | |
| test_dataset = load_dataset("common_voice", LANG_ID, split="test") | |
| wer = load_metric("wer.py") # https://github.com/jonatasgrosman/wav2vec2-sprint/blob/main/wer.py | |
| cer = load_metric("cer.py") # https://github.com/jonatasgrosman/wav2vec2-sprint/blob/main/cer.py | |
| chars_to_ignore_regex = f"[{re.escape(''.join(CHARS_TO_IGNORE))}]" | |
| processor = Wav2Vec2Processor.from_pretrained(MODEL_ID) | |
| model = Wav2Vec2ForCTC.from_pretrained(MODEL_ID) | |
| model.to(DEVICE) | |
| # Preprocessing the datasets. | |
| # We need to read the audio files as arrays | |
| def speech_file_to_array_fn(batch): | |
| with warnings.catch_warnings(): | |
| warnings.simplefilter("ignore") | |
| speech_array, sampling_rate = librosa.load(batch["path"], sr=16_000) | |
| batch["speech"] = speech_array | |
| batch["sentence"] = re.sub(chars_to_ignore_regex, "", batch["sentence"]).upper() | |
| return batch | |
| test_dataset = test_dataset.map(speech_file_to_array_fn) | |
| # Preprocessing the datasets. | |
| # We need to read the audio files as arrays | |
| def evaluate(batch): | |
| inputs = processor(batch["speech"], sampling_rate=16_000, return_tensors="pt", padding=True) | |
| with torch.no_grad(): | |
| logits = model(inputs.input_values.to(DEVICE), attention_mask=inputs.attention_mask.to(DEVICE)).logits | |
| pred_ids = torch.argmax(logits, dim=-1) | |
| batch["pred_strings"] = processor.batch_decode(pred_ids) | |
| return batch | |
| result = test_dataset.map(evaluate, batched=True, batch_size=8) | |
| predictions = [x.upper() for x in result["pred_strings"]] | |
| references = [x.upper() for x in result["sentence"]] | |
| print(f"WER: {wer.compute(predictions=predictions, references=references, chunk_size=1000) * 100}") | |
| print(f"CER: {cer.compute(predictions=predictions, references=references, chunk_size=1000) * 100}") | |