mertkarabacak commited on
Commit
8771170
·
verified ·
1 Parent(s): dce7062

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -260,7 +260,7 @@ with gr.Blocks(title = "NCDB-Chordoma") as demo:
260
 
261
  Histology = gr.Dropdown(label = "Histology", choices = ['Chordoma, NOS', 'Chondroid Chordoma', 'Dedifferentiated Chordoma'], type = 'index', value = 'Chordoma, NOS')
262
 
263
- Primary_Site = gr.Dropdown(label = "Primary Site", choices = ['Sacrum/Pelvis', 'Spine'], type = 'index', value = 'Sacrum/Pelvis')
264
 
265
  Maximum_Tumor_Dimension = gr.Dropdown(label = "Maximum Tumor Dimension", choices = ['0-5 cm', '5-10 cm', '10+ cm'], type = 'index', value = '0-5 cm')
266
 
@@ -270,9 +270,9 @@ with gr.Blocks(title = "NCDB-Chordoma") as demo:
270
 
271
  Surgical_Margins = gr.Dropdown(label = "Surgical Margins", choices = ['No residual tumor', 'Residual tumor', 'No surgery was performed'], type = 'index', value = 'No residual tumor')
272
 
273
- Radiotherapy = gr.Dropdown(label = "Radiotherapy", choices = ['No', 'Yes'], type = 'index', value = 'Yes')
274
 
275
- Chemotherapy = gr.Dropdown(label = "Chemotherapy", choices = ['No', 'Yes'], type = 'index', value = 'Yes')
276
 
277
  with gr.Column():
278
 
 
260
 
261
  Histology = gr.Dropdown(label = "Histology", choices = ['Chordoma, NOS', 'Chondroid Chordoma', 'Dedifferentiated Chordoma'], type = 'index', value = 'Chordoma, NOS')
262
 
263
+ Primary_Site = gr.Dropdown(label = "Primary Site", choices = ['Spine', 'Sacrum/Pelvis'], type = 'index', value = 'Spine')
264
 
265
  Maximum_Tumor_Dimension = gr.Dropdown(label = "Maximum Tumor Dimension", choices = ['0-5 cm', '5-10 cm', '10+ cm'], type = 'index', value = '0-5 cm')
266
 
 
270
 
271
  Surgical_Margins = gr.Dropdown(label = "Surgical Margins", choices = ['No residual tumor', 'Residual tumor', 'No surgery was performed'], type = 'index', value = 'No residual tumor')
272
 
273
+ Radiotherapy = gr.Dropdown(label = "Radiotherapy", choices = ['No', 'Yes'], type = 'index', value = 'No')
274
 
275
+ Chemotherapy = gr.Dropdown(label = "Chemotherapy", choices = ['No', 'Yes'], type = 'index', value = 'No')
276
 
277
  with gr.Column():
278