Update app.py
Browse files
app.py
CHANGED
@@ -1,26 +1,16 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import Pipeline
|
3 |
|
4 |
-
|
5 |
|
6 |
-
|
7 |
-
def classify_message(ues_detallada, medio_de_comunicacion, asunto_o_copy):
|
8 |
-
combined = f"{ues_detallada} por {medio_de_comunicacion}. {asunto_o_copy}"
|
9 |
-
prediction = pipe(combined)
|
10 |
-
return "Comercial" if prediction[0]['label'] == 'LABEL_0' else "Informativo"
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
],
|
20 |
-
outputs="text",
|
21 |
-
title="Clasificador de Campa帽as",
|
22 |
-
description="Selecciona una unidad de negocio, un canal de comunicaci贸n y escribe un mensaje para clasificar si es comercial o informativo."
|
23 |
)
|
24 |
|
25 |
-
|
26 |
-
iface.launch()
|
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
+
from transformers import pipeline
|
4 |
|
5 |
+
pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-en-es")
|
|
|
|
|
|
|
|
|
6 |
|
7 |
+
def predict(text):
|
8 |
+
return pipe(text)[0]["translation_text"]
|
9 |
+
|
10 |
+
demo = gr.Interface(
|
11 |
+
fn=predict,
|
12 |
+
inputs='text',
|
13 |
+
outputs='text',
|
|
|
|
|
|
|
|
|
14 |
)
|
15 |
|
16 |
+
demo.launch()
|
|