Spaces:
Running
Running
AFischer1985
commited on
Commit
•
91e9296
1
Parent(s):
545cec7
Add description
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
title= "German Flan-T5"
|
|
|
4 |
examples = [
|
5 |
["Erzähl mit eine Geschichte!",50,2,3,1,"Deutsch"],
|
6 |
["Welche Blumen sollte man jemandem zum Valentinstag schenken?",50,1,0,1,"Deutsch"],
|
@@ -31,6 +32,7 @@ task = gr.Interface(
|
|
31 |
],
|
32 |
outputs="text",
|
33 |
title=title,
|
|
|
34 |
examples=examples
|
35 |
)
|
36 |
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
title= "German Flan-T5"
|
4 |
+
desc="Kommunikation mit flan-t5-large auf Deutsch wird intern ins Englische (opus-mt-de-en) und vom Englischen (opus-mt-en-de) übersetzt."
|
5 |
examples = [
|
6 |
["Erzähl mit eine Geschichte!",50,2,3,1,"Deutsch"],
|
7 |
["Welche Blumen sollte man jemandem zum Valentinstag schenken?",50,1,0,1,"Deutsch"],
|
|
|
32 |
],
|
33 |
outputs="text",
|
34 |
title=title,
|
35 |
+
description=desc,
|
36 |
examples=examples
|
37 |
)
|
38 |
|