Spaces:
Runtime error
Runtime error
Commit
·
aab6fe4
1
Parent(s):
2edb029
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ def load_agent(model_id_1, model_id_2):
|
|
26 |
# Load the video
|
27 |
video_path_2 = hf_hub_download(model_id_2, filename="replay.mp4")
|
28 |
|
29 |
-
return video_path_1, results_1, video_path_2, results_2
|
30 |
|
31 |
def parse_metrics_accuracy(meta):
|
32 |
if "model-index" not in meta:
|
@@ -60,9 +60,17 @@ gr.Interface(load_agent,
|
|
60 |
label="Model 2",
|
61 |
),
|
62 |
],
|
63 |
-
["video", gr.Textbox(
|
64 |
label="Mean Reward +/- Std Reward",
|
65 |
-
), "video", gr.Textbox(
|
66 |
label="Mean Reward +/- Std Reward",
|
67 |
-
)]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
).launch()
|
|
|
26 |
# Load the video
|
27 |
video_path_2 = hf_hub_download(model_id_2, filename="replay.mp4")
|
28 |
|
29 |
+
return model_id_1, video_path_1, results_1, model_id_2, video_path_2, results_2
|
30 |
|
31 |
def parse_metrics_accuracy(meta):
|
32 |
if "model-index" not in meta:
|
|
|
60 |
label="Model 2",
|
61 |
),
|
62 |
],
|
63 |
+
[ "text", "video", gr.Textbox(
|
64 |
label="Mean Reward +/- Std Reward",
|
65 |
+
), "text", "video", gr.Textbox(
|
66 |
label="Mean Reward +/- Std Reward",
|
67 |
+
)],
|
68 |
+
examples=[
|
69 |
+
["sb3/a2c-AntBulletEnv-v0","sb3/ppo-AntBulletEnv-v0"],
|
70 |
+
["ThomasSimonini/a2c-AntBulletEnv-v0", "sb3/a2c-AntBulletEnv-v0"],
|
71 |
+
["sb3/dqn-SpaceInvadersNoFrameskip-v4", "sb3/a2c-SpaceInvadersNoFrameskip-v4"],
|
72 |
+
["ThomasSimonini/ppo-QbertNoFrameskip-v4","sb3/ppo-QbertNoFrameskip-v4"],
|
73 |
+
],
|
74 |
+
title="Compare Deep Reinforcement Learning agents",
|
75 |
+
description="Type two models id you want to compare"
|
76 |
).launch()
|