merve HF staff commited on
Commit
78d008a
1 Parent(s): c24c1d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,2 +1,6 @@
1
  import gradio as gr
2
- gr.Interface.load("huggingface/scikit-learn/skops-blog-example").launch(debug=True)
 
 
 
 
 
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()