Spaces:
Sleeping
Sleeping
Youngsun Lim commited on
Commit ยท
9b35e7c
1
Parent(s): e880aae
rebuttal
Browse files- app.py +16 -5
- videos_extend_forXavier_YS.json +427 -0
app.py
CHANGED
|
@@ -330,11 +330,11 @@ RESULTS_REPO_ID = "dghadiya/video_eval" # <- ๋ค๊ฐ ์ํ๋ ์ต์ข
์
|
|
| 330 |
REPO_TYPE = "dataset"
|
| 331 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 332 |
RESULTS_FILE = "results_extend.csv"
|
| 333 |
-
TOTAL_PER_PARTICIPANT =
|
| 334 |
|
| 335 |
|
| 336 |
# videos.json ์์: {"url": "...mp4", "id": "BodyWeightSquats__XXXX.mp4", "action": "BodyWeightSquats"}
|
| 337 |
-
with open("
|
| 338 |
V = json.load(f)
|
| 339 |
|
| 340 |
api = HfApi()
|
|
@@ -423,11 +423,22 @@ def _load_eval_counts():
|
|
| 423 |
continue
|
| 424 |
return counts
|
| 425 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 426 |
def _get_video_id(v: dict) -> str:
|
| 427 |
-
if
|
| 428 |
return v["id"]
|
| 429 |
-
|
| 430 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 431 |
|
| 432 |
def _read_csv_bytes():
|
| 433 |
try:
|
|
|
|
| 330 |
REPO_TYPE = "dataset"
|
| 331 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
| 332 |
RESULTS_FILE = "results_extend.csv"
|
| 333 |
+
TOTAL_PER_PARTICIPANT = 85 # ๋ชฉํ ํ๊ฐ ๊ฐ์(์ธ์
๊ธฐ์ค)
|
| 334 |
|
| 335 |
|
| 336 |
# videos.json ์์: {"url": "...mp4", "id": "BodyWeightSquats__XXXX.mp4", "action": "BodyWeightSquats"}
|
| 337 |
+
with open("videos_extend_forXavier_YS.json", "r", encoding="utf-8") as f:
|
| 338 |
V = json.load(f)
|
| 339 |
|
| 340 |
api = HfApi()
|
|
|
|
| 423 |
continue
|
| 424 |
return counts
|
| 425 |
|
| 426 |
+
# def _get_video_id(v: dict) -> str:
|
| 427 |
+
# if "id" in v and v["id"]:
|
| 428 |
+
# return v["id"]
|
| 429 |
+
# # id๊ฐ ์์ผ๋ฉด URL ํ์ผ๋ช
์ผ๋ก ๋์ฒด
|
| 430 |
+
# return os.path.basename(v.get("url", ""))
|
| 431 |
def _get_video_id(v: dict) -> str:
|
| 432 |
+
if v.get("id"):
|
| 433 |
return v["id"]
|
| 434 |
+
|
| 435 |
+
url = v.get("url", "")
|
| 436 |
+
marker = f"/resolve/{BRANCH}/"
|
| 437 |
+
if marker in url:
|
| 438 |
+
return url.split(marker, 1)[1] # <-- repo-relative๋ก ์ ์ฅ
|
| 439 |
+
|
| 440 |
+
# ๋ง์ง๋ง fallback (๊ฐ๋ฅํ๋ฉด ์ฐ์ง ์๊ฒ json์ ๊ณ ์น๋ ๊ฒ best)
|
| 441 |
+
return url.strip()
|
| 442 |
|
| 443 |
def _read_csv_bytes():
|
| 444 |
try:
|
videos_extend_forXavier_YS.json
ADDED
|
@@ -0,0 +1,427 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/JugglingBalls/v_JugglingBalls_g08_c02.mp4",
|
| 4 |
+
"id": "CogvideoX/JugglingBalls/v_JugglingBalls_g08_c02.mp4",
|
| 5 |
+
"action": "JugglingBalls"
|
| 6 |
+
},
|
| 7 |
+
{
|
| 8 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 9 |
+
"id": "CogvideoX/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 10 |
+
"action": "JugglingBalls"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/JugglingBalls/v_JugglingBalls_g15_c01.mp4",
|
| 14 |
+
"id": "CogvideoX/JugglingBalls/v_JugglingBalls_g15_c01.mp4",
|
| 15 |
+
"action": "JugglingBalls"
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/Lunges/v_Lunges_g04_c03.mp4",
|
| 19 |
+
"id": "CogvideoX/Lunges/v_Lunges_g04_c03.mp4",
|
| 20 |
+
"action": "Lunges"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/Lunges/v_Lunges_g06_c02.mp4",
|
| 24 |
+
"id": "CogvideoX/Lunges/v_Lunges_g06_c02.mp4",
|
| 25 |
+
"action": "Lunges"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/Lunges/v_Lunges_g18_c01.mp4",
|
| 29 |
+
"id": "CogvideoX/Lunges/v_Lunges_g18_c01.mp4",
|
| 30 |
+
"action": "Lunges"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/Lunges/v_Lunges_g20_c04.mp4",
|
| 34 |
+
"id": "CogvideoX/Lunges/v_Lunges_g20_c04.mp4",
|
| 35 |
+
"action": "Lunges"
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 39 |
+
"id": "CogvideoX/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 40 |
+
"action": "PlayingGuitar"
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 44 |
+
"id": "CogvideoX/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 45 |
+
"action": "PlayingGuitar"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/PlayingGuitar/v_PlayingGuitar_g08_c04.mp4",
|
| 49 |
+
"id": "CogvideoX/PlayingGuitar/v_PlayingGuitar_g08_c04.mp4",
|
| 50 |
+
"action": "PlayingGuitar"
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 54 |
+
"id": "CogvideoX/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 55 |
+
"action": "RopeClimbing"
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 59 |
+
"id": "CogvideoX/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 60 |
+
"action": "RopeClimbing"
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/CogvideoX/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 64 |
+
"id": "CogvideoX/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 65 |
+
"action": "RopeClimbing"
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/GolfSwing/v_GolfSwing_g09_c02.mp4",
|
| 69 |
+
"id": "Hunyuan/GolfSwing/v_GolfSwing_g09_c02.mp4",
|
| 70 |
+
"action": "GolfSwing"
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/GolfSwing/v_GolfSwing_g13_c04.mp4",
|
| 74 |
+
"id": "Hunyuan/GolfSwing/v_GolfSwing_g13_c04.mp4",
|
| 75 |
+
"action": "GolfSwing"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/GolfSwing/v_GolfSwing_g19_c01.mp4",
|
| 79 |
+
"id": "Hunyuan/GolfSwing/v_GolfSwing_g19_c01.mp4",
|
| 80 |
+
"action": "GolfSwing"
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/GolfSwing/v_GolfSwing_g22_c03.mp4",
|
| 84 |
+
"id": "Hunyuan/GolfSwing/v_GolfSwing_g22_c03.mp4",
|
| 85 |
+
"action": "GolfSwing"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 89 |
+
"id": "Hunyuan/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 90 |
+
"action": "JugglingBalls"
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/JugglingBalls/v_JugglingBalls_g06_c06.mp4",
|
| 94 |
+
"id": "Hunyuan/JugglingBalls/v_JugglingBalls_g06_c06.mp4",
|
| 95 |
+
"action": "JugglingBalls"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 99 |
+
"id": "Hunyuan/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 100 |
+
"action": "JugglingBalls"
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/JugglingBalls/v_JugglingBalls_g15_c01.mp4",
|
| 104 |
+
"id": "Hunyuan/JugglingBalls/v_JugglingBalls_g15_c01.mp4",
|
| 105 |
+
"action": "JugglingBalls"
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/Lunges/v_Lunges_g06_c02.mp4",
|
| 109 |
+
"id": "Hunyuan/Lunges/v_Lunges_g06_c02.mp4",
|
| 110 |
+
"action": "Lunges"
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/Lunges/v_Lunges_g20_c04.mp4",
|
| 114 |
+
"id": "Hunyuan/Lunges/v_Lunges_g20_c04.mp4",
|
| 115 |
+
"action": "Lunges"
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 119 |
+
"id": "Hunyuan/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 120 |
+
"action": "PlayingGuitar"
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 124 |
+
"id": "Hunyuan/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 125 |
+
"action": "RopeClimbing"
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/RopeClimbing/v_RopeClimbing_g05_c05.mp4",
|
| 129 |
+
"id": "Hunyuan/RopeClimbing/v_RopeClimbing_g05_c05.mp4",
|
| 130 |
+
"action": "RopeClimbing"
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 134 |
+
"id": "Hunyuan/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 135 |
+
"action": "RopeClimbing"
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Hunyuan/RopeClimbing/v_RopeClimbing_g24_c04.mp4",
|
| 139 |
+
"id": "Hunyuan/RopeClimbing/v_RopeClimbing_g24_c04.mp4",
|
| 140 |
+
"action": "RopeClimbing"
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/GolfSwing/v_GolfSwing_g01_c01.mp4",
|
| 144 |
+
"id": "Opensora/GolfSwing/v_GolfSwing_g01_c01.mp4",
|
| 145 |
+
"action": "GolfSwing"
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/GolfSwing/v_GolfSwing_g13_c04.mp4",
|
| 149 |
+
"id": "Opensora/GolfSwing/v_GolfSwing_g13_c04.mp4",
|
| 150 |
+
"action": "GolfSwing"
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/GolfSwing/v_GolfSwing_g19_c01.mp4",
|
| 154 |
+
"id": "Opensora/GolfSwing/v_GolfSwing_g19_c01.mp4",
|
| 155 |
+
"action": "GolfSwing"
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/JugglingBalls/v_JugglingBalls_g02_c05.mp4",
|
| 159 |
+
"id": "Opensora/JugglingBalls/v_JugglingBalls_g02_c05.mp4",
|
| 160 |
+
"action": "JugglingBalls"
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/JugglingBalls/v_JugglingBalls_g06_c06.mp4",
|
| 164 |
+
"id": "Opensora/JugglingBalls/v_JugglingBalls_g06_c06.mp4",
|
| 165 |
+
"action": "JugglingBalls"
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 169 |
+
"id": "Opensora/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 170 |
+
"action": "JugglingBalls"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/Lunges/v_Lunges_g06_c02.mp4",
|
| 174 |
+
"id": "Opensora/Lunges/v_Lunges_g06_c02.mp4",
|
| 175 |
+
"action": "Lunges"
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/Lunges/v_Lunges_g12_c04.mp4",
|
| 179 |
+
"id": "Opensora/Lunges/v_Lunges_g12_c04.mp4",
|
| 180 |
+
"action": "Lunges"
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 184 |
+
"id": "Opensora/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 185 |
+
"action": "PlayingGuitar"
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/PlayingGuitar/v_PlayingGuitar_g17_c07.mp4",
|
| 189 |
+
"id": "Opensora/PlayingGuitar/v_PlayingGuitar_g17_c07.mp4",
|
| 190 |
+
"action": "PlayingGuitar"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 194 |
+
"id": "Opensora/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 195 |
+
"action": "RopeClimbing"
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 199 |
+
"id": "Opensora/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 200 |
+
"action": "RopeClimbing"
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 204 |
+
"id": "Opensora/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 205 |
+
"action": "RopeClimbing"
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Opensora/RopeClimbing/v_RopeClimbing_g20_c02.mp4",
|
| 209 |
+
"id": "Opensora/RopeClimbing/v_RopeClimbing_g20_c02.mp4",
|
| 210 |
+
"action": "RopeClimbing"
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/GolfSwing/v_GolfSwing_g01_c01.mp4",
|
| 214 |
+
"id": "RunwayGen4/GolfSwing/v_GolfSwing_g01_c01.mp4",
|
| 215 |
+
"action": "GolfSwing"
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/GolfSwing/v_GolfSwing_g19_c01.mp4",
|
| 219 |
+
"id": "RunwayGen4/GolfSwing/v_GolfSwing_g19_c01.mp4",
|
| 220 |
+
"action": "GolfSwing"
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/GolfSwing/v_GolfSwing_g22_c03.mp4",
|
| 224 |
+
"id": "RunwayGen4/GolfSwing/v_GolfSwing_g22_c03.mp4",
|
| 225 |
+
"action": "GolfSwing"
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 229 |
+
"id": "RunwayGen4/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 230 |
+
"action": "JugglingBalls"
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/Lunges/v_Lunges_g06_c02.mp4",
|
| 234 |
+
"id": "RunwayGen4/Lunges/v_Lunges_g06_c02.mp4",
|
| 235 |
+
"action": "Lunges"
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/Lunges/v_Lunges_g12_c04.mp4",
|
| 239 |
+
"id": "RunwayGen4/Lunges/v_Lunges_g12_c04.mp4",
|
| 240 |
+
"action": "Lunges"
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/Lunges/v_Lunges_g20_c02.mp4",
|
| 244 |
+
"id": "RunwayGen4/Lunges/v_Lunges_g20_c02.mp4",
|
| 245 |
+
"action": "Lunges"
|
| 246 |
+
},
|
| 247 |
+
{
|
| 248 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/Lunges/v_Lunges_g20_c04.mp4",
|
| 249 |
+
"id": "RunwayGen4/Lunges/v_Lunges_g20_c04.mp4",
|
| 250 |
+
"action": "Lunges"
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 254 |
+
"id": "RunwayGen4/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 255 |
+
"action": "PlayingGuitar"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 259 |
+
"id": "RunwayGen4/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 260 |
+
"action": "PlayingGuitar"
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 264 |
+
"id": "RunwayGen4/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 265 |
+
"action": "RopeClimbing"
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 269 |
+
"id": "RunwayGen4/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 270 |
+
"action": "RopeClimbing"
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/RunwayGen4/RopeClimbing/v_RopeClimbing_g24_c04.mp4",
|
| 274 |
+
"id": "RunwayGen4/RopeClimbing/v_RopeClimbing_g24_c04.mp4",
|
| 275 |
+
"action": "RopeClimbing"
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/GolfSwing/v_GolfSwing_g22_c02.mp4",
|
| 279 |
+
"id": "Wan2.1/GolfSwing/v_GolfSwing_g22_c02.mp4",
|
| 280 |
+
"action": "GolfSwing"
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 284 |
+
"id": "Wan2.1/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 285 |
+
"action": "JugglingBalls"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/JugglingBalls/v_JugglingBalls_g06_c06.mp4",
|
| 289 |
+
"id": "Wan2.1/JugglingBalls/v_JugglingBalls_g06_c06.mp4",
|
| 290 |
+
"action": "JugglingBalls"
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 294 |
+
"id": "Wan2.1/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 295 |
+
"action": "JugglingBalls"
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/Lunges/v_Lunges_g04_c03.mp4",
|
| 299 |
+
"id": "Wan2.1/Lunges/v_Lunges_g04_c03.mp4",
|
| 300 |
+
"action": "Lunges"
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/Lunges/v_Lunges_g20_c02.mp4",
|
| 304 |
+
"id": "Wan2.1/Lunges/v_Lunges_g20_c02.mp4",
|
| 305 |
+
"action": "Lunges"
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/PlayingGuitar/v_PlayingGuitar_g02_c02.mp4",
|
| 309 |
+
"id": "Wan2.1/PlayingGuitar/v_PlayingGuitar_g02_c02.mp4",
|
| 310 |
+
"action": "PlayingGuitar"
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 314 |
+
"id": "Wan2.1/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 315 |
+
"action": "PlayingGuitar"
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/PlayingGuitar/v_PlayingGuitar_g08_c04.mp4",
|
| 319 |
+
"id": "Wan2.1/PlayingGuitar/v_PlayingGuitar_g08_c04.mp4",
|
| 320 |
+
"action": "PlayingGuitar"
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/PlayingGuitar/v_PlayingGuitar_g17_c07.mp4",
|
| 324 |
+
"id": "Wan2.1/PlayingGuitar/v_PlayingGuitar_g17_c07.mp4",
|
| 325 |
+
"action": "PlayingGuitar"
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 329 |
+
"id": "Wan2.1/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 330 |
+
"action": "RopeClimbing"
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 334 |
+
"id": "Wan2.1/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 335 |
+
"action": "RopeClimbing"
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 339 |
+
"id": "Wan2.1/RopeClimbing/v_RopeClimbing_g16_c05.mp4",
|
| 340 |
+
"action": "RopeClimbing"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.1/RopeClimbing/v_RopeClimbing_g20_c02.mp4",
|
| 344 |
+
"id": "Wan2.1/RopeClimbing/v_RopeClimbing_g20_c02.mp4",
|
| 345 |
+
"action": "RopeClimbing"
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/GolfSwing/v_GolfSwing_g01_c01.mp4",
|
| 349 |
+
"id": "Wan2.2/GolfSwing/v_GolfSwing_g01_c01.mp4",
|
| 350 |
+
"action": "GolfSwing"
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/GolfSwing/v_GolfSwing_g22_c02.mp4",
|
| 354 |
+
"id": "Wan2.2/GolfSwing/v_GolfSwing_g22_c02.mp4",
|
| 355 |
+
"action": "GolfSwing"
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/GolfSwing/v_GolfSwing_g22_c03.mp4",
|
| 359 |
+
"id": "Wan2.2/GolfSwing/v_GolfSwing_g22_c03.mp4",
|
| 360 |
+
"action": "GolfSwing"
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 364 |
+
"id": "Wan2.2/JugglingBalls/v_JugglingBalls_g02_c02.mp4",
|
| 365 |
+
"action": "JugglingBalls"
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 369 |
+
"id": "Wan2.2/JugglingBalls/v_JugglingBalls_g11_c02.mp4",
|
| 370 |
+
"action": "JugglingBalls"
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/JugglingBalls/v_JugglingBalls_g15_c01.mp4",
|
| 374 |
+
"id": "Wan2.2/JugglingBalls/v_JugglingBalls_g15_c01.mp4",
|
| 375 |
+
"action": "JugglingBalls"
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/Lunges/v_Lunges_g06_c02.mp4",
|
| 379 |
+
"id": "Wan2.2/Lunges/v_Lunges_g06_c02.mp4",
|
| 380 |
+
"action": "Lunges"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/Lunges/v_Lunges_g12_c04.mp4",
|
| 384 |
+
"id": "Wan2.2/Lunges/v_Lunges_g12_c04.mp4",
|
| 385 |
+
"action": "Lunges"
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/Lunges/v_Lunges_g18_c01.mp4",
|
| 389 |
+
"id": "Wan2.2/Lunges/v_Lunges_g18_c01.mp4",
|
| 390 |
+
"action": "Lunges"
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 394 |
+
"id": "Wan2.2/PlayingGuitar/v_PlayingGuitar_g03_c07.mp4",
|
| 395 |
+
"action": "PlayingGuitar"
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 399 |
+
"id": "Wan2.2/PlayingGuitar/v_PlayingGuitar_g08_c02.mp4",
|
| 400 |
+
"action": "PlayingGuitar"
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/PlayingGuitar/v_PlayingGuitar_g08_c04.mp4",
|
| 404 |
+
"id": "Wan2.2/PlayingGuitar/v_PlayingGuitar_g08_c04.mp4",
|
| 405 |
+
"action": "PlayingGuitar"
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/PlayingGuitar/v_PlayingGuitar_g17_c07.mp4",
|
| 409 |
+
"id": "Wan2.2/PlayingGuitar/v_PlayingGuitar_g17_c07.mp4",
|
| 410 |
+
"action": "PlayingGuitar"
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 414 |
+
"id": "Wan2.2/RopeClimbing/v_RopeClimbing_g04_c02.mp4",
|
| 415 |
+
"action": "RopeClimbing"
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 419 |
+
"id": "Wan2.2/RopeClimbing/v_RopeClimbing_g10_c03.mp4",
|
| 420 |
+
"action": "RopeClimbing"
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"url": "https://huggingface.co/datasets/dghadiya/video_eval_extend/resolve/main/Wan2.2/RopeClimbing/v_RopeClimbing_g24_c04.mp4",
|
| 424 |
+
"id": "Wan2.2/RopeClimbing/v_RopeClimbing_g24_c04.mp4",
|
| 425 |
+
"action": "RopeClimbing"
|
| 426 |
+
}
|
| 427 |
+
]
|