Spaces:
Runtime error
Runtime error
test model
Browse files
app.py
CHANGED
@@ -1,7 +1,17 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
from transformers import pipeline
|
|
|
4 |
|
5 |
+
pipe = pipeline("translation", model="sun-tana/residual_text_t1_m1")
|
6 |
+
|
7 |
+
def predict(text):
|
8 |
+
return pipe(text)
|
9 |
+
|
10 |
+
iface = gr.Interface(
|
11 |
+
fn=predict,
|
12 |
+
inputs='text',
|
13 |
+
outputs='text',
|
14 |
+
examples=[["Hello! My name is Omar"]]
|
15 |
+
)
|
16 |
+
|
17 |
+
iface.launch()
|