Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,9 +3,9 @@ import gradio as gr
|
|
| 3 |
from transformers import pipeline
|
| 4 |
|
| 5 |
pipe = pipeline("image-to-text",
|
| 6 |
-
model="
|
| 7 |
tts_pipe = pipeline("text-to-speech",
|
| 8 |
-
model="
|
| 9 |
|
| 10 |
def launch(input):
|
| 11 |
out = pipe(input)
|
|
|
|
| 3 |
from transformers import pipeline
|
| 4 |
|
| 5 |
pipe = pipeline("image-to-text",
|
| 6 |
+
model="Salesforce/blip-image-captioning-base")
|
| 7 |
tts_pipe = pipeline("text-to-speech",
|
| 8 |
+
model="kakao-enterprise/vits-ljs")
|
| 9 |
|
| 10 |
def launch(input):
|
| 11 |
out = pipe(input)
|