Spaces:
Runtime error
Runtime error
new app
Browse files
app.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from fastai.vision.all import *
|
| 2 |
+
import gradio as gr
|
| 3 |
+
|
| 4 |
+
learn = load_learner("export.pkl")
|
| 5 |
+
|
| 6 |
+
categories = ("Acne", "Eczema")
|
| 7 |
+
|
| 8 |
+
def classify_image(img):
|
| 9 |
+
pred,idx,probs = learn.predict(img)
|
| 10 |
+
return dict(zip(categories, map(float,probs)))
|
| 11 |
+
|
| 12 |
+
image = gr.inputs.Image(shape=(192,192))
|
| 13 |
+
label = gr.outputs.Label()
|
| 14 |
+
examples = ['acne.png','eczema.png']
|
| 15 |
+
title = 'Acne and Eczema Predictor'
|
| 16 |
+
description = 'This app predicts skin cancer. For reference only.'
|
| 17 |
+
article = "Author: <a href=\"https://huggingface.co/evawade17\">Eva Wade</a>. "
|
| 18 |
+
|
| 19 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title=title, description=description, article=article)
|
| 20 |
+
intf.launch(inline=False)
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
#test
|