Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,7 @@
|
|
1 |
-
pip install gradio==3.50
|
2 |
from huggingface_hub import from_pretrained_fastai
|
3 |
import gradio as gr
|
4 |
from fastai.vision.all import *
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
# repo_id = "YOUR_USERNAME/YOUR_LEARNER_NAME"
|
10 |
repo_id = "allopeap/one-piece"
|
11 |
|
@@ -15,8 +11,8 @@ labels = learner.dls.vocab
|
|
15 |
# Definimos una funci贸n que se encarga de llevar a cabo las predicciones
|
16 |
def predict(img):
|
17 |
#img = PILImage.create(img)
|
18 |
-
pred,pred_idx,probs = learner.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=['luffy.jpg','shanks.png']).launch(share=False)
|
|
|
|
|
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 = "allopeap/one-piece"
|
7 |
|
|
|
11 |
# Definimos una funci贸n que se encarga de llevar a cabo las predicciones
|
12 |
def predict(img):
|
13 |
#img = PILImage.create(img)
|
14 |
+
pred, pred_idx, probs = learner.predict(img)
|
15 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
16 |
|
17 |
# Creamos la interfaz y la lanzamos.
|
18 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(128, 128)), outputs=gr.outputs.Label(num_top_classes=3), examples=['luffy.jpg', 'shanks.png']).launch(share=False)
|