jonathanIckovich commited on
Commit
a7b8d2d
·
1 Parent(s): 8adfb6d
Files changed (5) hide show
  1. ImageDifferentiator.pkl +3 -0
  2. app.py +9 -3
  3. cat.jpg +0 -0
  4. dog.jpg +0 -0
  5. dunno.jpg +0 -0
ImageDifferentiator.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1327a2adf1d43f72b9d2ee2b4bf40a8d073b34fbb4ec76cf765492470adf280e
3
+ size 102892310
app.py CHANGED
@@ -1,7 +1,13 @@
1
  import gradio as gr
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
7
  iface.launch()
 
1
  import gradio as gr
2
+ from fastai.vision.all import *
3
 
4
+ learn = load_learner('ImageDifferentiator.pkl')
5
+ labels = learn.dls.vocab
6
+ def predict(img):
7
+ img = PILImage.create(img)
8
+ pred,pred_idx,probs = learn.predict(img)
9
+ return {labels[i]: float(probs[i]) for i in range(len(labels))}
10
 
11
+
12
+ iface = gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3)).launch(share=True)
13
  iface.launch()
cat.jpg ADDED
dog.jpg ADDED
dunno.jpg ADDED