Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
-
!pip install git+https://github.com/huggingface/transformers
|
3 |
from transformers import pipeline
|
|
|
|
|
|
|
4 |
|
5 |
pipe = pipeline(model="SebLih/whisper-SV3") # change to "your-username/the-name-you-picked"
|
6 |
|
|
|
1 |
import gradio as gr
|
|
|
2 |
from transformers import pipeline
|
3 |
+
from huggingface_hub import login
|
4 |
+
|
5 |
+
login("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", add_to_git_credential=True)
|
6 |
|
7 |
pipe = pipeline(model="SebLih/whisper-SV3") # change to "your-username/the-name-you-picked"
|
8 |
|