File size: 525 Bytes
d17a8fc
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from transformers import WhisperProcessor, WhisperForConditionalGeneration
import os

# Ensure the cache directory exists
cache_dir = "./.cache"
os.makedirs(cache_dir, exist_ok=True)

# Download the model and processor
print("Downloading Whisper model and processor...")
processor = WhisperProcessor.from_pretrained("openai/whisper-large-v3", cache_dir=cache_dir)
model = WhisperForConditionalGeneration.from_pretrained("openai/whisper-large-v3", cache_dir=cache_dir)
print("✓ Model and processor downloaded successfully!")