mertkarabacak commited on
Commit
8d7edae
1 Parent(s): 5629ddc

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -391,7 +391,7 @@ with gr.Blocks(title = "NCDB-Meningioma") as demo:
391
 
392
  MGMT_Methylation = gr.Dropdown(label = "MGMT Methylation", choices = ['Unmethylated', 'Methylated'], type = 'index', value = 'Unmethylated')
393
 
394
- Tumor_Size = gr.Dropdown(label = "Tumor Size (mm)", minimum = 1, maximum = 300, step = 1, value = 30)
395
 
396
  Extent_of_Resection = gr.Dropdown(label = 'Extent of Resection', choices = ['No resective surgery was performed', 'Gross total resection'], type = 'index', value = 'Gross total resection')
397
 
 
391
 
392
  MGMT_Methylation = gr.Dropdown(label = "MGMT Methylation", choices = ['Unmethylated', 'Methylated'], type = 'index', value = 'Unmethylated')
393
 
394
+ Tumor_Size = gr.Slider(label = "Tumor Size (mm)", minimum = 1, maximum = 300, step = 1, value = 30)
395
 
396
  Extent_of_Resection = gr.Dropdown(label = 'Extent of Resection', choices = ['No resective surgery was performed', 'Gross total resection'], type = 'index', value = 'Gross total resection')
397