File size: 765 Bytes
f9353de
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2a3f88e
 
 
 
f9353de
 
 
2a3f88e
f9353de
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from huggingface_hub import from_pretrained_fastai
import gradio as gr
from fastai.vision.all import *


repo_id = "saruizn/entregable3"

learner = from_pretrained_fastai(repo_id)
#labels = learner.dls.vocab
labels = ['Actualidad','Deportes','Negocios','Ciencia/tecnología']

def predict(txt):
    pred,pred_idx,probs = learner.predict(txt)
    return {labels[i]: float(probs[i]) for i in range(len(labels))}

ejemploActualidad="Actualidad.txt"
ejemploDeportes="Deportes.txt"
ejemploNegocios="Negocios.txt"
ejemploCiencia="Ciencia.txt"

    
# Creamos la interfaz y la lanzamos. 
gr.Interface(fn=predict, inputs="text", outputs=gr.outputs.Label(num_top_classes=3),examples=[ejemploActualidad,ejemploDeportes,ejemploNegocios,ejemploCiencia]).launch(share=False)