Spaces:
Sleeping
Sleeping
moving around
Browse files
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 |
|