Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,16 +6,15 @@ from gradio.mix import Series
|
|
6 |
description = "Reguetton spanish songs toxicity classification"
|
7 |
title = "ES-EN Translation / Toxicity classification / EN-ES Translation"
|
8 |
|
9 |
-
translator_es = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-es-en")
|
10 |
story_gen = gr.Interface.load("huggingface/SkolkovoInstitute/roberta_toxicity_classifier")
|
11 |
-
translator_en = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-en-es")
|
12 |
|
13 |
examples = [["La aventura comienza en"]]
|
14 |
|
15 |
-
interface = Series(
|
16 |
title = title,
|
17 |
-
examples=examples
|
18 |
-
inputs = gr.inputs.Textbox(lines = 10)
|
19 |
)
|
20 |
|
21 |
interface.launch()
|
|
|
6 |
description = "Reguetton spanish songs toxicity classification"
|
7 |
title = "ES-EN Translation / Toxicity classification / EN-ES Translation"
|
8 |
|
9 |
+
#translator_es = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-es-en")
|
10 |
story_gen = gr.Interface.load("huggingface/SkolkovoInstitute/roberta_toxicity_classifier")
|
11 |
+
#translator_en = gr.Interface.load("huggingface/Helsinki-NLP/opus-mt-en-es")
|
12 |
|
13 |
examples = [["La aventura comienza en"]]
|
14 |
|
15 |
+
interface = Series( story_gen, description = description,
|
16 |
title = title,
|
17 |
+
examples=examples
|
|
|
18 |
)
|
19 |
|
20 |
interface.launch()
|