Spaces:
Sleeping
Sleeping
dcavadia commited on
Commit ·
9da369d
1
Parent(s): c2d9141
update model name
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import gradio as gr
|
|
| 4 |
import cv2
|
| 5 |
|
| 6 |
|
| 7 |
-
model = load_model('
|
| 8 |
|
| 9 |
# Opening JSON file
|
| 10 |
f = open('dat.json')
|
|
@@ -30,4 +30,4 @@ demo=gr.Interface(fn=Predict,
|
|
| 30 |
title="Skin Disease Classification",
|
| 31 |
description='This Space predict these disease:\n \n1) Acne and Rosacea Photos. \n2) Actinic Keratosis Basal Cell Carcinoma and other Malignant Lesions.\n3) Eczema Photos. \n4) Melanoma Skin Cancer Nevi and Moles.\n5) Psoriasis pictures Lichen Planus and related diseases.\n6) Tinea Ringworm Candidiasis and other Fungal Infections.\n7) Urticaria Hives.\n8) Nail Fungus and other Nail Disease.\n')
|
| 32 |
|
| 33 |
-
demo.launch(debug=True)
|
|
|
|
| 4 |
import cv2
|
| 5 |
|
| 6 |
|
| 7 |
+
model = load_model('model_test2.h5', compile=True)
|
| 8 |
|
| 9 |
# Opening JSON file
|
| 10 |
f = open('dat.json')
|
|
|
|
| 30 |
title="Skin Disease Classification",
|
| 31 |
description='This Space predict these disease:\n \n1) Acne and Rosacea Photos. \n2) Actinic Keratosis Basal Cell Carcinoma and other Malignant Lesions.\n3) Eczema Photos. \n4) Melanoma Skin Cancer Nevi and Moles.\n5) Psoriasis pictures Lichen Planus and related diseases.\n6) Tinea Ringworm Candidiasis and other Fungal Infections.\n7) Urticaria Hives.\n8) Nail Fungus and other Nail Disease.\n')
|
| 32 |
|
| 33 |
+
demo.launch(debug=True)
|