iamacaru commited on
Commit
16dd7d7
verified
1 Parent(s): 7c09951

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from huggingface_hub import from_pretrained_fastai
2
+ import gradio as gr
3
+ from fastai.vision.all import *
4
+
5
+ # repo_id = "YOUR_USERNAME/YOUR_LEARNER_NAME"
6
+ repo_id = "iamacaru/climate"
7
+
8
+ learner = from_pretrained_fastai(repo_id)
9
+ labels = learner.dls.vocab
10
+
11
+ # Definimos una funci贸n que se encarga de llevar a cabo las predicciones
12
+ def predict(text):
13
+ pred,pred_idx,probs = learner.predict(text)
14
+ return {labels[i]: float(probs[i]) for i in range(len(labels))}
15
+
16
+ # Creamos la interfaz y la lanzamos.
17
+ gr.Interface(fn=predict, inputs=gr.inputs.Textbox(lines=2, placeholder="Escribe aqu铆..."), outputs=gr.outputs.Label(num_top_classes=3)).launch(share=False)