shusain commited on
Commit
ab5e5ec
1 Parent(s): c4a8374

Upload 6 files

Browse files
Files changed (7) hide show
  1. .gitattributes +2 -0
  2. IMG_6545.jpg +0 -0
  3. IMG_7697.jpg +3 -0
  4. IMG_7699.jpg +3 -0
  5. app.py +20 -0
  6. export.pkl +3 -0
  7. requirements.txt +2 -0
.gitattributes CHANGED
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ IMG_7697.jpg filter=lfs diff=lfs merge=lfs -text
36
+ IMG_7699.jpg filter=lfs diff=lfs merge=lfs -text
IMG_6545.jpg ADDED
IMG_7697.jpg ADDED

Git LFS Details

  • SHA256: 29519cfb0492979b448c5ad2a31ca07c86a8e982c8014ed929f918afc2c33f1d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
IMG_7699.jpg ADDED

Git LFS Details

  • SHA256: d939931852e90c108318c69a9accf7c5bd0cca9bc5accea2f8a4fac57707d3f9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.53 MB
app.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from fastai.vision.all import *
3
+ import skimage
4
+
5
+ learn = load_learner('export.pkl')
6
+
7
+ labels = learn.dls.vocab
8
+ def predict(img):
9
+ img = PILImage.create(img)
10
+ pred,pred_idx,probs = learn.predict(img)
11
+ return {labels[i]: float(probs[i]) for i in range(len(labels))}
12
+
13
+ title = "Pet Breed Classifier"
14
+ description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo for Gradio and HuggingFace Spaces."
15
+ article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog/gradio_hf_spaces_tutorial' target='_blank'>Blog post</a></p>"
16
+ examples = ['siamese.jpg']
17
+ interpretation='default'
18
+ enable_queue=True
19
+
20
+ gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
export.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d8fb912871f5b002237203f8cc53d4e7b444e960ed85b8ef2165bf09fde13f8
3
+ size 103054781
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ fastai
2
+ scikit-image