dvgodoy commited on
Commit
1915360
·
verified ·
1 Parent(s): e7c88ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -98,9 +98,9 @@ with gr.Blocks(css=css) as demo:
98
  btn = gr.Button('Go!')
99
  with gr.Column(scale=1, min_width=800):
100
  with gr.Row():
101
- ensemble = gr.Image(label="Ensemble Perspective", shape=(300, 300), elem_id="plot_ensemble")
102
- time = gr.Image(label="Time Perspective", shape=(300, 300), elem_id="plot_time")
103
- richest = gr.Image(label="Richest Individual", shape=(300, 300), elem_id="plot_richest")
104
  with gr.Column(scale=1, min_width=800):
105
  with gr.Row():
106
  gr.Markdown('The ensemble perspective shows the average wealth of an individual over time (which may be heavily affected by outliers, that is, an extremely rich individual). That is the expected value of the bet assuming ergodicity (in layman terms, "do over").')
 
98
  btn = gr.Button('Go!')
99
  with gr.Column(scale=1, min_width=800):
100
  with gr.Row():
101
+ ensemble = gr.Image(label="Ensemble Perspective", height=300, width=300, elem_id="plot_ensemble")
102
+ time = gr.Image(label="Time Perspective", height=300, width=300, elem_id="plot_time")
103
+ richest = gr.Image(label="Richest Individual", height=300, width=300, elem_id="plot_richest")
104
  with gr.Column(scale=1, min_width=800):
105
  with gr.Row():
106
  gr.Markdown('The ensemble perspective shows the average wealth of an individual over time (which may be heavily affected by outliers, that is, an extremely rich individual). That is the expected value of the bet assuming ergodicity (in layman terms, "do over").')