thov commited on
Commit
8b1271d
1 Parent(s): 7350237

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ def disp_init(num):
63
 
64
  with gr.Blocks() as demo:
65
  with gr.Row() as row1:
66
- slide = gr.Slider(min=0, max=89, value=10, step=1)
67
  with gr.Row() as row2:
68
  slide.release(fn=disp_init, inputs=[slide], outputs=gr.Plot(label='initial image'))
69
  slide.release(fn=disp_prediction, inputs=[slide], outputs=gr.Plot(label='prediction'))
 
63
 
64
  with gr.Blocks() as demo:
65
  with gr.Row() as row1:
66
+ slide = gr.Slider(minimum=0, maximum=89, value=0, step=1, label='inference with validation split data (choose patient)')
67
  with gr.Row() as row2:
68
  slide.release(fn=disp_init, inputs=[slide], outputs=gr.Plot(label='initial image'))
69
  slide.release(fn=disp_prediction, inputs=[slide], outputs=gr.Plot(label='prediction'))