Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers.utils import logging
|
| 2 |
+
logging.set_verbosity_error()
|
| 3 |
+
|
| 4 |
+
import os
|
| 5 |
+
import gradio as gr
|
| 6 |
+
from transformers import pipeline
|
| 7 |
+
|
| 8 |
+
def launch(input):
|
| 9 |
+
out = pipe(input)
|
| 10 |
+
return out[0]['generated_text']
|
| 11 |
+
|
| 12 |
+
iface = gr.Interface(launch,
|
| 13 |
+
inputs=gr.Image(type='pil'),
|
| 14 |
+
outputs="text")
|
| 15 |
+
|
| 16 |
+
iface.launch(share=True)
|