igmarco commited on
Commit
d0697b5
·
1 Parent(s): 78d0032

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -6,6 +6,8 @@ from huggingface_hub import from_pretrained_fastai
6
  import gradio as gr
7
  from fastai.vision.all import *
8
 
 
 
9
  # repo_id = "YOUR_USERNAME/YOUR_LEARNER_NAME"
10
  repo_id = "igmarco/intel-image-classification"
11
 
@@ -19,4 +21,5 @@ def predict(img):
19
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
20
 
21
  # Creamos la interfaz y la lanzamos.
22
- gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3),examples=['street.jpg','mountain.jpg']).launch(share=False)
 
 
6
  import gradio as gr
7
  from fastai.vision.all import *
8
 
9
+
10
+
11
  # repo_id = "YOUR_USERNAME/YOUR_LEARNER_NAME"
12
  repo_id = "igmarco/intel-image-classification"
13
 
 
21
  return {labels[i]: float(probs[i]) for i in range(len(labels))}
22
 
23
  # Creamos la interfaz y la lanzamos.
24
+ gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3),examples=['mountain.jpg','street.jpg']).launch(share=False)
25
+