Update app.py
Browse files
app.py
CHANGED
|
@@ -215,6 +215,14 @@ def image_classifier(inp):
|
|
| 215 |
|
| 216 |
return labeled_result
|
| 217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 218 |
# gradio code block for input and output
|
| 219 |
with gr.Blocks(theme=gr.themes.Default(primary_hue=page_utils.KALBE_THEME_COLOR, secondary_hue=page_utils.KALBE_THEME_COLOR).set(
|
| 220 |
button_primary_background_fill="*primary_600",
|
|
|
|
| 215 |
|
| 216 |
return labeled_result
|
| 217 |
|
| 218 |
+
# gradio code block for input and output
|
| 219 |
+
with gr.Blocks() as app:
|
| 220 |
+
gr.Markdown("# Skin Cancer Classification")
|
| 221 |
+
|
| 222 |
+
with open('index.html', encoding="utf-8") as f:
|
| 223 |
+
description = f.read()
|
| 224 |
+
|
| 225 |
+
|
| 226 |
# gradio code block for input and output
|
| 227 |
with gr.Blocks(theme=gr.themes.Default(primary_hue=page_utils.KALBE_THEME_COLOR, secondary_hue=page_utils.KALBE_THEME_COLOR).set(
|
| 228 |
button_primary_background_fill="*primary_600",
|