liaoch commited on
Commit
e673560
·
1 Parent(s): 6ffee83

remove plot labels. They hide useful captioning

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -487,13 +487,13 @@ with gr.Blocks() as demo:
487
  results_output = gr.Textbox(label="Summary Text", interactive=False) # Removed lines=5 to allow auto-scrolling
488
 
489
  gr.Markdown("#### SWR Success Rates Plot")
490
- swr_plot_output = gr.Plot(label="SWR Success Rates")
491
 
492
  gr.Markdown("#### Sample Portfolio Paths Plot")
493
- paths_plot_output = gr.Plot(label="Sample Portfolio Paths")
494
 
495
  gr.Markdown("#### Probability of End Balance >= Initial Investment Plot")
496
- balance_plot_output = gr.Plot(label="Probability of End Balance >= Initial Investment") # New plot output
497
 
498
  gr.Button("Buy Me a Coffee ☕", link="https://buymeacoffee.com/liaoch", variant="primary")
499
 
 
487
  results_output = gr.Textbox(label="Summary Text", interactive=False) # Removed lines=5 to allow auto-scrolling
488
 
489
  gr.Markdown("#### SWR Success Rates Plot")
490
+ swr_plot_output = gr.Plot()
491
 
492
  gr.Markdown("#### Sample Portfolio Paths Plot")
493
+ paths_plot_output = gr.Plot()
494
 
495
  gr.Markdown("#### Probability of End Balance >= Initial Investment Plot")
496
+ balance_plot_output = gr.Plot() # New plot output
497
 
498
  gr.Button("Buy Me a Coffee ☕", link="https://buymeacoffee.com/liaoch", variant="primary")
499