Spaces:
Runtime error
Runtime error
Upload app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AUTOGENERATED! DO NOT EDIT! File to edit: ../../A_Practical_Deep_Learning/Untitled.ipynb.
|
| 2 |
+
|
| 3 |
+
# %% auto 0
|
| 4 |
+
__all__ = ['learn', 'categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
|
| 5 |
+
|
| 6 |
+
# %% ../../A_Practical_Deep_Learning/Untitled.ipynb 1
|
| 7 |
+
from fastai.vision.all import *
|
| 8 |
+
import gradio as gr
|
| 9 |
+
|
| 10 |
+
def is_cat(x): return x[0].isupper()
|
| 11 |
+
|
| 12 |
+
# %% ../../A_Practical_Deep_Learning/Untitled.ipynb 4
|
| 13 |
+
learn = load_learner("model (1).pkl")
|
| 14 |
+
|
| 15 |
+
# %% ../../A_Practical_Deep_Learning/Untitled.ipynb 6
|
| 16 |
+
categories = ('Dog', 'Cat')
|
| 17 |
+
|
| 18 |
+
def classify_image(img):
|
| 19 |
+
pred,idx,probs = learn.predict(img)
|
| 20 |
+
return dict(zip(categories, map(float,probs)))
|
| 21 |
+
|
| 22 |
+
# %% ../../A_Practical_Deep_Learning/Untitled.ipynb 8
|
| 23 |
+
image = gr.components.Image(shape=(192,192))
|
| 24 |
+
label = gr.components.Label()
|
| 25 |
+
# examples = [r"C:\Users\Kush\Downloads\dog.jpg", r"C:\Users\Kush\Downloads\scared-hamster.jpg", r"C:\Users\Kush\Downloads\Converse Welcomes Baby Keem to the Family.png"]
|
| 26 |
+
|
| 27 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
| 28 |
+
intf.launch(inline=False, share=True)
|
| 29 |
+
|
| 30 |
+
# %%
|