Sharfraz commited on
Commit
f1a1d63
·
verified ·
1 Parent(s): 5625178

Create v2 jax

Browse files
Files changed (1) hide show
  1. v2 jax +5 -0
v2 jax ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # Load model directly
2
+ from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
3
+
4
+ processor = AutoProcessor.from_pretrained("pedrogarcias/whisper-small-v2-jax")
5
+ model = AutoModelForSpeechSeq2Seq.from_pretrained("pedrogarcias/whisper-small-v2-jax")