Commit
·
5c25bbe
1
Parent(s):
ec3a39e
remove compact theme
Browse files
app.py
CHANGED
|
@@ -24,14 +24,12 @@ iface1 = gr.Interface(
|
|
| 24 |
outputs=["image","file"],
|
| 25 |
title="2-D Random Walk",
|
| 26 |
description="Uniform steps along NEWS directions only",
|
| 27 |
-
theme="compact"
|
| 28 |
)
|
| 29 |
iface2 = gr.Interface(
|
| 30 |
fn=multi_agent_walk,
|
| 31 |
inputs=[agent_count,iters_multi, step_size_multi, random_seed_multi],
|
| 32 |
outputs=["image","file"],
|
| 33 |
title="Multi-Agent 2D Random Walk",
|
| 34 |
-
theme="compact"
|
| 35 |
)
|
| 36 |
|
| 37 |
combinedinterface = gr.TabbedInterface([iface1,iface2],['Single Particle Random Walk', 'Multi-Particle Random Walk'])
|
|
|
|
| 24 |
outputs=["image","file"],
|
| 25 |
title="2-D Random Walk",
|
| 26 |
description="Uniform steps along NEWS directions only",
|
|
|
|
| 27 |
)
|
| 28 |
iface2 = gr.Interface(
|
| 29 |
fn=multi_agent_walk,
|
| 30 |
inputs=[agent_count,iters_multi, step_size_multi, random_seed_multi],
|
| 31 |
outputs=["image","file"],
|
| 32 |
title="Multi-Agent 2D Random Walk",
|
|
|
|
| 33 |
)
|
| 34 |
|
| 35 |
combinedinterface = gr.TabbedInterface([iface1,iface2],['Single Particle Random Walk', 'Multi-Particle Random Walk'])
|