Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from huggingface_hub import from_pretrained_fastai
|
2 |
+
import gradio as gr
|
3 |
+
from fastai.text.all import *
|
4 |
+
|
5 |
+
repo_id = "paascorb/practica8modelo"
|
6 |
+
|
7 |
+
learner = from_pretrained_fastai(repo_id)
|
8 |
+
labels = ["normal", "riesgo"]
|
9 |
+
|
10 |
+
def predict(txt):
|
11 |
+
pred,pred_idx,probs = learner.predict(txt)
|
12 |
+
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
13 |
+
|
14 |
+
# Creamos la interfaz y la lanzamos.
|
15 |
+
gr.Interface(fn=predict, inputs=gr.Textbox(lines=2, placeholder="Escriba su texto aquí..."), outputs=gr.outputs.Label(num_top_classes=2), examples=['He vuelto a vomitar, me siento fatal, pero me veo muy gorda.']).launch(share=False)
|