SerdarHelli commited on
Commit
db96a1e
1 Parent(s): 487703e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -2,7 +2,8 @@
2
 
3
  import gradio as gr
4
 
5
-
6
- description="For More Information , Check Out Model Card"
7
  article = "This study was made by S.Serdar Helli using HF Transformers ConvNext",
8
- gr.Interface.load("huggingface/SerdarHelli/ThyroidTumorClassificationModel",description=description,article=article).launch()
 
 
2
 
3
  import gradio as gr
4
 
5
+ title="Thyroid Tumor Classification On UltrasonImages"
6
+ description="For More Information , Check Out Our Model Card"
7
  article = "This study was made by S.Serdar Helli using HF Transformers ConvNext",
8
+ gr.Interface.load("huggingface/SerdarHelli/ThyroidTumorClassificationModel",title=title,
9
+ inputs= [gr.inputs.Image(shape=(224,224))],description=description,article=article).launch()