AlvearVanessa commited on
Commit
7d2508a
·
1 Parent(s): 262d043

Create new file

Browse files
Files changed (1) hide show
  1. app.py +21 -0
app.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastai.vision.all import *
2
+ import gradio as gr
3
+
4
+
5
+ # Cargamos el learner
6
+ learn = load_learner('export.pkl')
7
+
8
+ # Definimos las etiquetas de nuestro modelo
9
+ #labels = learn.dls.vocab
10
+
11
+
12
+ # Definimos una función que se encarga de llevar a cabo las predicciones
13
+ def predict(img):
14
+ img = PILImage.create(img)
15
+ pred = learn.predict(img)[0]
16
+ return pred
17
+
18
+
19
+
20
+ # Creamos la interfaz y la lanzamos.
21
+ gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs="text",examples=['anonymized_120036.jpg','anonymized_1210515.jpg']).launch(share=False)