Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from huggingface_hub import from_pretrained_fastai
|
2 |
+
import gradio as gr
|
3 |
+
from fastai.vision.all import *
|
4 |
+
|
5 |
+
repo_id = "paascorb/practica7modelo"
|
6 |
+
|
7 |
+
learner = from_pretrained_fastai(repo_id)
|
8 |
+
labels = ["malo", "medio", "bueno"]
|
9 |
+
|
10 |
+
# Definimos una función que se encarga de llevar a cabo las predicciones
|
11 |
+
def predict(chiste):
|
12 |
+
pred,pred_idx,probs = learner.predict(chiste)
|
13 |
+
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
14 |
+
|
15 |
+
# Creamos la interfaz y la lanzamos.
|
16 |
+
gr.Interface(fn=predict, inputs=gr.Textbox(lines=2, placeholder="Escriba su chiste aquí..."), outputs=gr.outputs.Label(num_top_classes=3)).launch(share=False)
|