initial commit
Browse files- acne.jpg +0 -0
- app.py +21 -0
- requirements.txt +2 -0
- resnet.pkl +3 -0
- resnet.pkl:Zone.Identifier +0 -0
acne.jpg
ADDED
app.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from fastai.vision.all import *
|
3 |
+
import skimage
|
4 |
+
|
5 |
+
learn = load_learner('resnet.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 = "Skin Disease Classifier"
|
14 |
+
description = "A prototype app for classifying common skin diseases, developed with fastai. Created as a demo for Gradio and HuggingFace Spaces."
|
15 |
+
|
16 |
+
examples = ['acne.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),
|
21 |
+
title=title,description=description, examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
fastai
|
2 |
+
scikit-image
|
resnet.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d58fa488627a1907ddd62b96abd83eddf66eb4de6689a74b8c520c6d03603300
|
3 |
+
size 102914453
|
resnet.pkl:Zone.Identifier
ADDED
File without changes
|