Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
title = "Breast Cancer Prediction"
|
4 |
+
description = "This app predicts breast cancer based on digitized images of a fine needle aspirate (FNA) of a breast mass."
|
5 |
+
|
6 |
+
gr.Interface.load("huggingface/scikit-learn/skops-blog-example", title=title, description=description).launch()
|