Views
No views yet
1import torch
2from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline
3
4device = "cuda:0" if torch.cuda.is_available() else "cpu"
5torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32
6
7model_id = "aictsharif/whisper-large-v2-fa"
8model = AutoModelForSpeechSeq2Seq.from_pretrained(
9 model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True, use_safetensors=True
10)
11model.to(device)
12
13processor = AutoProcessor.from_pretrained(model_id)
14pipe = pipeline(
15 "automatic-speech-recognition",
16 model=model,
17 tokenizer=processor.tokenizer,
18 feature_extractor=processor.feature_extractor,
19 torch_dtype=torch_dtype,
20 device=device,
21)
22
23result = pipe('sample.mp3')
24print(result["text"])