Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
62f5658
1
Parent(s):
e8d65b1
update heatmaps and other visualizations
Browse files- arena_elo/elo_rating/elo_analysis.py +12 -0
- arena_elo/results/20240602/clean_battle_image_editing.json +0 -0
- arena_elo/results/20240602/clean_battle_image_editing_average_win_rate_bar.jpg +0 -0
- arena_elo/results/20240602/clean_battle_image_editing_battle_count_heatmap.jpg +0 -0
- arena_elo/results/20240602/clean_battle_image_editing_bootstrap_elo_rating.jpg +0 -0
- arena_elo/results/20240602/clean_battle_image_editing_win_fraction_heatmap.jpg +0 -0
- arena_elo/results/20240602/clean_battle_t2i_generation.json +0 -0
- arena_elo/results/20240602/clean_battle_t2i_generation_average_win_rate_bar.jpg +0 -0
- arena_elo/results/20240602/clean_battle_t2i_generation_battle_count_heatmap.jpg +0 -0
- arena_elo/results/20240602/clean_battle_t2i_generation_bootstrap_elo_rating.jpg +0 -0
- arena_elo/results/20240602/clean_battle_t2i_generation_win_fraction_heatmap.jpg +0 -0
- arena_elo/results/20240602/clean_battle_video_generation.json +0 -0
- arena_elo/results/20240602/clean_battle_video_generation_average_win_rate_bar.jpg +0 -0
- arena_elo/results/20240602/clean_battle_video_generation_battle_count_heatmap.jpg +0 -0
- arena_elo/results/20240602/clean_battle_video_generation_bootstrap_elo_rating.jpg +0 -0
- arena_elo/results/20240602/clean_battle_video_generation_win_fraction_heatmap.jpg +0 -0
- arena_elo/results/20240602/elo_results_image_editing.pkl +3 -0
- arena_elo/results/20240602/elo_results_t2i_generation.pkl +3 -0
- arena_elo/results/20240602/elo_results_video_generation.pkl +3 -0
- arena_elo/results/20240602/image_editing_leaderboard.csv +10 -0
- arena_elo/results/20240602/t2i_generation_leaderboard.csv +12 -0
- arena_elo/results/20240602/video_generation_leaderboard.csv +9 -0
- arena_elo/results/latest/clean_battle_image_editing.json +8 -0
- arena_elo/results/latest/clean_battle_t2i_generation.json +16 -0
- arena_elo/results/latest/clean_battle_video_generation.json +872 -0
- arena_elo/results/latest/elo_results_image_editing.pkl +2 -2
- arena_elo/results/latest/elo_results_t2i_generation.pkl +2 -2
- arena_elo/results/latest/elo_results_video_generation.pkl +2 -2
- arena_elo/results/latest/image_editing_leaderboard.csv +9 -9
- arena_elo/results/latest/t2i_generation_leaderboard.csv +11 -11
- arena_elo/results/latest/video_generation_leaderboard.csv +8 -8
- requirements.txt +1 -4
- serve/leaderboard.py +36 -7
arena_elo/elo_rating/elo_analysis.py
CHANGED
|
@@ -364,6 +364,18 @@ if __name__ == "__main__":
|
|
| 364 |
pretty_print_elo_rating(anony_results["elo_rating_final"])
|
| 365 |
print(f"Annoy last update : {anony_results['last_updated_datetime']}")
|
| 366 |
print(f"Full last update : {full_results['last_updated_datetime']}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 367 |
|
| 368 |
last_updated_tstamp = full_results["last_updated_tstamp"]
|
| 369 |
cutoff_date = datetime.datetime.fromtimestamp(
|
|
|
|
| 364 |
pretty_print_elo_rating(anony_results["elo_rating_final"])
|
| 365 |
print(f"Annoy last update : {anony_results['last_updated_datetime']}")
|
| 366 |
print(f"Full last update : {full_results['last_updated_datetime']}")
|
| 367 |
+
|
| 368 |
+
|
| 369 |
+
# save heatmap results in the same directory of the cleaned battle file
|
| 370 |
+
win_fraction_heatmap_file = args.clean_battle_file.replace(".json", "_win_fraction_heatmap.jpg")
|
| 371 |
+
battle_count_heatmap_file = args.clean_battle_file.replace(".json", "_battle_count_heatmap.jpg")
|
| 372 |
+
average_win_rate_bar_file = args.clean_battle_file.replace(".json", "_average_win_rate_bar.jpg")
|
| 373 |
+
bootstrap_elo_rating_file = args.clean_battle_file.replace(".json", "_bootstrap_elo_rating.jpg")
|
| 374 |
+
anony_results["win_fraction_heatmap"].write_image(win_fraction_heatmap_file)
|
| 375 |
+
anony_results["battle_count_heatmap"].write_image(battle_count_heatmap_file)
|
| 376 |
+
anony_results["average_win_rate_bar"].write_image(average_win_rate_bar_file)
|
| 377 |
+
anony_results["bootstrap_elo_rating"].write_image(bootstrap_elo_rating_file)
|
| 378 |
+
|
| 379 |
|
| 380 |
last_updated_tstamp = full_results["last_updated_tstamp"]
|
| 381 |
cutoff_date = datetime.datetime.fromtimestamp(
|
arena_elo/results/20240602/clean_battle_image_editing.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240602/clean_battle_image_editing_average_win_rate_bar.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_image_editing_battle_count_heatmap.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_image_editing_bootstrap_elo_rating.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_image_editing_win_fraction_heatmap.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_t2i_generation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240602/clean_battle_t2i_generation_average_win_rate_bar.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_t2i_generation_battle_count_heatmap.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_t2i_generation_bootstrap_elo_rating.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_t2i_generation_win_fraction_heatmap.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_video_generation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240602/clean_battle_video_generation_average_win_rate_bar.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_video_generation_battle_count_heatmap.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_video_generation_bootstrap_elo_rating.jpg
ADDED
|
arena_elo/results/20240602/clean_battle_video_generation_win_fraction_heatmap.jpg
ADDED
|
arena_elo/results/20240602/elo_results_image_editing.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f987c276a9f91055a204fee98a63f32895c94264e3a4fcc41b84776592763e6f
|
| 3 |
+
size 62362
|
arena_elo/results/20240602/elo_results_t2i_generation.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:453ed9ef347f96da1353a71fd654e32ed3921d424624a2ec84bade0357e443dc
|
| 3 |
+
size 68024
|
arena_elo/results/20240602/elo_results_video_generation.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c204c041f0dd9dc27962e14f5b046d931020fe542ef51c265b4dd3e7ce7f3041
|
| 3 |
+
size 59813
|
arena_elo/results/20240602/image_editing_leaderboard.csv
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
MagicBrush,MagicBrush,1111.287883287791,1112.8809479007448,CC-BY-4.0,"The Ohio State University, University of Waterloo",https://osu-nlp-group.github.io/MagicBrush
|
| 3 |
+
InfEdit,InfEdit,1079.0215496678925,1081.8081725884626,CC BY-NC-ND 4.0,"University of Michigan, University of California, Berkeley",https://huggingface.co/spaces/sled-umich/InfEdit
|
| 4 |
+
CosXLEdit,CosXLEdit,1065.6805346660533,1066.704128727434,cosxl-nc-community,Stability AI,https://huggingface.co/spaces/multimodalart/cosxl
|
| 5 |
+
InstructPix2Pix,InstructPix2Pix,1032.7530333195389,1030.5587019503707,"Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros","University of California, Berkeley",https://www.timothybrooks.com/instruct-pix2pix
|
| 6 |
+
PNP,PNP,998.4983696664473,1003.2359999540579,-,Weizmann Institute of Science,https://github.com/MichalGeyer/plug-and-play
|
| 7 |
+
Prompt2prompt,Prompt2prompt,987.9337296502758,989.0974614471744,Apache-2.0,"Google, Tel Aviv University",https://prompt-to-prompt.github.io
|
| 8 |
+
CycleDiffusion,CycleDiffusion,938.9517299322257,932.7970251208932,X11,Carnegie Mellon University,https://github.com/ChenWu98/cycle-diffusion
|
| 9 |
+
SDEdit,SDEdit,928.5595445205557,926.7905094883904,MIT License,Stanford University,https://sde-image-editing.github.io
|
| 10 |
+
Pix2PixZero,Pix2PixZero,857.3136252892202,856.1270528224718,MIT License,"Carnegie Mellon University, Adobe Research",https://pix2pixzero.github.io
|
arena_elo/results/20240602/t2i_generation_leaderboard.csv
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
PlayGround V2.5,PlayGround V2.5,1148.136678409811,1150.447617150882,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic
|
| 3 |
+
PlayGround V2,PlayGround V2,1099.2495842883393,1098.3769624420538,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
|
| 4 |
+
StableCascade,StableCascade,1056.7813216192726,1061.2775980734832,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade
|
| 5 |
+
SDXLLightning,SDXLLightning,1056.3881629701646,1059.8359983006494,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning
|
| 6 |
+
PixArtSigma,PixArtSigma,1050.6588983909805,1049.9019852589274,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma
|
| 7 |
+
PixArtAlpha,PixArtAlpha,1050.1258204922178,1038.1819010171778,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS
|
| 8 |
+
SDXL,SDXL,1001.1847782879587,999.8580426291918,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
+
SDXLTurbo,SDXLTurbo,935.2347119130764,933.049481437306,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo
|
| 10 |
+
LCM(v1.5/XL),LCM(v1.5/XL),932.3595672104603,925.8305369502356,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api
|
| 11 |
+
OpenJourney,OpenJourney,853.094967056503,847.6782124021958,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney
|
| 12 |
+
LCM,LCM,816.7855093612186,829.9051004486075,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
arena_elo/results/20240602/video_generation_leaderboard.csv
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
StableVideoDiffusion,StableVideoDiffusion,1148.6551122337614,1159.3538266276412,stable-video-diffusion-nc-community,Stability AI,https://fal.ai/models/fal-ai/fast-svd/text-to-video/api
|
| 3 |
+
T2VTurbo,T2VTurbo,1134.3022495677073,1124.4404105066733,cc-by-nc-4.0,"University of California, Santa Barbara",https://huggingface.co/jiachenli-ucsb/T2V-Turbo-VC2
|
| 4 |
+
AnimateDiff,AnimateDiff,1068.182280658803,1066.112960658009,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v
|
| 5 |
+
VideoCrafter2,VideoCrafter2,1062.2218831371833,1063.1081871468969,Apache 2.0,Tencent AI Lab,https://ailab-cvc.github.io/videocrafter2/
|
| 6 |
+
LaVie,LaVie,982.0030996073986,982.0143845325545,Apache 2.0,Shanghai AI Lab,https://github.com/Vchitect/LaVie
|
| 7 |
+
OpenSora,OpenSora,904.4114353398954,904.0996238467394,Apache 2.0,HPC-AI Tech,https://github.com/hpcaitech/Open-Sora
|
| 8 |
+
ModelScope,ModelScope,856.7087803807375,856.3438942029966,cc-by-nc-4.0,Alibaba Group,https://arxiv.org/abs/2308.06571
|
| 9 |
+
AnimateDiffTurbo,AnimateDiffTurbo,843.5151590745159,844.5267124784873,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v-turbo
|
arena_elo/results/latest/clean_battle_image_editing.json
CHANGED
|
@@ -8950,5 +8950,13 @@
|
|
| 8950 |
"judge": "arena_user_10.16.25.191",
|
| 8951 |
"anony": true,
|
| 8952 |
"tstamp": 1717229294.5639
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8953 |
}
|
| 8954 |
]
|
|
|
|
| 8950 |
"judge": "arena_user_10.16.25.191",
|
| 8951 |
"anony": true,
|
| 8952 |
"tstamp": 1717229294.5639
|
| 8953 |
+
},
|
| 8954 |
+
{
|
| 8955 |
+
"model_a": "PNP",
|
| 8956 |
+
"model_b": "SDEdit",
|
| 8957 |
+
"winner": "model_a",
|
| 8958 |
+
"judge": "arena_user_10.16.15.131",
|
| 8959 |
+
"anony": true,
|
| 8960 |
+
"tstamp": 1717347216.3245
|
| 8961 |
}
|
| 8962 |
]
|
arena_elo/results/latest/clean_battle_t2i_generation.json
CHANGED
|
@@ -42166,5 +42166,21 @@
|
|
| 42166 |
"judge": "arena_user_10.16.47.67",
|
| 42167 |
"anony": true,
|
| 42168 |
"tstamp": 1717282264.3718
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42169 |
}
|
| 42170 |
]
|
|
|
|
| 42166 |
"judge": "arena_user_10.16.47.67",
|
| 42167 |
"anony": true,
|
| 42168 |
"tstamp": 1717282264.3718
|
| 42169 |
+
},
|
| 42170 |
+
{
|
| 42171 |
+
"model_a": "OpenJourney",
|
| 42172 |
+
"model_b": "StableCascade",
|
| 42173 |
+
"winner": "model_a",
|
| 42174 |
+
"judge": "arena_user_10.16.27.21",
|
| 42175 |
+
"anony": true,
|
| 42176 |
+
"tstamp": 1717345937.8651
|
| 42177 |
+
},
|
| 42178 |
+
{
|
| 42179 |
+
"model_a": "PlayGround V2.5",
|
| 42180 |
+
"model_b": "StableCascade",
|
| 42181 |
+
"winner": "model_a",
|
| 42182 |
+
"judge": "arena_user_10.16.47.67",
|
| 42183 |
+
"anony": true,
|
| 42184 |
+
"tstamp": 1717345942.1509
|
| 42185 |
}
|
| 42186 |
]
|
arena_elo/results/latest/clean_battle_video_generation.json
CHANGED
|
@@ -9894,5 +9894,877 @@
|
|
| 9894 |
"judge": "arena_user_10.16.27.21",
|
| 9895 |
"anony": true,
|
| 9896 |
"tstamp": 1717293775.9663
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9897 |
}
|
| 9898 |
]
|
|
|
|
| 9894 |
"judge": "arena_user_10.16.27.21",
|
| 9895 |
"anony": true,
|
| 9896 |
"tstamp": 1717293775.9663
|
| 9897 |
+
},
|
| 9898 |
+
{
|
| 9899 |
+
"model_a": "ModelScope",
|
| 9900 |
+
"model_b": "StableVideoDiffusion",
|
| 9901 |
+
"winner": "model_b",
|
| 9902 |
+
"judge": "arena_user_10.16.27.21",
|
| 9903 |
+
"anony": true,
|
| 9904 |
+
"tstamp": 1717293782.7841
|
| 9905 |
+
},
|
| 9906 |
+
{
|
| 9907 |
+
"model_a": "T2VTurbo",
|
| 9908 |
+
"model_b": "VideoCrafter2",
|
| 9909 |
+
"winner": "model_a",
|
| 9910 |
+
"judge": "arena_user_10.16.47.67",
|
| 9911 |
+
"anony": true,
|
| 9912 |
+
"tstamp": 1717293783.2738
|
| 9913 |
+
},
|
| 9914 |
+
{
|
| 9915 |
+
"model_a": "StableVideoDiffusion",
|
| 9916 |
+
"model_b": "VideoCrafter2",
|
| 9917 |
+
"winner": "tie (bothbad)",
|
| 9918 |
+
"judge": "arena_user_10.16.15.131",
|
| 9919 |
+
"anony": true,
|
| 9920 |
+
"tstamp": 1717293791.6535
|
| 9921 |
+
},
|
| 9922 |
+
{
|
| 9923 |
+
"model_a": "LaVie",
|
| 9924 |
+
"model_b": "StableVideoDiffusion",
|
| 9925 |
+
"winner": "model_b",
|
| 9926 |
+
"judge": "arena_user_10.16.47.67",
|
| 9927 |
+
"anony": true,
|
| 9928 |
+
"tstamp": 1717293798.9666
|
| 9929 |
+
},
|
| 9930 |
+
{
|
| 9931 |
+
"model_a": "T2VTurbo",
|
| 9932 |
+
"model_b": "LaVie",
|
| 9933 |
+
"winner": "model_b",
|
| 9934 |
+
"judge": "arena_user_10.16.27.21",
|
| 9935 |
+
"anony": true,
|
| 9936 |
+
"tstamp": 1717293806.4462
|
| 9937 |
+
},
|
| 9938 |
+
{
|
| 9939 |
+
"model_a": "LaVie",
|
| 9940 |
+
"model_b": "AnimateDiffTurbo",
|
| 9941 |
+
"winner": "model_b",
|
| 9942 |
+
"judge": "arena_user_10.16.47.67",
|
| 9943 |
+
"anony": true,
|
| 9944 |
+
"tstamp": 1717293811.6641
|
| 9945 |
+
},
|
| 9946 |
+
{
|
| 9947 |
+
"model_a": "OpenSora",
|
| 9948 |
+
"model_b": "ModelScope",
|
| 9949 |
+
"winner": "tie",
|
| 9950 |
+
"judge": "arena_user_10.16.27.21",
|
| 9951 |
+
"anony": true,
|
| 9952 |
+
"tstamp": 1717293826.6726
|
| 9953 |
+
},
|
| 9954 |
+
{
|
| 9955 |
+
"model_a": "LaVie",
|
| 9956 |
+
"model_b": "T2VTurbo",
|
| 9957 |
+
"winner": "tie (bothbad)",
|
| 9958 |
+
"judge": "arena_user_10.16.47.67",
|
| 9959 |
+
"anony": true,
|
| 9960 |
+
"tstamp": 1717293828.377
|
| 9961 |
+
},
|
| 9962 |
+
{
|
| 9963 |
+
"model_a": "VideoCrafter2",
|
| 9964 |
+
"model_b": "LaVie",
|
| 9965 |
+
"winner": "model_a",
|
| 9966 |
+
"judge": "arena_user_10.16.3.126",
|
| 9967 |
+
"anony": true,
|
| 9968 |
+
"tstamp": 1717293835.7519
|
| 9969 |
+
},
|
| 9970 |
+
{
|
| 9971 |
+
"model_a": "StableVideoDiffusion",
|
| 9972 |
+
"model_b": "OpenSora",
|
| 9973 |
+
"winner": "model_a",
|
| 9974 |
+
"judge": "arena_user_10.16.3.126",
|
| 9975 |
+
"anony": true,
|
| 9976 |
+
"tstamp": 1717293841.7666
|
| 9977 |
+
},
|
| 9978 |
+
{
|
| 9979 |
+
"model_a": "T2VTurbo",
|
| 9980 |
+
"model_b": "ModelScope",
|
| 9981 |
+
"winner": "model_a",
|
| 9982 |
+
"judge": "arena_user_10.16.3.126",
|
| 9983 |
+
"anony": true,
|
| 9984 |
+
"tstamp": 1717293848.3812
|
| 9985 |
+
},
|
| 9986 |
+
{
|
| 9987 |
+
"model_a": "AnimateDiff",
|
| 9988 |
+
"model_b": "AnimateDiffTurbo",
|
| 9989 |
+
"winner": "model_a",
|
| 9990 |
+
"judge": "arena_user_10.16.3.126",
|
| 9991 |
+
"anony": true,
|
| 9992 |
+
"tstamp": 1717293855.3997
|
| 9993 |
+
},
|
| 9994 |
+
{
|
| 9995 |
+
"model_a": "VideoCrafter2",
|
| 9996 |
+
"model_b": "T2VTurbo",
|
| 9997 |
+
"winner": "tie (bothbad)",
|
| 9998 |
+
"judge": "arena_user_10.16.3.126",
|
| 9999 |
+
"anony": true,
|
| 10000 |
+
"tstamp": 1717293857.3097
|
| 10001 |
+
},
|
| 10002 |
+
{
|
| 10003 |
+
"model_a": "LaVie",
|
| 10004 |
+
"model_b": "AnimateDiffTurbo",
|
| 10005 |
+
"winner": "model_a",
|
| 10006 |
+
"judge": "arena_user_10.16.3.126",
|
| 10007 |
+
"anony": true,
|
| 10008 |
+
"tstamp": 1717293872.4616
|
| 10009 |
+
},
|
| 10010 |
+
{
|
| 10011 |
+
"model_a": "T2VTurbo",
|
| 10012 |
+
"model_b": "AnimateDiffTurbo",
|
| 10013 |
+
"winner": "model_a",
|
| 10014 |
+
"judge": "arena_user_10.16.3.126",
|
| 10015 |
+
"anony": true,
|
| 10016 |
+
"tstamp": 1717293901.5198
|
| 10017 |
+
},
|
| 10018 |
+
{
|
| 10019 |
+
"model_a": "StableVideoDiffusion",
|
| 10020 |
+
"model_b": "AnimateDiff",
|
| 10021 |
+
"winner": "model_a",
|
| 10022 |
+
"judge": "arena_user_10.16.27.21",
|
| 10023 |
+
"anony": true,
|
| 10024 |
+
"tstamp": 1717293932.4272
|
| 10025 |
+
},
|
| 10026 |
+
{
|
| 10027 |
+
"model_a": "OpenSora",
|
| 10028 |
+
"model_b": "AnimateDiffTurbo",
|
| 10029 |
+
"winner": "model_b",
|
| 10030 |
+
"judge": "arena_user_10.16.27.21",
|
| 10031 |
+
"anony": true,
|
| 10032 |
+
"tstamp": 1717293953.9142
|
| 10033 |
+
},
|
| 10034 |
+
{
|
| 10035 |
+
"model_a": "T2VTurbo",
|
| 10036 |
+
"model_b": "StableVideoDiffusion",
|
| 10037 |
+
"winner": "model_a",
|
| 10038 |
+
"judge": "arena_user_10.16.3.126",
|
| 10039 |
+
"anony": true,
|
| 10040 |
+
"tstamp": 1717293984.306
|
| 10041 |
+
},
|
| 10042 |
+
{
|
| 10043 |
+
"model_a": "OpenSora",
|
| 10044 |
+
"model_b": "StableVideoDiffusion",
|
| 10045 |
+
"winner": "tie",
|
| 10046 |
+
"judge": "arena_user_10.16.47.67",
|
| 10047 |
+
"anony": true,
|
| 10048 |
+
"tstamp": 1717294009.905
|
| 10049 |
+
},
|
| 10050 |
+
{
|
| 10051 |
+
"model_a": "VideoCrafter2",
|
| 10052 |
+
"model_b": "ModelScope",
|
| 10053 |
+
"winner": "tie (bothbad)",
|
| 10054 |
+
"judge": "arena_user_10.16.3.126",
|
| 10055 |
+
"anony": true,
|
| 10056 |
+
"tstamp": 1717294030.5896
|
| 10057 |
+
},
|
| 10058 |
+
{
|
| 10059 |
+
"model_a": "LaVie",
|
| 10060 |
+
"model_b": "OpenSora",
|
| 10061 |
+
"winner": "model_a",
|
| 10062 |
+
"judge": "arena_user_10.16.47.67",
|
| 10063 |
+
"anony": true,
|
| 10064 |
+
"tstamp": 1717294056.7294
|
| 10065 |
+
},
|
| 10066 |
+
{
|
| 10067 |
+
"model_a": "LaVie",
|
| 10068 |
+
"model_b": "AnimateDiff",
|
| 10069 |
+
"winner": "tie (bothbad)",
|
| 10070 |
+
"judge": "arena_user_10.16.3.126",
|
| 10071 |
+
"anony": true,
|
| 10072 |
+
"tstamp": 1717294075.7122
|
| 10073 |
+
},
|
| 10074 |
+
{
|
| 10075 |
+
"model_a": "LaVie",
|
| 10076 |
+
"model_b": "AnimateDiff",
|
| 10077 |
+
"winner": "model_a",
|
| 10078 |
+
"judge": "arena_user_10.16.3.126",
|
| 10079 |
+
"anony": true,
|
| 10080 |
+
"tstamp": 1717294090.8974
|
| 10081 |
+
},
|
| 10082 |
+
{
|
| 10083 |
+
"model_a": "StableVideoDiffusion",
|
| 10084 |
+
"model_b": "OpenSora",
|
| 10085 |
+
"winner": "model_a",
|
| 10086 |
+
"judge": "arena_user_10.16.27.21",
|
| 10087 |
+
"anony": true,
|
| 10088 |
+
"tstamp": 1717294101.2133
|
| 10089 |
+
},
|
| 10090 |
+
{
|
| 10091 |
+
"model_a": "AnimateDiffTurbo",
|
| 10092 |
+
"model_b": "ModelScope",
|
| 10093 |
+
"winner": "model_b",
|
| 10094 |
+
"judge": "arena_user_10.16.15.131",
|
| 10095 |
+
"anony": true,
|
| 10096 |
+
"tstamp": 1717294117.938
|
| 10097 |
+
},
|
| 10098 |
+
{
|
| 10099 |
+
"model_a": "AnimateDiff",
|
| 10100 |
+
"model_b": "LaVie",
|
| 10101 |
+
"winner": "model_a",
|
| 10102 |
+
"judge": "arena_user_10.16.27.21",
|
| 10103 |
+
"anony": true,
|
| 10104 |
+
"tstamp": 1717294150.2901
|
| 10105 |
+
},
|
| 10106 |
+
{
|
| 10107 |
+
"model_a": "OpenSora",
|
| 10108 |
+
"model_b": "AnimateDiffTurbo",
|
| 10109 |
+
"winner": "tie",
|
| 10110 |
+
"judge": "arena_user_10.16.27.21",
|
| 10111 |
+
"anony": true,
|
| 10112 |
+
"tstamp": 1717294174.1211
|
| 10113 |
+
},
|
| 10114 |
+
{
|
| 10115 |
+
"model_a": "OpenSora",
|
| 10116 |
+
"model_b": "LaVie",
|
| 10117 |
+
"winner": "model_b",
|
| 10118 |
+
"judge": "arena_user_10.16.27.21",
|
| 10119 |
+
"anony": true,
|
| 10120 |
+
"tstamp": 1717294185.8416
|
| 10121 |
+
},
|
| 10122 |
+
{
|
| 10123 |
+
"model_a": "ModelScope",
|
| 10124 |
+
"model_b": "OpenSora",
|
| 10125 |
+
"winner": "model_a",
|
| 10126 |
+
"judge": "arena_user_10.16.15.131",
|
| 10127 |
+
"anony": true,
|
| 10128 |
+
"tstamp": 1717294202.8671
|
| 10129 |
+
},
|
| 10130 |
+
{
|
| 10131 |
+
"model_a": "AnimateDiffTurbo",
|
| 10132 |
+
"model_b": "VideoCrafter2",
|
| 10133 |
+
"winner": "model_b",
|
| 10134 |
+
"judge": "arena_user_10.16.47.67",
|
| 10135 |
+
"anony": true,
|
| 10136 |
+
"tstamp": 1717294220.1908
|
| 10137 |
+
},
|
| 10138 |
+
{
|
| 10139 |
+
"model_a": "VideoCrafter2",
|
| 10140 |
+
"model_b": "ModelScope",
|
| 10141 |
+
"winner": "model_b",
|
| 10142 |
+
"judge": "arena_user_10.16.15.131",
|
| 10143 |
+
"anony": true,
|
| 10144 |
+
"tstamp": 1717294236.012
|
| 10145 |
+
},
|
| 10146 |
+
{
|
| 10147 |
+
"model_a": "LaVie",
|
| 10148 |
+
"model_b": "StableVideoDiffusion",
|
| 10149 |
+
"winner": "model_a",
|
| 10150 |
+
"judge": "arena_user_10.16.15.131",
|
| 10151 |
+
"anony": true,
|
| 10152 |
+
"tstamp": 1717294251.8078
|
| 10153 |
+
},
|
| 10154 |
+
{
|
| 10155 |
+
"model_a": "T2VTurbo",
|
| 10156 |
+
"model_b": "OpenSora",
|
| 10157 |
+
"winner": "model_a",
|
| 10158 |
+
"judge": "arena_user_10.16.15.131",
|
| 10159 |
+
"anony": true,
|
| 10160 |
+
"tstamp": 1717294269.6838
|
| 10161 |
+
},
|
| 10162 |
+
{
|
| 10163 |
+
"model_a": "StableVideoDiffusion",
|
| 10164 |
+
"model_b": "OpenSora",
|
| 10165 |
+
"winner": "tie",
|
| 10166 |
+
"judge": "arena_user_10.16.3.126",
|
| 10167 |
+
"anony": true,
|
| 10168 |
+
"tstamp": 1717294286.4136
|
| 10169 |
+
},
|
| 10170 |
+
{
|
| 10171 |
+
"model_a": "AnimateDiffTurbo",
|
| 10172 |
+
"model_b": "LaVie",
|
| 10173 |
+
"winner": "tie (bothbad)",
|
| 10174 |
+
"judge": "arena_user_10.16.47.67",
|
| 10175 |
+
"anony": true,
|
| 10176 |
+
"tstamp": 1717294312.2032
|
| 10177 |
+
},
|
| 10178 |
+
{
|
| 10179 |
+
"model_a": "ModelScope",
|
| 10180 |
+
"model_b": "StableVideoDiffusion",
|
| 10181 |
+
"winner": "model_b",
|
| 10182 |
+
"judge": "arena_user_10.16.27.21",
|
| 10183 |
+
"anony": true,
|
| 10184 |
+
"tstamp": 1717294326.2786
|
| 10185 |
+
},
|
| 10186 |
+
{
|
| 10187 |
+
"model_a": "VideoCrafter2",
|
| 10188 |
+
"model_b": "StableVideoDiffusion",
|
| 10189 |
+
"winner": "model_b",
|
| 10190 |
+
"judge": "arena_user_10.16.15.131",
|
| 10191 |
+
"anony": true,
|
| 10192 |
+
"tstamp": 1717294346.6054
|
| 10193 |
+
},
|
| 10194 |
+
{
|
| 10195 |
+
"model_a": "OpenSora",
|
| 10196 |
+
"model_b": "VideoCrafter2",
|
| 10197 |
+
"winner": "model_b",
|
| 10198 |
+
"judge": "arena_user_10.16.3.126",
|
| 10199 |
+
"anony": true,
|
| 10200 |
+
"tstamp": 1717294361.8835
|
| 10201 |
+
},
|
| 10202 |
+
{
|
| 10203 |
+
"model_a": "VideoCrafter2",
|
| 10204 |
+
"model_b": "ModelScope",
|
| 10205 |
+
"winner": "model_a",
|
| 10206 |
+
"judge": "arena_user_10.16.27.21",
|
| 10207 |
+
"anony": true,
|
| 10208 |
+
"tstamp": 1717294374.2527
|
| 10209 |
+
},
|
| 10210 |
+
{
|
| 10211 |
+
"model_a": "AnimateDiff",
|
| 10212 |
+
"model_b": "OpenSora",
|
| 10213 |
+
"winner": "tie",
|
| 10214 |
+
"judge": "arena_user_10.16.15.131",
|
| 10215 |
+
"anony": true,
|
| 10216 |
+
"tstamp": 1717294392.4334
|
| 10217 |
+
},
|
| 10218 |
+
{
|
| 10219 |
+
"model_a": "StableVideoDiffusion",
|
| 10220 |
+
"model_b": "AnimateDiff",
|
| 10221 |
+
"winner": "model_b",
|
| 10222 |
+
"judge": "arena_user_10.16.3.126",
|
| 10223 |
+
"anony": true,
|
| 10224 |
+
"tstamp": 1717294404.4511
|
| 10225 |
+
},
|
| 10226 |
+
{
|
| 10227 |
+
"model_a": "ModelScope",
|
| 10228 |
+
"model_b": "VideoCrafter2",
|
| 10229 |
+
"winner": "model_b",
|
| 10230 |
+
"judge": "arena_user_10.16.27.21",
|
| 10231 |
+
"anony": true,
|
| 10232 |
+
"tstamp": 1717294435.7496
|
| 10233 |
+
},
|
| 10234 |
+
{
|
| 10235 |
+
"model_a": "T2VTurbo",
|
| 10236 |
+
"model_b": "LaVie",
|
| 10237 |
+
"winner": "model_a",
|
| 10238 |
+
"judge": "arena_user_10.16.3.126",
|
| 10239 |
+
"anony": true,
|
| 10240 |
+
"tstamp": 1717294453.0766
|
| 10241 |
+
},
|
| 10242 |
+
{
|
| 10243 |
+
"model_a": "StableVideoDiffusion",
|
| 10244 |
+
"model_b": "AnimateDiff",
|
| 10245 |
+
"winner": "tie",
|
| 10246 |
+
"judge": "arena_user_10.16.47.67",
|
| 10247 |
+
"anony": true,
|
| 10248 |
+
"tstamp": 1717294470.3027
|
| 10249 |
+
},
|
| 10250 |
+
{
|
| 10251 |
+
"model_a": "ModelScope",
|
| 10252 |
+
"model_b": "StableVideoDiffusion",
|
| 10253 |
+
"winner": "tie",
|
| 10254 |
+
"judge": "arena_user_10.16.3.126",
|
| 10255 |
+
"anony": true,
|
| 10256 |
+
"tstamp": 1717294493.5437
|
| 10257 |
+
},
|
| 10258 |
+
{
|
| 10259 |
+
"model_a": "VideoCrafter2",
|
| 10260 |
+
"model_b": "OpenSora",
|
| 10261 |
+
"winner": "model_b",
|
| 10262 |
+
"judge": "arena_user_10.16.47.67",
|
| 10263 |
+
"anony": true,
|
| 10264 |
+
"tstamp": 1717294510.6692
|
| 10265 |
+
},
|
| 10266 |
+
{
|
| 10267 |
+
"model_a": "T2VTurbo",
|
| 10268 |
+
"model_b": "AnimateDiff",
|
| 10269 |
+
"winner": "model_a",
|
| 10270 |
+
"judge": "arena_user_10.16.27.21",
|
| 10271 |
+
"anony": true,
|
| 10272 |
+
"tstamp": 1717294525.3896
|
| 10273 |
+
},
|
| 10274 |
+
{
|
| 10275 |
+
"model_a": "AnimateDiffTurbo",
|
| 10276 |
+
"model_b": "StableVideoDiffusion",
|
| 10277 |
+
"winner": "model_b",
|
| 10278 |
+
"judge": "arena_user_10.16.47.67",
|
| 10279 |
+
"anony": true,
|
| 10280 |
+
"tstamp": 1717294538.5569
|
| 10281 |
+
},
|
| 10282 |
+
{
|
| 10283 |
+
"model_a": "AnimateDiffTurbo",
|
| 10284 |
+
"model_b": "VideoCrafter2",
|
| 10285 |
+
"winner": "tie",
|
| 10286 |
+
"judge": "arena_user_10.16.3.126",
|
| 10287 |
+
"anony": true,
|
| 10288 |
+
"tstamp": 1717294565.9504
|
| 10289 |
+
},
|
| 10290 |
+
{
|
| 10291 |
+
"model_a": "AnimateDiff",
|
| 10292 |
+
"model_b": "AnimateDiffTurbo",
|
| 10293 |
+
"winner": "tie",
|
| 10294 |
+
"judge": "arena_user_10.16.3.126",
|
| 10295 |
+
"anony": true,
|
| 10296 |
+
"tstamp": 1717294582.533
|
| 10297 |
+
},
|
| 10298 |
+
{
|
| 10299 |
+
"model_a": "ModelScope",
|
| 10300 |
+
"model_b": "AnimateDiff",
|
| 10301 |
+
"winner": "model_a",
|
| 10302 |
+
"judge": "arena_user_10.16.27.21",
|
| 10303 |
+
"anony": true,
|
| 10304 |
+
"tstamp": 1717294597.1071
|
| 10305 |
+
},
|
| 10306 |
+
{
|
| 10307 |
+
"model_a": "T2VTurbo",
|
| 10308 |
+
"model_b": "VideoCrafter2",
|
| 10309 |
+
"winner": "tie (bothbad)",
|
| 10310 |
+
"judge": "arena_user_10.16.47.67",
|
| 10311 |
+
"anony": true,
|
| 10312 |
+
"tstamp": 1717294615.7967
|
| 10313 |
+
},
|
| 10314 |
+
{
|
| 10315 |
+
"model_a": "VideoCrafter2",
|
| 10316 |
+
"model_b": "OpenSora",
|
| 10317 |
+
"winner": "model_a",
|
| 10318 |
+
"judge": "arena_user_10.16.47.67",
|
| 10319 |
+
"anony": true,
|
| 10320 |
+
"tstamp": 1717294631.1305
|
| 10321 |
+
},
|
| 10322 |
+
{
|
| 10323 |
+
"model_a": "AnimateDiffTurbo",
|
| 10324 |
+
"model_b": "StableVideoDiffusion",
|
| 10325 |
+
"winner": "model_b",
|
| 10326 |
+
"judge": "arena_user_10.16.47.67",
|
| 10327 |
+
"anony": true,
|
| 10328 |
+
"tstamp": 1717294644.5529
|
| 10329 |
+
},
|
| 10330 |
+
{
|
| 10331 |
+
"model_a": "AnimateDiffTurbo",
|
| 10332 |
+
"model_b": "T2VTurbo",
|
| 10333 |
+
"winner": "model_b",
|
| 10334 |
+
"judge": "arena_user_10.16.3.126",
|
| 10335 |
+
"anony": true,
|
| 10336 |
+
"tstamp": 1717294654.225
|
| 10337 |
+
},
|
| 10338 |
+
{
|
| 10339 |
+
"model_a": "AnimateDiffTurbo",
|
| 10340 |
+
"model_b": "AnimateDiff",
|
| 10341 |
+
"winner": "model_b",
|
| 10342 |
+
"judge": "arena_user_10.16.15.131",
|
| 10343 |
+
"anony": true,
|
| 10344 |
+
"tstamp": 1717294668.6136
|
| 10345 |
+
},
|
| 10346 |
+
{
|
| 10347 |
+
"model_a": "OpenSora",
|
| 10348 |
+
"model_b": "VideoCrafter2",
|
| 10349 |
+
"winner": "tie (bothbad)",
|
| 10350 |
+
"judge": "arena_user_10.16.27.21",
|
| 10351 |
+
"anony": true,
|
| 10352 |
+
"tstamp": 1717294682.9829
|
| 10353 |
+
},
|
| 10354 |
+
{
|
| 10355 |
+
"model_a": "LaVie",
|
| 10356 |
+
"model_b": "StableVideoDiffusion",
|
| 10357 |
+
"winner": "model_a",
|
| 10358 |
+
"judge": "arena_user_10.16.47.67",
|
| 10359 |
+
"anony": true,
|
| 10360 |
+
"tstamp": 1717294700.8663
|
| 10361 |
+
},
|
| 10362 |
+
{
|
| 10363 |
+
"model_a": "VideoCrafter2",
|
| 10364 |
+
"model_b": "ModelScope",
|
| 10365 |
+
"winner": "model_a",
|
| 10366 |
+
"judge": "arena_user_10.16.3.126",
|
| 10367 |
+
"anony": true,
|
| 10368 |
+
"tstamp": 1717294717.4464
|
| 10369 |
+
},
|
| 10370 |
+
{
|
| 10371 |
+
"model_a": "ModelScope",
|
| 10372 |
+
"model_b": "OpenSora",
|
| 10373 |
+
"winner": "model_b",
|
| 10374 |
+
"judge": "arena_user_10.16.47.67",
|
| 10375 |
+
"anony": true,
|
| 10376 |
+
"tstamp": 1717294732.9285
|
| 10377 |
+
},
|
| 10378 |
+
{
|
| 10379 |
+
"model_a": "T2VTurbo",
|
| 10380 |
+
"model_b": "AnimateDiffTurbo",
|
| 10381 |
+
"winner": "model_a",
|
| 10382 |
+
"judge": "arena_user_10.16.3.126",
|
| 10383 |
+
"anony": true,
|
| 10384 |
+
"tstamp": 1717294748.3004
|
| 10385 |
+
},
|
| 10386 |
+
{
|
| 10387 |
+
"model_a": "OpenSora",
|
| 10388 |
+
"model_b": "AnimateDiff",
|
| 10389 |
+
"winner": "tie (bothbad)",
|
| 10390 |
+
"judge": "arena_user_10.16.47.67",
|
| 10391 |
+
"anony": true,
|
| 10392 |
+
"tstamp": 1717294766.0902
|
| 10393 |
+
},
|
| 10394 |
+
{
|
| 10395 |
+
"model_a": "AnimateDiff",
|
| 10396 |
+
"model_b": "StableVideoDiffusion",
|
| 10397 |
+
"winner": "model_b",
|
| 10398 |
+
"judge": "arena_user_10.16.15.131",
|
| 10399 |
+
"anony": true,
|
| 10400 |
+
"tstamp": 1717294784.2806
|
| 10401 |
+
},
|
| 10402 |
+
{
|
| 10403 |
+
"model_a": "VideoCrafter2",
|
| 10404 |
+
"model_b": "StableVideoDiffusion",
|
| 10405 |
+
"winner": "model_b",
|
| 10406 |
+
"judge": "arena_user_10.16.3.126",
|
| 10407 |
+
"anony": true,
|
| 10408 |
+
"tstamp": 1717294796.1612
|
| 10409 |
+
},
|
| 10410 |
+
{
|
| 10411 |
+
"model_a": "VideoCrafter2",
|
| 10412 |
+
"model_b": "AnimateDiff",
|
| 10413 |
+
"winner": "model_a",
|
| 10414 |
+
"judge": "arena_user_10.16.15.131",
|
| 10415 |
+
"anony": true,
|
| 10416 |
+
"tstamp": 1717294824.43
|
| 10417 |
+
},
|
| 10418 |
+
{
|
| 10419 |
+
"model_a": "AnimateDiffTurbo",
|
| 10420 |
+
"model_b": "VideoCrafter2",
|
| 10421 |
+
"winner": "tie",
|
| 10422 |
+
"judge": "arena_user_10.16.3.126",
|
| 10423 |
+
"anony": true,
|
| 10424 |
+
"tstamp": 1717294851.174
|
| 10425 |
+
},
|
| 10426 |
+
{
|
| 10427 |
+
"model_a": "T2VTurbo",
|
| 10428 |
+
"model_b": "StableVideoDiffusion",
|
| 10429 |
+
"winner": "model_b",
|
| 10430 |
+
"judge": "arena_user_10.16.15.131",
|
| 10431 |
+
"anony": true,
|
| 10432 |
+
"tstamp": 1717294866.7995
|
| 10433 |
+
},
|
| 10434 |
+
{
|
| 10435 |
+
"model_a": "ModelScope",
|
| 10436 |
+
"model_b": "T2VTurbo",
|
| 10437 |
+
"winner": "model_b",
|
| 10438 |
+
"judge": "arena_user_10.16.15.131",
|
| 10439 |
+
"anony": true,
|
| 10440 |
+
"tstamp": 1717294877.1216
|
| 10441 |
+
},
|
| 10442 |
+
{
|
| 10443 |
+
"model_a": "LaVie",
|
| 10444 |
+
"model_b": "ModelScope",
|
| 10445 |
+
"winner": "model_a",
|
| 10446 |
+
"judge": "arena_user_10.16.47.67",
|
| 10447 |
+
"anony": true,
|
| 10448 |
+
"tstamp": 1717294890.1942
|
| 10449 |
+
},
|
| 10450 |
+
{
|
| 10451 |
+
"model_a": "AnimateDiffTurbo",
|
| 10452 |
+
"model_b": "VideoCrafter2",
|
| 10453 |
+
"winner": "model_b",
|
| 10454 |
+
"judge": "arena_user_10.16.47.67",
|
| 10455 |
+
"anony": true,
|
| 10456 |
+
"tstamp": 1717294921.5086
|
| 10457 |
+
},
|
| 10458 |
+
{
|
| 10459 |
+
"model_a": "AnimateDiff",
|
| 10460 |
+
"model_b": "OpenSora",
|
| 10461 |
+
"winner": "model_b",
|
| 10462 |
+
"judge": "arena_user_10.16.27.21",
|
| 10463 |
+
"anony": true,
|
| 10464 |
+
"tstamp": 1717294934.4353
|
| 10465 |
+
},
|
| 10466 |
+
{
|
| 10467 |
+
"model_a": "StableVideoDiffusion",
|
| 10468 |
+
"model_b": "VideoCrafter2",
|
| 10469 |
+
"winner": "model_b",
|
| 10470 |
+
"judge": "arena_user_10.16.27.21",
|
| 10471 |
+
"anony": true,
|
| 10472 |
+
"tstamp": 1717294950.2096
|
| 10473 |
+
},
|
| 10474 |
+
{
|
| 10475 |
+
"model_a": "AnimateDiff",
|
| 10476 |
+
"model_b": "LaVie",
|
| 10477 |
+
"winner": "model_b",
|
| 10478 |
+
"judge": "arena_user_10.16.3.126",
|
| 10479 |
+
"anony": true,
|
| 10480 |
+
"tstamp": 1717294957.4234
|
| 10481 |
+
},
|
| 10482 |
+
{
|
| 10483 |
+
"model_a": "VideoCrafter2",
|
| 10484 |
+
"model_b": "StableVideoDiffusion",
|
| 10485 |
+
"winner": "model_a",
|
| 10486 |
+
"judge": "arena_user_10.16.47.67",
|
| 10487 |
+
"anony": true,
|
| 10488 |
+
"tstamp": 1717294969.0
|
| 10489 |
+
},
|
| 10490 |
+
{
|
| 10491 |
+
"model_a": "LaVie",
|
| 10492 |
+
"model_b": "StableVideoDiffusion",
|
| 10493 |
+
"winner": "tie",
|
| 10494 |
+
"judge": "arena_user_10.16.15.131",
|
| 10495 |
+
"anony": true,
|
| 10496 |
+
"tstamp": 1717294986.4772
|
| 10497 |
+
},
|
| 10498 |
+
{
|
| 10499 |
+
"model_a": "StableVideoDiffusion",
|
| 10500 |
+
"model_b": "VideoCrafter2",
|
| 10501 |
+
"winner": "model_b",
|
| 10502 |
+
"judge": "arena_user_10.16.15.131",
|
| 10503 |
+
"anony": true,
|
| 10504 |
+
"tstamp": 1717295008.1658
|
| 10505 |
+
},
|
| 10506 |
+
{
|
| 10507 |
+
"model_a": "LaVie",
|
| 10508 |
+
"model_b": "ModelScope",
|
| 10509 |
+
"winner": "model_a",
|
| 10510 |
+
"judge": "arena_user_10.16.47.67",
|
| 10511 |
+
"anony": true,
|
| 10512 |
+
"tstamp": 1717295019.438
|
| 10513 |
+
},
|
| 10514 |
+
{
|
| 10515 |
+
"model_a": "StableVideoDiffusion",
|
| 10516 |
+
"model_b": "AnimateDiff",
|
| 10517 |
+
"winner": "model_a",
|
| 10518 |
+
"judge": "arena_user_10.16.47.67",
|
| 10519 |
+
"anony": true,
|
| 10520 |
+
"tstamp": 1717295038.928
|
| 10521 |
+
},
|
| 10522 |
+
{
|
| 10523 |
+
"model_a": "ModelScope",
|
| 10524 |
+
"model_b": "OpenSora",
|
| 10525 |
+
"winner": "tie",
|
| 10526 |
+
"judge": "arena_user_10.16.47.67",
|
| 10527 |
+
"anony": true,
|
| 10528 |
+
"tstamp": 1717295052.3222
|
| 10529 |
+
},
|
| 10530 |
+
{
|
| 10531 |
+
"model_a": "OpenSora",
|
| 10532 |
+
"model_b": "T2VTurbo",
|
| 10533 |
+
"winner": "model_a",
|
| 10534 |
+
"judge": "arena_user_10.16.15.131",
|
| 10535 |
+
"anony": true,
|
| 10536 |
+
"tstamp": 1717295070.2534
|
| 10537 |
+
},
|
| 10538 |
+
{
|
| 10539 |
+
"model_a": "VideoCrafter2",
|
| 10540 |
+
"model_b": "AnimateDiffTurbo",
|
| 10541 |
+
"winner": "model_a",
|
| 10542 |
+
"judge": "arena_user_10.16.27.21",
|
| 10543 |
+
"anony": true,
|
| 10544 |
+
"tstamp": 1717295082.1467
|
| 10545 |
+
},
|
| 10546 |
+
{
|
| 10547 |
+
"model_a": "T2VTurbo",
|
| 10548 |
+
"model_b": "LaVie",
|
| 10549 |
+
"winner": "model_a",
|
| 10550 |
+
"judge": "arena_user_10.16.47.67",
|
| 10551 |
+
"anony": true,
|
| 10552 |
+
"tstamp": 1717295101.6011
|
| 10553 |
+
},
|
| 10554 |
+
{
|
| 10555 |
+
"model_a": "AnimateDiffTurbo",
|
| 10556 |
+
"model_b": "StableVideoDiffusion",
|
| 10557 |
+
"winner": "model_a",
|
| 10558 |
+
"judge": "arena_user_10.16.15.131",
|
| 10559 |
+
"anony": true,
|
| 10560 |
+
"tstamp": 1717295116.9783
|
| 10561 |
+
},
|
| 10562 |
+
{
|
| 10563 |
+
"model_a": "T2VTurbo",
|
| 10564 |
+
"model_b": "AnimateDiffTurbo",
|
| 10565 |
+
"winner": "model_a",
|
| 10566 |
+
"judge": "arena_user_10.16.15.131",
|
| 10567 |
+
"anony": true,
|
| 10568 |
+
"tstamp": 1717295126.899
|
| 10569 |
+
},
|
| 10570 |
+
{
|
| 10571 |
+
"model_a": "OpenSora",
|
| 10572 |
+
"model_b": "AnimateDiffTurbo",
|
| 10573 |
+
"winner": "model_b",
|
| 10574 |
+
"judge": "arena_user_10.16.27.21",
|
| 10575 |
+
"anony": true,
|
| 10576 |
+
"tstamp": 1717295142.3389
|
| 10577 |
+
},
|
| 10578 |
+
{
|
| 10579 |
+
"model_a": "T2VTurbo",
|
| 10580 |
+
"model_b": "AnimateDiffTurbo",
|
| 10581 |
+
"winner": "model_a",
|
| 10582 |
+
"judge": "arena_user_10.16.3.126",
|
| 10583 |
+
"anony": true,
|
| 10584 |
+
"tstamp": 1717295154.0226
|
| 10585 |
+
},
|
| 10586 |
+
{
|
| 10587 |
+
"model_a": "VideoCrafter2",
|
| 10588 |
+
"model_b": "StableVideoDiffusion",
|
| 10589 |
+
"winner": "model_b",
|
| 10590 |
+
"judge": "arena_user_10.16.15.131",
|
| 10591 |
+
"anony": true,
|
| 10592 |
+
"tstamp": 1717295169.8551
|
| 10593 |
+
},
|
| 10594 |
+
{
|
| 10595 |
+
"model_a": "VideoCrafter2",
|
| 10596 |
+
"model_b": "OpenSora",
|
| 10597 |
+
"winner": "model_a",
|
| 10598 |
+
"judge": "arena_user_10.16.27.21",
|
| 10599 |
+
"anony": true,
|
| 10600 |
+
"tstamp": 1717295185.5925
|
| 10601 |
+
},
|
| 10602 |
+
{
|
| 10603 |
+
"model_a": "LaVie",
|
| 10604 |
+
"model_b": "StableVideoDiffusion",
|
| 10605 |
+
"winner": "tie",
|
| 10606 |
+
"judge": "arena_user_10.16.27.21",
|
| 10607 |
+
"anony": true,
|
| 10608 |
+
"tstamp": 1717295197.1667
|
| 10609 |
+
},
|
| 10610 |
+
{
|
| 10611 |
+
"model_a": "LaVie",
|
| 10612 |
+
"model_b": "VideoCrafter2",
|
| 10613 |
+
"winner": "tie",
|
| 10614 |
+
"judge": "arena_user_10.16.47.67",
|
| 10615 |
+
"anony": true,
|
| 10616 |
+
"tstamp": 1717295210.8272
|
| 10617 |
+
},
|
| 10618 |
+
{
|
| 10619 |
+
"model_a": "AnimateDiffTurbo",
|
| 10620 |
+
"model_b": "StableVideoDiffusion",
|
| 10621 |
+
"winner": "model_b",
|
| 10622 |
+
"judge": "arena_user_10.16.15.131",
|
| 10623 |
+
"anony": true,
|
| 10624 |
+
"tstamp": 1717295218.0937
|
| 10625 |
+
},
|
| 10626 |
+
{
|
| 10627 |
+
"model_a": "VideoCrafter2",
|
| 10628 |
+
"model_b": "OpenSora",
|
| 10629 |
+
"winner": "model_a",
|
| 10630 |
+
"judge": "arena_user_10.16.47.67",
|
| 10631 |
+
"anony": true,
|
| 10632 |
+
"tstamp": 1717295237.2382
|
| 10633 |
+
},
|
| 10634 |
+
{
|
| 10635 |
+
"model_a": "OpenSora",
|
| 10636 |
+
"model_b": "StableVideoDiffusion",
|
| 10637 |
+
"winner": "model_b",
|
| 10638 |
+
"judge": "arena_user_10.16.47.67",
|
| 10639 |
+
"anony": true,
|
| 10640 |
+
"tstamp": 1717295249.9143
|
| 10641 |
+
},
|
| 10642 |
+
{
|
| 10643 |
+
"model_a": "AnimateDiffTurbo",
|
| 10644 |
+
"model_b": "StableVideoDiffusion",
|
| 10645 |
+
"winner": "model_b",
|
| 10646 |
+
"judge": "arena_user_10.16.47.67",
|
| 10647 |
+
"anony": true,
|
| 10648 |
+
"tstamp": 1717295258.4514
|
| 10649 |
+
},
|
| 10650 |
+
{
|
| 10651 |
+
"model_a": "AnimateDiff",
|
| 10652 |
+
"model_b": "AnimateDiffTurbo",
|
| 10653 |
+
"winner": "model_a",
|
| 10654 |
+
"judge": "arena_user_10.16.47.67",
|
| 10655 |
+
"anony": true,
|
| 10656 |
+
"tstamp": 1717295297.0381
|
| 10657 |
+
},
|
| 10658 |
+
{
|
| 10659 |
+
"model_a": "ModelScope",
|
| 10660 |
+
"model_b": "LaVie",
|
| 10661 |
+
"winner": "model_b",
|
| 10662 |
+
"judge": "arena_user_10.16.47.67",
|
| 10663 |
+
"anony": true,
|
| 10664 |
+
"tstamp": 1717295309.6869
|
| 10665 |
+
},
|
| 10666 |
+
{
|
| 10667 |
+
"model_a": "LaVie",
|
| 10668 |
+
"model_b": "VideoCrafter2",
|
| 10669 |
+
"winner": "model_a",
|
| 10670 |
+
"judge": "arena_user_10.16.47.67",
|
| 10671 |
+
"anony": true,
|
| 10672 |
+
"tstamp": 1717295320.7567
|
| 10673 |
+
},
|
| 10674 |
+
{
|
| 10675 |
+
"model_a": "LaVie",
|
| 10676 |
+
"model_b": "StableVideoDiffusion",
|
| 10677 |
+
"winner": "tie",
|
| 10678 |
+
"judge": "arena_user_10.16.27.21",
|
| 10679 |
+
"anony": true,
|
| 10680 |
+
"tstamp": 1717295333.2544
|
| 10681 |
+
},
|
| 10682 |
+
{
|
| 10683 |
+
"model_a": "StableVideoDiffusion",
|
| 10684 |
+
"model_b": "VideoCrafter2",
|
| 10685 |
+
"winner": "model_a",
|
| 10686 |
+
"judge": "arena_user_10.16.27.21",
|
| 10687 |
+
"anony": true,
|
| 10688 |
+
"tstamp": 1717295349.6526
|
| 10689 |
+
},
|
| 10690 |
+
{
|
| 10691 |
+
"model_a": "LaVie",
|
| 10692 |
+
"model_b": "AnimateDiff",
|
| 10693 |
+
"winner": "tie (bothbad)",
|
| 10694 |
+
"judge": "arena_user_10.16.47.67",
|
| 10695 |
+
"anony": true,
|
| 10696 |
+
"tstamp": 1717295360.2828
|
| 10697 |
+
},
|
| 10698 |
+
{
|
| 10699 |
+
"model_a": "T2VTurbo",
|
| 10700 |
+
"model_b": "ModelScope",
|
| 10701 |
+
"winner": "tie",
|
| 10702 |
+
"judge": "arena_user_10.16.15.131",
|
| 10703 |
+
"anony": true,
|
| 10704 |
+
"tstamp": 1717295370.8103
|
| 10705 |
+
},
|
| 10706 |
+
{
|
| 10707 |
+
"model_a": "StableVideoDiffusion",
|
| 10708 |
+
"model_b": "VideoCrafter2",
|
| 10709 |
+
"winner": "model_a",
|
| 10710 |
+
"judge": "arena_user_10.16.47.67",
|
| 10711 |
+
"anony": true,
|
| 10712 |
+
"tstamp": 1717295385.1488
|
| 10713 |
+
},
|
| 10714 |
+
{
|
| 10715 |
+
"model_a": "LaVie",
|
| 10716 |
+
"model_b": "VideoCrafter2",
|
| 10717 |
+
"winner": "model_a",
|
| 10718 |
+
"judge": "arena_user_10.16.15.131",
|
| 10719 |
+
"anony": true,
|
| 10720 |
+
"tstamp": 1717295392.7601
|
| 10721 |
+
},
|
| 10722 |
+
{
|
| 10723 |
+
"model_a": "T2VTurbo",
|
| 10724 |
+
"model_b": "StableVideoDiffusion",
|
| 10725 |
+
"winner": "model_b",
|
| 10726 |
+
"judge": "arena_user_10.16.27.21",
|
| 10727 |
+
"anony": true,
|
| 10728 |
+
"tstamp": 1717295408.8097
|
| 10729 |
+
},
|
| 10730 |
+
{
|
| 10731 |
+
"model_a": "VideoCrafter2",
|
| 10732 |
+
"model_b": "StableVideoDiffusion",
|
| 10733 |
+
"winner": "model_b",
|
| 10734 |
+
"judge": "arena_user_10.16.15.131",
|
| 10735 |
+
"anony": true,
|
| 10736 |
+
"tstamp": 1717295422.4892
|
| 10737 |
+
},
|
| 10738 |
+
{
|
| 10739 |
+
"model_a": "LaVie",
|
| 10740 |
+
"model_b": "StableVideoDiffusion",
|
| 10741 |
+
"winner": "tie",
|
| 10742 |
+
"judge": "arena_user_10.16.47.67",
|
| 10743 |
+
"anony": true,
|
| 10744 |
+
"tstamp": 1717295436.9749
|
| 10745 |
+
},
|
| 10746 |
+
{
|
| 10747 |
+
"model_a": "LaVie",
|
| 10748 |
+
"model_b": "T2VTurbo",
|
| 10749 |
+
"winner": "model_b",
|
| 10750 |
+
"judge": "arena_user_10.16.15.131",
|
| 10751 |
+
"anony": true,
|
| 10752 |
+
"tstamp": 1717295449.8035
|
| 10753 |
+
},
|
| 10754 |
+
{
|
| 10755 |
+
"model_a": "OpenSora",
|
| 10756 |
+
"model_b": "AnimateDiff",
|
| 10757 |
+
"winner": "model_b",
|
| 10758 |
+
"judge": "arena_user_10.16.15.131",
|
| 10759 |
+
"anony": true,
|
| 10760 |
+
"tstamp": 1717295467.5485
|
| 10761 |
+
},
|
| 10762 |
+
{
|
| 10763 |
+
"model_a": "OpenSora",
|
| 10764 |
+
"model_b": "StableVideoDiffusion",
|
| 10765 |
+
"winner": "model_b",
|
| 10766 |
+
"judge": "arena_user_10.16.3.126",
|
| 10767 |
+
"anony": true,
|
| 10768 |
+
"tstamp": 1717345483.6603
|
| 10769 |
}
|
| 10770 |
]
|
arena_elo/results/latest/elo_results_image_editing.pkl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f987c276a9f91055a204fee98a63f32895c94264e3a4fcc41b84776592763e6f
|
| 3 |
+
size 62362
|
arena_elo/results/latest/elo_results_t2i_generation.pkl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:453ed9ef347f96da1353a71fd654e32ed3921d424624a2ec84bade0357e443dc
|
| 3 |
+
size 68024
|
arena_elo/results/latest/elo_results_video_generation.pkl
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c204c041f0dd9dc27962e14f5b046d931020fe542ef51c265b4dd3e7ce7f3041
|
| 3 |
+
size 59813
|
arena_elo/results/latest/image_editing_leaderboard.csv
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
-
MagicBrush,MagicBrush,1111.
|
| 3 |
-
InfEdit,InfEdit,1079.
|
| 4 |
-
CosXLEdit,CosXLEdit,1065.
|
| 5 |
-
InstructPix2Pix,InstructPix2Pix,1032.
|
| 6 |
-
PNP,PNP,
|
| 7 |
-
Prompt2prompt,Prompt2prompt,987.
|
| 8 |
-
CycleDiffusion,CycleDiffusion,938.
|
| 9 |
-
SDEdit,SDEdit,
|
| 10 |
-
Pix2PixZero,Pix2PixZero,857.
|
|
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
MagicBrush,MagicBrush,1111.287883287791,1112.8809479007448,CC-BY-4.0,"The Ohio State University, University of Waterloo",https://osu-nlp-group.github.io/MagicBrush
|
| 3 |
+
InfEdit,InfEdit,1079.0215496678925,1081.8081725884626,CC BY-NC-ND 4.0,"University of Michigan, University of California, Berkeley",https://huggingface.co/spaces/sled-umich/InfEdit
|
| 4 |
+
CosXLEdit,CosXLEdit,1065.6805346660533,1066.704128727434,cosxl-nc-community,Stability AI,https://huggingface.co/spaces/multimodalart/cosxl
|
| 5 |
+
InstructPix2Pix,InstructPix2Pix,1032.7530333195389,1030.5587019503707,"Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros","University of California, Berkeley",https://www.timothybrooks.com/instruct-pix2pix
|
| 6 |
+
PNP,PNP,998.4983696664473,1003.2359999540579,-,Weizmann Institute of Science,https://github.com/MichalGeyer/plug-and-play
|
| 7 |
+
Prompt2prompt,Prompt2prompt,987.9337296502758,989.0974614471744,Apache-2.0,"Google, Tel Aviv University",https://prompt-to-prompt.github.io
|
| 8 |
+
CycleDiffusion,CycleDiffusion,938.9517299322257,932.7970251208932,X11,Carnegie Mellon University,https://github.com/ChenWu98/cycle-diffusion
|
| 9 |
+
SDEdit,SDEdit,928.5595445205557,926.7905094883904,MIT License,Stanford University,https://sde-image-editing.github.io
|
| 10 |
+
Pix2PixZero,Pix2PixZero,857.3136252892202,856.1270528224718,MIT License,"Carnegie Mellon University, Adobe Research",https://pix2pixzero.github.io
|
arena_elo/results/latest/t2i_generation_leaderboard.csv
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
-
PlayGround V2.5,PlayGround V2.5,
|
| 3 |
-
PlayGround V2,PlayGround V2,1099.
|
| 4 |
-
StableCascade,StableCascade,
|
| 5 |
-
SDXLLightning,SDXLLightning,1056.
|
| 6 |
-
PixArtSigma,PixArtSigma,1050.
|
| 7 |
-
PixArtAlpha,PixArtAlpha,1050.
|
| 8 |
-
SDXL,SDXL,1001.
|
| 9 |
-
SDXLTurbo,SDXLTurbo,935.
|
| 10 |
-
LCM(v1.5/XL),LCM(v1.5/XL),932.
|
| 11 |
-
OpenJourney,OpenJourney,
|
| 12 |
-
LCM,LCM,816.
|
|
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
PlayGround V2.5,PlayGround V2.5,1148.136678409811,1150.447617150882,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic
|
| 3 |
+
PlayGround V2,PlayGround V2,1099.2495842883393,1098.3769624420538,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
|
| 4 |
+
StableCascade,StableCascade,1056.7813216192726,1061.2775980734832,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade
|
| 5 |
+
SDXLLightning,SDXLLightning,1056.3881629701646,1059.8359983006494,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning
|
| 6 |
+
PixArtSigma,PixArtSigma,1050.6588983909805,1049.9019852589274,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma
|
| 7 |
+
PixArtAlpha,PixArtAlpha,1050.1258204922178,1038.1819010171778,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS
|
| 8 |
+
SDXL,SDXL,1001.1847782879587,999.8580426291918,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
+
SDXLTurbo,SDXLTurbo,935.2347119130764,933.049481437306,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo
|
| 10 |
+
LCM(v1.5/XL),LCM(v1.5/XL),932.3595672104603,925.8305369502356,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api
|
| 11 |
+
OpenJourney,OpenJourney,853.094967056503,847.6782124021958,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney
|
| 12 |
+
LCM,LCM,816.7855093612186,829.9051004486075,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
arena_elo/results/latest/video_generation_leaderboard.csv
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
-
StableVideoDiffusion,StableVideoDiffusion,
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
VideoCrafter2,VideoCrafter2,
|
| 6 |
-
LaVie,LaVie,
|
| 7 |
-
OpenSora,OpenSora,
|
| 8 |
-
ModelScope,ModelScope,856.
|
| 9 |
-
AnimateDiffTurbo,AnimateDiffTurbo,
|
|
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
StableVideoDiffusion,StableVideoDiffusion,1148.6551122337614,1159.3538266276412,stable-video-diffusion-nc-community,Stability AI,https://fal.ai/models/fal-ai/fast-svd/text-to-video/api
|
| 3 |
+
T2VTurbo,T2VTurbo,1134.3022495677073,1124.4404105066733,cc-by-nc-4.0,"University of California, Santa Barbara",https://huggingface.co/jiachenli-ucsb/T2V-Turbo-VC2
|
| 4 |
+
AnimateDiff,AnimateDiff,1068.182280658803,1066.112960658009,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v
|
| 5 |
+
VideoCrafter2,VideoCrafter2,1062.2218831371833,1063.1081871468969,Apache 2.0,Tencent AI Lab,https://ailab-cvc.github.io/videocrafter2/
|
| 6 |
+
LaVie,LaVie,982.0030996073986,982.0143845325545,Apache 2.0,Shanghai AI Lab,https://github.com/Vchitect/LaVie
|
| 7 |
+
OpenSora,OpenSora,904.4114353398954,904.0996238467394,Apache 2.0,HPC-AI Tech,https://github.com/hpcaitech/Open-Sora
|
| 8 |
+
ModelScope,ModelScope,856.7087803807375,856.3438942029966,cc-by-nc-4.0,Alibaba Group,https://arxiv.org/abs/2308.06571
|
| 9 |
+
AnimateDiffTurbo,AnimateDiffTurbo,843.5151590745159,844.5267124784873,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v-turbo
|
requirements.txt
CHANGED
|
@@ -68,7 +68,4 @@ tensorboard
|
|
| 68 |
timm
|
| 69 |
wandb
|
| 70 |
pandarallel
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
|
|
|
| 68 |
timm
|
| 69 |
wandb
|
| 70 |
pandarallel
|
| 71 |
+
kaleido
|
|
|
|
|
|
|
|
|
serve/leaderboard.py
CHANGED
|
@@ -192,7 +192,7 @@ Contribute your vote 🗳️ at [vision-arena](https://huggingface.co/spaces/Wil
|
|
| 192 |
"""
|
| 193 |
return leaderboard_md
|
| 194 |
|
| 195 |
-
def build_leaderboard_tab(elo_results_file, leaderboard_table_file, show_plot=
|
| 196 |
if elo_results_file is None: # Do live update
|
| 197 |
md = "Loading ..."
|
| 198 |
p1 = p2 = p3 = p4 = None
|
|
@@ -265,12 +265,41 @@ def build_leaderboard_tab(elo_results_file, leaderboard_table_file, show_plot=Fa
|
|
| 265 |
height=700,
|
| 266 |
wrap=True,
|
| 267 |
)
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 274 |
else:
|
| 275 |
pass
|
| 276 |
|
|
|
|
| 192 |
"""
|
| 193 |
return leaderboard_md
|
| 194 |
|
| 195 |
+
def build_leaderboard_tab(elo_results_file, leaderboard_table_file, show_plot=True):
|
| 196 |
if elo_results_file is None: # Do live update
|
| 197 |
md = "Loading ..."
|
| 198 |
p1 = p2 = p3 = p4 = None
|
|
|
|
| 265 |
height=700,
|
| 266 |
wrap=True,
|
| 267 |
)
|
| 268 |
+
|
| 269 |
+
gr.Markdown(
|
| 270 |
+
""" ## We are still collecting more votes on more models. The ranking will be updated very fruquently. Please stay tuned!
|
| 271 |
+
""",
|
| 272 |
+
elem_id="leaderboard_markdown",
|
| 273 |
+
)
|
| 274 |
+
|
| 275 |
+
if show_plot:
|
| 276 |
+
win_fraction_heatmap = anony_elo_results["win_fraction_heatmap"]
|
| 277 |
+
battle_count_heatmap = anony_elo_results["battle_count_heatmap"]
|
| 278 |
+
bootstrap_elo_rating = anony_elo_results["bootstrap_elo_rating"]
|
| 279 |
+
average_win_rate_bar = anony_elo_results["average_win_rate_bar"]
|
| 280 |
+
with gr.Row():
|
| 281 |
+
with gr.Column():
|
| 282 |
+
gr.Markdown(
|
| 283 |
+
"#### Figure 1: Fraction of Model A Wins for All Non-tied A vs. B Battles"
|
| 284 |
+
)
|
| 285 |
+
plot_1 = gr.Plot(win_fraction_heatmap, show_label=False)
|
| 286 |
+
with gr.Column():
|
| 287 |
+
gr.Markdown(
|
| 288 |
+
"#### Figure 2: Battle Count for Each Combination of Models (without Ties)"
|
| 289 |
+
)
|
| 290 |
+
plot_2 = gr.Plot(battle_count_heatmap, show_label=False)
|
| 291 |
+
with gr.Row():
|
| 292 |
+
with gr.Column():
|
| 293 |
+
gr.Markdown(
|
| 294 |
+
"#### Figure 3: Bootstrap of Elo Estimates (1000 Rounds of Random Sampling)"
|
| 295 |
+
)
|
| 296 |
+
plot_3 = gr.Plot(bootstrap_elo_rating, show_label=False)
|
| 297 |
+
with gr.Column():
|
| 298 |
+
gr.Markdown(
|
| 299 |
+
"#### Figure 4: Average Win Rate Against All Other Models (Assuming Uniform Sampling and No Ties)"
|
| 300 |
+
)
|
| 301 |
+
plot_4 = gr.Plot(average_win_rate_bar, show_label=False)
|
| 302 |
+
|
| 303 |
else:
|
| 304 |
pass
|
| 305 |
|