Update app.py
Browse files
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",
|
102 |
-
time = gr.Image(label="Time Perspective",
|
103 |
-
richest = gr.Image(label="Richest Individual",
|
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").')
|