sasha HF Staff commited on
Commit
cd7dd97
Β·
1 Parent(s): 8ed1e58

moving around

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -128,12 +128,6 @@ with gr.Blocks() as demo:
128
  with gr.Row():
129
  with gr.Column(scale=1):
130
  gr.Markdown("## Generate your own plot πŸ“ˆ")
131
- gr.Markdown(
132
- "### Choose from the dropdown lists below to plot different characteristics and find new trends πŸ•΅πŸ»β€β™‚οΈ"
133
- )
134
- gr.Markdown(
135
- "N.B. Not all combinations are possible -- if you get a blank figure, try another combination!"
136
- )
137
  x_choice = gr.Dropdown(
138
  options,
139
  value="Memory",
@@ -171,6 +165,12 @@ with gr.Blocks() as demo:
171
  interactive=True,
172
  )
173
  with gr.Column(scale=3):
 
 
 
 
 
 
174
  fig = generate_figure("Memory", "$/Hour", "provider", True, True)
175
  plt = gr.Plot(fig)
176
 
 
128
  with gr.Row():
129
  with gr.Column(scale=1):
130
  gr.Markdown("## Generate your own plot πŸ“ˆ")
 
 
 
 
 
 
131
  x_choice = gr.Dropdown(
132
  options,
133
  value="Memory",
 
165
  interactive=True,
166
  )
167
  with gr.Column(scale=3):
168
+ gr.Markdown(
169
+ "### Choose from the dropdown lists on the left to plot different characteristics and find new trends πŸ•΅πŸ»β€β™‚οΈ"
170
+ )
171
+ gr.Markdown(
172
+ "N.B. Not all combinations are possible -- if you get a blank figure, try another combination!"
173
+ )
174
  fig = generate_figure("Memory", "$/Hour", "provider", True, True)
175
  plt = gr.Plot(fig)
176