Spaces:
Runtime error
Runtime error
Create v2 jax
Browse files
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")
|