sasha HF Staff commited on
Commit
bdc79a5
·
1 Parent(s): ce8f881

confused again

Browse files
Files changed (1) hide show
  1. app.py +20 -16
app.py CHANGED
@@ -81,24 +81,28 @@ with gr.Blocks() as demo:
81
  gr.Markdown("TODO")
82
  with gr.Row():
83
  gr.Markdown("### Energy Data")
84
- with gr.Column():
85
- gr.Markdown(
86
- "Double click the names of cloud providers to see the trend per company"
87
- )
88
- plt1 = gr.Plot(tdp_fig)
89
- with gr.Column():
90
- gr.Markdown("Double click the names of GPU models to see the trends per GPU")
91
- plt1 = gr.Plot(tdp_fig_gpu)
 
 
92
  with gr.Row():
93
  gr.Markdown("### Cost Data")
94
- with gr.Column():
95
- gr.Markdown(
96
- "Double click the names of cloud providers to see the trend per company"
97
- )
98
- plt1 = gr.Plot(cost_fig)
99
- with gr.Column():
100
- gr.Markdown("Double click the names of GPU models to see the trends per GPU")
101
- plt1 = gr.Plot(cost_fig_gpu)
 
 
102
  demo.launch()
103
 
104
  # with gr.Row():
 
81
  gr.Markdown("TODO")
82
  with gr.Row():
83
  gr.Markdown("### Energy Data")
84
+ with gr.Column():
85
+ gr.Markdown(
86
+ "Double click the names of cloud providers to see the trend per company"
87
+ )
88
+ plt1 = gr.Plot(tdp_fig)
89
+ with gr.Column():
90
+ gr.Markdown(
91
+ "Double click the names of GPU models to see the trends per GPU"
92
+ )
93
+ plt1 = gr.Plot(tdp_fig_gpu)
94
  with gr.Row():
95
  gr.Markdown("### Cost Data")
96
+ with gr.Column():
97
+ gr.Markdown(
98
+ "Double click the names of cloud providers to see the trend per company"
99
+ )
100
+ plt1 = gr.Plot(cost_fig)
101
+ with gr.Column():
102
+ gr.Markdown(
103
+ "Double click the names of GPU models to see the trends per GPU"
104
+ )
105
+ plt1 = gr.Plot(cost_fig_gpu)
106
  demo.launch()
107
 
108
  # with gr.Row():