reggy54 commited on
Commit
2ed6c32
·
verified ·
1 Parent(s): ee78d45

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # Load model directly
2
+ from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
3
+
4
+ processor = AutoProcessor.from_pretrained("openai/whisper-large-v3")
5
+ model = AutoModelForSpeechSeq2Seq.from_pretrained("openai/whisper-large-v3")