Spaces:
Sleeping
Sleeping
Update
Browse files
app.ipynb
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
app.py
CHANGED
@@ -11,15 +11,15 @@ import gradio as gr
|
|
11 |
learn = load_learner('model.pkl')
|
12 |
|
13 |
# %% ../app.ipynb 18
|
14 |
-
categories = ['Godzilla', 'King Kong']
|
15 |
def classify_kaiju(img):
|
16 |
pred,idx,probs=learn.predict(img)
|
17 |
return dict(zip(categories, map(float,probs)))
|
18 |
|
19 |
# %% ../app.ipynb 20
|
20 |
-
image = gr.
|
21 |
-
label = gr.
|
22 |
-
examples = ['Godzilla_1.jpg', '
|
23 |
|
24 |
intf = gr.Interface(fn=classify_kaiju, inputs=image, outputs=label, examples=examples)
|
25 |
intf.launch(inline=False)
|
|
|
11 |
learn = load_learner('model.pkl')
|
12 |
|
13 |
# %% ../app.ipynb 18
|
14 |
+
categories = ['Godzilla', 'King Kong', 'Mothra', 'King Ghidorah', 'Rodan']
|
15 |
def classify_kaiju(img):
|
16 |
pred,idx,probs=learn.predict(img)
|
17 |
return dict(zip(categories, map(float,probs)))
|
18 |
|
19 |
# %% ../app.ipynb 20
|
20 |
+
image = gr.Image()
|
21 |
+
label = gr.Label()
|
22 |
+
examples = ['Godzilla_1.jpg', 'Godzilla_2.jpg', 'KingKong_1.jpg', 'KingKong_2.jpg', 'Mothra_1.jpg', 'Mothra_2.jpg', 'King Ghidorah_1.jpg', 'King Ghidorah_2.jpg', 'Rodan_1.jpg', 'Rodan_2.jpg', ]
|
23 |
|
24 |
intf = gr.Interface(fn=classify_kaiju, inputs=image, outputs=label, examples=examples)
|
25 |
intf.launch(inline=False)
|