hedtorresca commited on
Commit
3a1ea0c
verified
1 Parent(s): 002bb0f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -20
app.py CHANGED
@@ -1,26 +1,16 @@
1
  import gradio as gr
2
- from transformers import Pipeline
3
 
4
- pipe = Pipeline("Classification", model="hedtorresca/Multilingual-MiniLM-L12-H384-fine-tunning2")
5
 
6
- # Definir la funci贸n de inferencia
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
- # Crear la interfaz de Gradio
13
- iface = gr.Interface(
14
- fn=classify_message,
15
- inputs=[
16
- gr.inputs.Dropdown(["Unidad de Negocio 1", "Unidad de Negocio 2", "Unidad de Negocio 3"], label="Unidad de Negocio"),
17
- gr.inputs.Radio(["Correo", "SMS"], label="Canal de Comunicaci贸n"),
18
- gr.inputs.Textbox(lines=2, placeholder="Escribe el asunto o copy del mensaje aqu铆...", label="Asunto o Copy")
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
- # Lanzar la interfaz
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()