silvaKenpachi commited on
Commit
a10547f
·
verified ·
1 Parent(s): 40b914a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
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()