Spaces:
Runtime error
Runtime error
try4
Browse files- app.py +3 -0
- requirements.txt +0 -3
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
from transformers import pipeline
|
2 |
import gradio as gr
|
|
|
|
|
|
|
3 |
|
4 |
pipe = pipeline(model="WCarlW/whisper-small-hi") # change to "your-username/the-name-you-picked"
|
5 |
|
|
|
1 |
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
+
from huggingface_hub import notebook_login
|
4 |
+
|
5 |
+
notebook_login()
|
6 |
|
7 |
pipe = pipeline(model="WCarlW/whisper-small-hi") # change to "your-username/the-name-you-picked"
|
8 |
|
requirements.txt
CHANGED
@@ -1,5 +1,2 @@
|
|
1 |
-
datasets>=2.6.1
|
2 |
-
librosa
|
3 |
gradio
|
4 |
-
jiwer
|
5 |
git+https://github.com/huggingface/transformers
|
|
|
|
|
|
|
1 |
gradio
|
|
|
2 |
git+https://github.com/huggingface/transformers
|