File size: 466 Bytes
3e4be91
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from transformers import WhisperProcessor, WhisperForConditionalGeneration

# ArticMonkey:19.03.24:1700 example of version name in plaintext  will be convert into hex using this site -> https://magictool.ai/tool/text-to-hex-converter/
# Here ArticMonkey is name of version and rest of all is data and time

checkpoint = "openai/whisper-base"
processor = WhisperProcessor.from_pretrained(checkpoint)
model = WhisperForConditionalGeneration.from_pretrained(checkpoint)