Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
d04ce7c
1
Parent(s):
4778760
update
Browse files- arena_elo/elo_rating/clean_battle_data.py +7 -0
- arena_elo/results/20240527/clean_battle_image_editing.json +0 -0
- arena_elo/results/20240527/clean_battle_t2i_generation.json +0 -0
- arena_elo/results/20240527/clean_battle_video_generation.json +0 -0
- arena_elo/results/20240527/elo_results_image_editing.pkl +3 -0
- arena_elo/results/20240527/elo_results_t2i_generation.pkl +3 -0
- arena_elo/results/20240527/elo_results_video_generation.pkl +3 -0
- arena_elo/results/20240527/image_editing_leaderboard.csv +10 -0
- arena_elo/results/20240527/t2i_generation_leaderboard.csv +12 -0
- arena_elo/results/20240527/video_generation_leaderboard.csv +8 -0
- arena_elo/results/20240528/clean_battle_t2i_generation.json +0 -0
- arena_elo/results/20240528/clean_battle_video_generation.json +0 -0
- arena_elo/results/20240528/elo_results_t2i_generation.pkl +3 -0
- arena_elo/results/20240528/elo_results_video_generation.pkl +3 -0
- arena_elo/results/20240528/t2i_generation_leaderboard.csv +12 -0
- arena_elo/results/20240528/video_generation_leaderboard.csv +8 -0
- arena_elo/results/latest/clean_battle_image_editing.json +64 -8
- arena_elo/results/latest/clean_battle_t2i_generation.json +682 -1234
- arena_elo/results/latest/clean_battle_video_generation.json +0 -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 +7 -6
arena_elo/elo_rating/clean_battle_data.py
CHANGED
|
@@ -151,6 +151,7 @@ def clean_battle_data(
|
|
| 151 |
battles = []
|
| 152 |
for row in tqdm(data, desc="Cleaning"):
|
| 153 |
if row["models"][0] is None or row["models"][1] is None:
|
|
|
|
| 154 |
continue
|
| 155 |
|
| 156 |
# Resolve model names
|
|
@@ -169,6 +170,7 @@ def clean_battle_data(
|
|
| 169 |
models_public[1] == "" and models_public[0] != ""
|
| 170 |
):
|
| 171 |
ct_invalid += 1
|
|
|
|
| 172 |
continue
|
| 173 |
|
| 174 |
if models_public[0] == "" or models_public[0] == "Model A":
|
|
@@ -179,6 +181,7 @@ def clean_battle_data(
|
|
| 179 |
anony = False
|
| 180 |
models = models_public
|
| 181 |
if not models_public == models_hidden:
|
|
|
|
| 182 |
ct_invalid += 1
|
| 183 |
continue
|
| 184 |
|
|
@@ -231,6 +234,7 @@ def clean_battle_data(
|
|
| 231 |
break
|
| 232 |
if not valid:
|
| 233 |
ct_invalid += 1
|
|
|
|
| 234 |
continue
|
| 235 |
for i, _model in enumerate(models):
|
| 236 |
platform, model_name, task = _model.split("_")
|
|
@@ -256,6 +260,7 @@ def clean_battle_data(
|
|
| 256 |
break
|
| 257 |
if not valid:
|
| 258 |
ct_invalid += 1
|
|
|
|
| 259 |
continue
|
| 260 |
for i, _model in enumerate(models):
|
| 261 |
platform, model_name, task = _model.split("_")
|
|
@@ -284,6 +289,7 @@ def clean_battle_data(
|
|
| 284 |
break
|
| 285 |
if not valid:
|
| 286 |
ct_invalid += 1
|
|
|
|
| 287 |
continue
|
| 288 |
for i, _model in enumerate(models):
|
| 289 |
platform, model_name, task = _model.split("_")
|
|
@@ -351,6 +357,7 @@ def clean_battle_data(
|
|
| 351 |
|
| 352 |
if ban_ip_list is not None and ip in ban_ip_list:
|
| 353 |
ct_banned += 1
|
|
|
|
| 354 |
continue
|
| 355 |
|
| 356 |
# Save the results
|
|
|
|
| 151 |
battles = []
|
| 152 |
for row in tqdm(data, desc="Cleaning"):
|
| 153 |
if row["models"][0] is None or row["models"][1] is None:
|
| 154 |
+
print(f"Invalid model names: {row['models']}")
|
| 155 |
continue
|
| 156 |
|
| 157 |
# Resolve model names
|
|
|
|
| 170 |
models_public[1] == "" and models_public[0] != ""
|
| 171 |
):
|
| 172 |
ct_invalid += 1
|
| 173 |
+
print(f"Invalid model names: {models_public}")
|
| 174 |
continue
|
| 175 |
|
| 176 |
if models_public[0] == "" or models_public[0] == "Model A":
|
|
|
|
| 181 |
anony = False
|
| 182 |
models = models_public
|
| 183 |
if not models_public == models_hidden:
|
| 184 |
+
print(f"Model names mismatch: {models_public} vs {models_hidden}")
|
| 185 |
ct_invalid += 1
|
| 186 |
continue
|
| 187 |
|
|
|
|
| 234 |
break
|
| 235 |
if not valid:
|
| 236 |
ct_invalid += 1
|
| 237 |
+
print(f"Invalid model names: {models} for image_editing")
|
| 238 |
continue
|
| 239 |
for i, _model in enumerate(models):
|
| 240 |
platform, model_name, task = _model.split("_")
|
|
|
|
| 260 |
break
|
| 261 |
if not valid:
|
| 262 |
ct_invalid += 1
|
| 263 |
+
print(f"Invalid model names: {models} for t2i_generation")
|
| 264 |
continue
|
| 265 |
for i, _model in enumerate(models):
|
| 266 |
platform, model_name, task = _model.split("_")
|
|
|
|
| 289 |
break
|
| 290 |
if not valid:
|
| 291 |
ct_invalid += 1
|
| 292 |
+
print(f"Invalid model names: {models} for video_generation")
|
| 293 |
continue
|
| 294 |
for i, _model in enumerate(models):
|
| 295 |
platform, model_name, task = _model.split("_")
|
|
|
|
| 357 |
|
| 358 |
if ban_ip_list is not None and ip in ban_ip_list:
|
| 359 |
ct_banned += 1
|
| 360 |
+
print(f"User {user_id} is banned")
|
| 361 |
continue
|
| 362 |
|
| 363 |
# Save the results
|
arena_elo/results/20240527/clean_battle_image_editing.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240527/clean_battle_t2i_generation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240527/clean_battle_video_generation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240527/elo_results_image_editing.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6edf4987c4b28631efb7fa99e3c68444f4b54835c103325c298e1d890f306155
|
| 3 |
+
size 62362
|
arena_elo/results/20240527/elo_results_t2i_generation.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cba3475b3c4e5b9667e471ebc96612ae9c87bab0cb78b86de496a2b1afc8548c
|
| 3 |
+
size 68024
|
arena_elo/results/20240527/elo_results_video_generation.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e267328ac453fad5306fdbb0c61107ed0e0059c789a90e9be6077ba2ad9c88a8
|
| 3 |
+
size 57217
|
arena_elo/results/20240527/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,1113.4601702633233,1114.9499809457182,CC-BY-4.0,"The Ohio State University, University of Waterloo",https://osu-nlp-group.github.io/MagicBrush
|
| 3 |
+
InfEdit,InfEdit,1076.3735770770381,1078.298768921264,Apache-2.0,"University of Michigan, University of California, Berkeley",https://huggingface.co/spaces/sled-umich/InfEdit
|
| 4 |
+
CosXLEdit,CosXLEdit,1064.2254978140068,1065.2558502694496,cosxl-nc-community,Stability AI,https://huggingface.co/spaces/multimodalart/cosxl
|
| 5 |
+
InstructPix2Pix,InstructPix2Pix,1032.7089803075078,1030.5502039749676,"Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros","University of California, Berkeley",https://www.timothybrooks.com/instruct-pix2pix
|
| 6 |
+
PNP,PNP,997.4814111808752,1002.3024164280657,-,Weizmann Institute of Science,https://github.com/MichalGeyer/plug-and-play
|
| 7 |
+
Prompt2prompt,Prompt2prompt,987.231936473214,988.4308236280019,Apache-2.0,"Google, Tel Aviv University",https://prompt-to-prompt.github.io
|
| 8 |
+
CycleDiffusion,CycleDiffusion,938.9851750635415,932.8676126255519,X11,Carnegie Mellon University,https://github.com/ChenWu98/cycle-diffusion
|
| 9 |
+
SDEdit,SDEdit,930.6004411838677,929.6141536709094,MIT License,Stanford University,https://sde-image-editing.github.io
|
| 10 |
+
Pix2PixZero,Pix2PixZero,858.932810636626,857.7301895360717,MIT License,"Carnegie Mellon University, Adobe Research",https://pix2pixzero.github.io
|
arena_elo/results/20240527/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,1139.8910192540554,1146.687232754191,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic
|
| 3 |
+
PlayGround V2,PlayGround V2,1098.262752689204,1098.7810113594705,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
|
| 4 |
+
SDXLLightning,SDXLLightning,1066.8118686617854,1068.3789474536782,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning
|
| 5 |
+
StableCascade,StableCascade,1053.9471993053432,1054.4413227920131,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade
|
| 6 |
+
PixArtAlpha,PixArtAlpha,1053.2932327772553,1041.0547107447828,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS
|
| 7 |
+
PixArtSigma,PixArtSigma,1050.0536938798257,1048.303209818974,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma
|
| 8 |
+
SDXL,SDXL,1001.4842070241889,1000.3231519193034,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
+
LCM(v1.5/XL),LCM(v1.5/XL),934.366139171331,927.4304089486263,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api
|
| 10 |
+
SDXLTurbo,SDXLTurbo,931.7359364439344,931.0456210319286,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo
|
| 11 |
+
OpenJourney,OpenJourney,853.3771481421164,848.1711047509306,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney
|
| 12 |
+
LCM,LCM,816.7768026509566,830.2862033103119,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
arena_elo/results/20240527/video_generation_leaderboard.csv
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
AnimateDiff,AnimateDiff,1153.05979439857,1152.0428734516806,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v
|
| 3 |
+
VideoCrafter2,VideoCrafter2,1132.0829022609964,1134.6985806509838,Apache 2.0,Tencent AI Lab,https://ailab-cvc.github.io/videocrafter2/
|
| 4 |
+
LaVie,LaVie,1034.2592701254162,1036.0633484739249,Apache 2.0,Shanghai AI Lab,https://github.com/Vchitect/LaVie
|
| 5 |
+
OpenSora,OpenSora,979.6409974189793,981.3238611340776,Apache 2.0,HPC-AI Tech,https://github.com/hpcaitech/Open-Sora
|
| 6 |
+
ModelScope,ModelScope,923.9379822922886,925.4260700169908,cc-by-nc-4.0,Alibaba Group,https://arxiv.org/abs/2308.06571
|
| 7 |
+
AnimateDiffTurbo,AnimateDiffTurbo,910.0361394101296,914.166881418381,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v-turbo
|
| 8 |
+
StableVideoDiffusion,StableVideoDiffusion,866.982914093619,856.2783848539632,N/A,N/A,N/A
|
arena_elo/results/20240528/clean_battle_t2i_generation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240528/clean_battle_video_generation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
arena_elo/results/20240528/elo_results_t2i_generation.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b97106b1d926c478ebe1784e4c919155184284fee772facdd008fa3b4a02afa
|
| 3 |
+
size 68023
|
arena_elo/results/20240528/elo_results_video_generation.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3c60583aef9b1ebed11bc011ee71066d553fc4469ab36fe9e1a69bdd7f045f1
|
| 3 |
+
size 57226
|
arena_elo/results/20240528/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,1142.7117002337504,1146.9363438085231,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic
|
| 3 |
+
PlayGround V2,PlayGround V2,1098.8454521501767,1099.7665759662905,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
|
| 4 |
+
SDXLLightning,SDXLLightning,1060.1273568149945,1062.6699858648572,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning
|
| 5 |
+
StableCascade,StableCascade,1057.3443292150273,1057.342442192608,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade
|
| 6 |
+
PixArtAlpha,PixArtAlpha,1053.175982335811,1040.650593249443,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS
|
| 7 |
+
PixArtSigma,PixArtSigma,1052.5095907498117,1051.4130097337882,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma
|
| 8 |
+
SDXL,SDXL,999.9885142114025,999.3532207465602,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
+
SDXLTurbo,SDXLTurbo,932.9204637230577,932.3395772992475,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo
|
| 10 |
+
LCM(v1.5/XL),LCM(v1.5/XL),932.3960486321375,925.7743131744076,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api
|
| 11 |
+
OpenJourney,OpenJourney,853.2642690431031,848.1055360442166,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney
|
| 12 |
+
LCM,LCM,816.7162928907261,830.3440920761234,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
arena_elo/results/20240528/video_generation_leaderboard.csv
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
AnimateDiff,AnimateDiff,1152.0856885350188,1151.0162844753168,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v
|
| 3 |
+
VideoCrafter2,VideoCrafter2,1133.1007019381395,1135.6926816244604,Apache 2.0,Tencent AI Lab,https://ailab-cvc.github.io/videocrafter2/
|
| 4 |
+
LaVie,LaVie,1033.7517715333445,1035.5659090630193,Apache 2.0,Shanghai AI Lab,https://github.com/Vchitect/LaVie
|
| 5 |
+
OpenSora,OpenSora,981.0443881053995,982.7176909892552,Apache 2.0,HPC-AI Tech,https://github.com/hpcaitech/Open-Sora
|
| 6 |
+
ModelScope,ModelScope,925.4949965722631,926.9772247294472,cc-by-nc-4.0,Alibaba Group,https://arxiv.org/abs/2308.06571
|
| 7 |
+
AnimateDiffTurbo,AnimateDiffTurbo,908.2458421360755,912.3411648048902,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v-turbo
|
| 8 |
+
StableVideoDiffusion,StableVideoDiffusion,866.2766111797596,855.6890443136105,N/A,N/A,N/A
|
arena_elo/results/latest/clean_battle_image_editing.json
CHANGED
|
@@ -4167,14 +4167,6 @@
|
|
| 4167 |
"anony": true,
|
| 4168 |
"tstamp": 1716645603.2374
|
| 4169 |
},
|
| 4170 |
-
{
|
| 4171 |
-
"model_a": "InfEdit",
|
| 4172 |
-
"model_b": "SDEdit",
|
| 4173 |
-
"winner": "model_a",
|
| 4174 |
-
"judge": "arena_user_10.16.3.14",
|
| 4175 |
-
"anony": true,
|
| 4176 |
-
"tstamp": 1716646046.1372
|
| 4177 |
-
},
|
| 4178 |
{
|
| 4179 |
"model_a": "Prompt2prompt",
|
| 4180 |
"model_b": "Pix2PixZero",
|
|
@@ -8822,5 +8814,69 @@
|
|
| 8822 |
"judge": "arena_user_10.16.9.183",
|
| 8823 |
"anony": true,
|
| 8824 |
"tstamp": 1716785661.2337
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8825 |
}
|
| 8826 |
]
|
|
|
|
| 4167 |
"anony": true,
|
| 4168 |
"tstamp": 1716645603.2374
|
| 4169 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4170 |
{
|
| 4171 |
"model_a": "Prompt2prompt",
|
| 4172 |
"model_b": "Pix2PixZero",
|
|
|
|
| 8814 |
"judge": "arena_user_10.16.9.183",
|
| 8815 |
"anony": true,
|
| 8816 |
"tstamp": 1716785661.2337
|
| 8817 |
+
},
|
| 8818 |
+
{
|
| 8819 |
+
"model_a": "InfEdit",
|
| 8820 |
+
"model_b": "InstructPix2Pix",
|
| 8821 |
+
"winner": "model_a",
|
| 8822 |
+
"judge": "arena_user_10.16.9.183",
|
| 8823 |
+
"anony": true,
|
| 8824 |
+
"tstamp": 1716791578.2263
|
| 8825 |
+
},
|
| 8826 |
+
{
|
| 8827 |
+
"model_a": "MagicBrush",
|
| 8828 |
+
"model_b": "CycleDiffusion",
|
| 8829 |
+
"winner": "model_a",
|
| 8830 |
+
"judge": "arena_user_10.16.27.38",
|
| 8831 |
+
"anony": true,
|
| 8832 |
+
"tstamp": 1716848213.9411
|
| 8833 |
+
},
|
| 8834 |
+
{
|
| 8835 |
+
"model_a": "InstructPix2Pix",
|
| 8836 |
+
"model_b": "CycleDiffusion",
|
| 8837 |
+
"winner": "model_a",
|
| 8838 |
+
"judge": "arena_user_10.16.9.183",
|
| 8839 |
+
"anony": true,
|
| 8840 |
+
"tstamp": 1716848236.6724
|
| 8841 |
+
},
|
| 8842 |
+
{
|
| 8843 |
+
"model_a": "CosXLEdit",
|
| 8844 |
+
"model_b": "MagicBrush",
|
| 8845 |
+
"winner": "model_b",
|
| 8846 |
+
"judge": "arena_user_10.16.9.183",
|
| 8847 |
+
"anony": true,
|
| 8848 |
+
"tstamp": 1716848256.6296
|
| 8849 |
+
},
|
| 8850 |
+
{
|
| 8851 |
+
"model_a": "Prompt2prompt",
|
| 8852 |
+
"model_b": "SDEdit",
|
| 8853 |
+
"winner": "model_a",
|
| 8854 |
+
"judge": "arena_user_10.16.27.38",
|
| 8855 |
+
"anony": true,
|
| 8856 |
+
"tstamp": 1716848276.9927
|
| 8857 |
+
},
|
| 8858 |
+
{
|
| 8859 |
+
"model_a": "SDEdit",
|
| 8860 |
+
"model_b": "InfEdit",
|
| 8861 |
+
"winner": "tie (bothbad)",
|
| 8862 |
+
"judge": "arena_user_10.16.27.38",
|
| 8863 |
+
"anony": true,
|
| 8864 |
+
"tstamp": 1716848291.9049
|
| 8865 |
+
},
|
| 8866 |
+
{
|
| 8867 |
+
"model_a": "InstructPix2Pix",
|
| 8868 |
+
"model_b": "InfEdit",
|
| 8869 |
+
"winner": "tie (bothbad)",
|
| 8870 |
+
"judge": "arena_user_10.16.27.38",
|
| 8871 |
+
"anony": true,
|
| 8872 |
+
"tstamp": 1716848303.7966
|
| 8873 |
+
},
|
| 8874 |
+
{
|
| 8875 |
+
"model_a": "MagicBrush",
|
| 8876 |
+
"model_b": "InfEdit",
|
| 8877 |
+
"winner": "model_b",
|
| 8878 |
+
"judge": "arena_user_10.16.9.183",
|
| 8879 |
+
"anony": true,
|
| 8880 |
+
"tstamp": 1716848321.8917
|
| 8881 |
}
|
| 8882 |
]
|
arena_elo/results/latest/clean_battle_t2i_generation.json
CHANGED
|
@@ -39039,22 +39039,6 @@
|
|
| 39039 |
"anony": true,
|
| 39040 |
"tstamp": 1716431811.1067
|
| 39041 |
},
|
| 39042 |
-
{
|
| 39043 |
-
"model_a": "PlayGround V2.5",
|
| 39044 |
-
"model_b": "SDXLLightning",
|
| 39045 |
-
"winner": "model_b",
|
| 39046 |
-
"judge": "arena_user_10.16.2.201",
|
| 39047 |
-
"anony": true,
|
| 39048 |
-
"tstamp": 1716450118.5001
|
| 39049 |
-
},
|
| 39050 |
-
{
|
| 39051 |
-
"model_a": "OpenJourney",
|
| 39052 |
-
"model_b": "PlayGround V2",
|
| 39053 |
-
"winner": "model_b",
|
| 39054 |
-
"judge": "arena_user_10.16.47.232",
|
| 39055 |
-
"anony": true,
|
| 39056 |
-
"tstamp": 1716450793.7853
|
| 39057 |
-
},
|
| 39058 |
{
|
| 39059 |
"model_a": "SDXLTurbo",
|
| 39060 |
"model_b": "PixArtAlpha",
|
|
@@ -39071,62 +39055,6 @@
|
|
| 39071 |
"anony": true,
|
| 39072 |
"tstamp": 1716455955.7955
|
| 39073 |
},
|
| 39074 |
-
{
|
| 39075 |
-
"model_a": "SDXLTurbo",
|
| 39076 |
-
"model_b": "SDXLLightning",
|
| 39077 |
-
"winner": "model_b",
|
| 39078 |
-
"judge": "arena_user_10.16.13.208",
|
| 39079 |
-
"anony": true,
|
| 39080 |
-
"tstamp": 1716457978.0237
|
| 39081 |
-
},
|
| 39082 |
-
{
|
| 39083 |
-
"model_a": "PixArtAlpha",
|
| 39084 |
-
"model_b": "SDXLLightning",
|
| 39085 |
-
"winner": "model_b",
|
| 39086 |
-
"judge": "arena_user_10.16.47.232",
|
| 39087 |
-
"anony": true,
|
| 39088 |
-
"tstamp": 1716458225.9763
|
| 39089 |
-
},
|
| 39090 |
-
{
|
| 39091 |
-
"model_a": "OpenJourney",
|
| 39092 |
-
"model_b": "LCM(v1.5/XL)",
|
| 39093 |
-
"winner": "tie (bothbad)",
|
| 39094 |
-
"judge": "arena_user_10.16.47.232",
|
| 39095 |
-
"anony": true,
|
| 39096 |
-
"tstamp": 1716458248.4504
|
| 39097 |
-
},
|
| 39098 |
-
{
|
| 39099 |
-
"model_a": "SDXLLightning",
|
| 39100 |
-
"model_b": "PixArtSigma",
|
| 39101 |
-
"winner": "model_a",
|
| 39102 |
-
"judge": "arena_user_10.16.38.210",
|
| 39103 |
-
"anony": true,
|
| 39104 |
-
"tstamp": 1716462945.118
|
| 39105 |
-
},
|
| 39106 |
-
{
|
| 39107 |
-
"model_a": "PixArtAlpha",
|
| 39108 |
-
"model_b": "LCM(v1.5/XL)",
|
| 39109 |
-
"winner": "model_b",
|
| 39110 |
-
"judge": "arena_user_10.16.47.232",
|
| 39111 |
-
"anony": true,
|
| 39112 |
-
"tstamp": 1716463010.5927
|
| 39113 |
-
},
|
| 39114 |
-
{
|
| 39115 |
-
"model_a": "LCM(v1.5/XL)",
|
| 39116 |
-
"model_b": "PixArtAlpha",
|
| 39117 |
-
"winner": "tie (bothbad)",
|
| 39118 |
-
"judge": "arena_user_10.16.47.232",
|
| 39119 |
-
"anony": true,
|
| 39120 |
-
"tstamp": 1716463052.7326
|
| 39121 |
-
},
|
| 39122 |
-
{
|
| 39123 |
-
"model_a": "SDXLTurbo",
|
| 39124 |
-
"model_b": "SDXL",
|
| 39125 |
-
"winner": "tie (bothbad)",
|
| 39126 |
-
"judge": "arena_user_10.16.38.210",
|
| 39127 |
-
"anony": true,
|
| 39128 |
-
"tstamp": 1716463079.2945
|
| 39129 |
-
},
|
| 39130 |
{
|
| 39131 |
"model_a": "SDXLLightning",
|
| 39132 |
"model_b": "PixArtSigma",
|
|
@@ -39151,22 +39079,6 @@
|
|
| 39151 |
"anony": true,
|
| 39152 |
"tstamp": 1716464883.9242
|
| 39153 |
},
|
| 39154 |
-
{
|
| 39155 |
-
"model_a": "PlayGround V2",
|
| 39156 |
-
"model_b": "LCM(v1.5/XL)",
|
| 39157 |
-
"winner": "tie",
|
| 39158 |
-
"judge": "arena_user_10.16.47.232",
|
| 39159 |
-
"anony": true,
|
| 39160 |
-
"tstamp": 1716464922.8799
|
| 39161 |
-
},
|
| 39162 |
-
{
|
| 39163 |
-
"model_a": "PlayGround V2.5",
|
| 39164 |
-
"model_b": "OpenJourney",
|
| 39165 |
-
"winner": "tie",
|
| 39166 |
-
"judge": "arena_user_10.16.38.210",
|
| 39167 |
-
"anony": true,
|
| 39168 |
-
"tstamp": 1716465012.8038
|
| 39169 |
-
},
|
| 39170 |
{
|
| 39171 |
"model_a": "SDXL",
|
| 39172 |
"model_b": "SDXLLightning",
|
|
@@ -39191,30 +39103,6 @@
|
|
| 39191 |
"anony": true,
|
| 39192 |
"tstamp": 1716465158.8835
|
| 39193 |
},
|
| 39194 |
-
{
|
| 39195 |
-
"model_a": "OpenJourney",
|
| 39196 |
-
"model_b": "PlayGround V2.5",
|
| 39197 |
-
"winner": "tie",
|
| 39198 |
-
"judge": "arena_user_10.16.27.38",
|
| 39199 |
-
"anony": true,
|
| 39200 |
-
"tstamp": 1716465217.6185
|
| 39201 |
-
},
|
| 39202 |
-
{
|
| 39203 |
-
"model_a": "PixArtAlpha",
|
| 39204 |
-
"model_b": "StableCascade",
|
| 39205 |
-
"winner": "model_a",
|
| 39206 |
-
"judge": "arena_user_10.16.38.210",
|
| 39207 |
-
"anony": true,
|
| 39208 |
-
"tstamp": 1716465238.6722
|
| 39209 |
-
},
|
| 39210 |
-
{
|
| 39211 |
-
"model_a": "SDXL",
|
| 39212 |
-
"model_b": "PlayGround V2.5",
|
| 39213 |
-
"winner": "model_b",
|
| 39214 |
-
"judge": "arena_user_10.16.27.38",
|
| 39215 |
-
"anony": true,
|
| 39216 |
-
"tstamp": 1716465271.103
|
| 39217 |
-
},
|
| 39218 |
{
|
| 39219 |
"model_a": "PlayGround V2.5",
|
| 39220 |
"model_b": "SDXLLightning",
|
|
@@ -39223,22 +39111,6 @@
|
|
| 39223 |
"anony": true,
|
| 39224 |
"tstamp": 1716465320.7672
|
| 39225 |
},
|
| 39226 |
-
{
|
| 39227 |
-
"model_a": "OpenJourney",
|
| 39228 |
-
"model_b": "SDXLTurbo",
|
| 39229 |
-
"winner": "tie",
|
| 39230 |
-
"judge": "arena_user_10.16.47.232",
|
| 39231 |
-
"anony": true,
|
| 39232 |
-
"tstamp": 1716465461.646
|
| 39233 |
-
},
|
| 39234 |
-
{
|
| 39235 |
-
"model_a": "PlayGround V2",
|
| 39236 |
-
"model_b": "SDXLTurbo",
|
| 39237 |
-
"winner": "tie",
|
| 39238 |
-
"judge": "arena_user_10.16.13.208",
|
| 39239 |
-
"anony": true,
|
| 39240 |
-
"tstamp": 1716465948.4394
|
| 39241 |
-
},
|
| 39242 |
{
|
| 39243 |
"model_a": "PlayGround V2",
|
| 39244 |
"model_b": "SDXL",
|
|
@@ -39287,22 +39159,6 @@
|
|
| 39287 |
"anony": false,
|
| 39288 |
"tstamp": 1716473646.5102
|
| 39289 |
},
|
| 39290 |
-
{
|
| 39291 |
-
"model_a": "PlayGround V2.5",
|
| 39292 |
-
"model_b": "StableCascade",
|
| 39293 |
-
"winner": "model_b",
|
| 39294 |
-
"judge": "arena_user_10.16.9.183",
|
| 39295 |
-
"anony": false,
|
| 39296 |
-
"tstamp": 1716473694.7222
|
| 39297 |
-
},
|
| 39298 |
-
{
|
| 39299 |
-
"model_a": "PlayGround V2.5",
|
| 39300 |
-
"model_b": "StableCascade",
|
| 39301 |
-
"winner": "model_a",
|
| 39302 |
-
"judge": "arena_user_10.16.9.183",
|
| 39303 |
-
"anony": false,
|
| 39304 |
-
"tstamp": 1716473748.2485
|
| 39305 |
-
},
|
| 39306 |
{
|
| 39307 |
"model_a": "PlayGround V2.5",
|
| 39308 |
"model_b": "SDXLLightning",
|
|
@@ -39319,22 +39175,6 @@
|
|
| 39319 |
"anony": true,
|
| 39320 |
"tstamp": 1716481830.2832
|
| 39321 |
},
|
| 39322 |
-
{
|
| 39323 |
-
"model_a": "SDXLLightning",
|
| 39324 |
-
"model_b": "StableCascade",
|
| 39325 |
-
"winner": "model_a",
|
| 39326 |
-
"judge": "arena_user_10.16.27.38",
|
| 39327 |
-
"anony": true,
|
| 39328 |
-
"tstamp": 1716481918.5028
|
| 39329 |
-
},
|
| 39330 |
-
{
|
| 39331 |
-
"model_a": "SDXLLightning",
|
| 39332 |
-
"model_b": "SDXLTurbo",
|
| 39333 |
-
"winner": "model_a",
|
| 39334 |
-
"judge": "arena_user_10.16.27.38",
|
| 39335 |
-
"anony": true,
|
| 39336 |
-
"tstamp": 1716481975.5624
|
| 39337 |
-
},
|
| 39338 |
{
|
| 39339 |
"model_a": "SDXLTurbo",
|
| 39340 |
"model_b": "PixArtAlpha",
|
|
@@ -39359,22 +39199,6 @@
|
|
| 39359 |
"anony": true,
|
| 39360 |
"tstamp": 1716482665.9327
|
| 39361 |
},
|
| 39362 |
-
{
|
| 39363 |
-
"model_a": "SDXLTurbo",
|
| 39364 |
-
"model_b": "PlayGround V2.5",
|
| 39365 |
-
"winner": "model_b",
|
| 39366 |
-
"judge": "arena_user_10.16.3.14",
|
| 39367 |
-
"anony": true,
|
| 39368 |
-
"tstamp": 1716482873.3533
|
| 39369 |
-
},
|
| 39370 |
-
{
|
| 39371 |
-
"model_a": "SDXLTurbo",
|
| 39372 |
-
"model_b": "PixArtSigma",
|
| 39373 |
-
"winner": "model_b",
|
| 39374 |
-
"judge": "arena_user_10.16.27.38",
|
| 39375 |
-
"anony": true,
|
| 39376 |
-
"tstamp": 1716482905.5916
|
| 39377 |
-
},
|
| 39378 |
{
|
| 39379 |
"model_a": "PlayGround V2.5",
|
| 39380 |
"model_b": "SDXLTurbo",
|
|
@@ -39391,30 +39215,6 @@
|
|
| 39391 |
"anony": true,
|
| 39392 |
"tstamp": 1716483130.6731
|
| 39393 |
},
|
| 39394 |
-
{
|
| 39395 |
-
"model_a": "PixArtSigma",
|
| 39396 |
-
"model_b": "LCM(v1.5/XL)",
|
| 39397 |
-
"winner": "model_a",
|
| 39398 |
-
"judge": "arena_user_10.16.3.14",
|
| 39399 |
-
"anony": true,
|
| 39400 |
-
"tstamp": 1716483227.6309
|
| 39401 |
-
},
|
| 39402 |
-
{
|
| 39403 |
-
"model_a": "StableCascade",
|
| 39404 |
-
"model_b": "OpenJourney",
|
| 39405 |
-
"winner": "tie (bothbad)",
|
| 39406 |
-
"judge": "arena_user_10.16.9.183",
|
| 39407 |
-
"anony": true,
|
| 39408 |
-
"tstamp": 1716483261.6962
|
| 39409 |
-
},
|
| 39410 |
-
{
|
| 39411 |
-
"model_a": "OpenJourney",
|
| 39412 |
-
"model_b": "SDXL",
|
| 39413 |
-
"winner": "model_b",
|
| 39414 |
-
"judge": "arena_user_10.16.27.38",
|
| 39415 |
-
"anony": true,
|
| 39416 |
-
"tstamp": 1716486797.4071
|
| 39417 |
-
},
|
| 39418 |
{
|
| 39419 |
"model_a": "PixArtSigma",
|
| 39420 |
"model_b": "PixArtAlpha",
|
|
@@ -39439,14 +39239,6 @@
|
|
| 39439 |
"anony": true,
|
| 39440 |
"tstamp": 1716491961.101
|
| 39441 |
},
|
| 39442 |
-
{
|
| 39443 |
-
"model_a": "PixArtSigma",
|
| 39444 |
-
"model_b": "PixArtAlpha",
|
| 39445 |
-
"winner": "model_b",
|
| 39446 |
-
"judge": "arena_user_10.16.43.115",
|
| 39447 |
-
"anony": true,
|
| 39448 |
-
"tstamp": 1716492019.4859
|
| 39449 |
-
},
|
| 39450 |
{
|
| 39451 |
"model_a": "LCM(v1.5/XL)",
|
| 39452 |
"model_b": "SDXL",
|
|
@@ -39463,22 +39255,6 @@
|
|
| 39463 |
"anony": true,
|
| 39464 |
"tstamp": 1716492165.0747
|
| 39465 |
},
|
| 39466 |
-
{
|
| 39467 |
-
"model_a": "SDXLLightning",
|
| 39468 |
-
"model_b": "PixArtSigma",
|
| 39469 |
-
"winner": "model_a",
|
| 39470 |
-
"judge": "arena_user_10.16.9.183",
|
| 39471 |
-
"anony": true,
|
| 39472 |
-
"tstamp": 1716492306.9555
|
| 39473 |
-
},
|
| 39474 |
-
{
|
| 39475 |
-
"model_a": "SDXLLightning",
|
| 39476 |
-
"model_b": "LCM(v1.5/XL)",
|
| 39477 |
-
"winner": "model_a",
|
| 39478 |
-
"judge": "arena_user_10.16.9.183",
|
| 39479 |
-
"anony": true,
|
| 39480 |
-
"tstamp": 1716492822.692
|
| 39481 |
-
},
|
| 39482 |
{
|
| 39483 |
"model_a": "SDXLTurbo",
|
| 39484 |
"model_b": "PixArtSigma",
|
|
@@ -39487,14 +39263,6 @@
|
|
| 39487 |
"anony": true,
|
| 39488 |
"tstamp": 1716493052.5738
|
| 39489 |
},
|
| 39490 |
-
{
|
| 39491 |
-
"model_a": "PlayGround V2.5",
|
| 39492 |
-
"model_b": "SDXLLightning",
|
| 39493 |
-
"winner": "model_a",
|
| 39494 |
-
"judge": "arena_user_10.16.3.14",
|
| 39495 |
-
"anony": true,
|
| 39496 |
-
"tstamp": 1716494692.3029
|
| 39497 |
-
},
|
| 39498 |
{
|
| 39499 |
"model_a": "PlayGround V2.5",
|
| 39500 |
"model_b": "SDXL",
|
|
@@ -39519,14 +39287,6 @@
|
|
| 39519 |
"anony": true,
|
| 39520 |
"tstamp": 1716494907.8652
|
| 39521 |
},
|
| 39522 |
-
{
|
| 39523 |
-
"model_a": "PixArtSigma",
|
| 39524 |
-
"model_b": "PlayGround V2.5",
|
| 39525 |
-
"winner": "model_b",
|
| 39526 |
-
"judge": "arena_user_10.16.9.183",
|
| 39527 |
-
"anony": false,
|
| 39528 |
-
"tstamp": 1716494980.5166
|
| 39529 |
-
},
|
| 39530 |
{
|
| 39531 |
"model_a": "SDXL",
|
| 39532 |
"model_b": "PlayGround V2.5",
|
|
@@ -39535,14 +39295,6 @@
|
|
| 39535 |
"anony": false,
|
| 39536 |
"tstamp": 1716495025.0063
|
| 39537 |
},
|
| 39538 |
-
{
|
| 39539 |
-
"model_a": "PlayGround V2",
|
| 39540 |
-
"model_b": "SDXL",
|
| 39541 |
-
"winner": "model_a",
|
| 39542 |
-
"judge": "arena_user_10.16.3.14",
|
| 39543 |
-
"anony": true,
|
| 39544 |
-
"tstamp": 1716495051.0207
|
| 39545 |
-
},
|
| 39546 |
{
|
| 39547 |
"model_a": "SDXL",
|
| 39548 |
"model_b": "StableCascade",
|
|
@@ -39568,1667 +39320,1363 @@
|
|
| 39568 |
"tstamp": 1716497278.1725
|
| 39569 |
},
|
| 39570 |
{
|
| 39571 |
-
"model_a": "
|
| 39572 |
-
"model_b": "
|
| 39573 |
-
"winner": "tie",
|
| 39574 |
-
"judge": "arena_user_10.16.
|
| 39575 |
"anony": true,
|
| 39576 |
-
"tstamp":
|
| 39577 |
},
|
| 39578 |
{
|
| 39579 |
-
"model_a": "
|
| 39580 |
-
"model_b": "
|
| 39581 |
"winner": "tie (bothbad)",
|
| 39582 |
-
"judge": "arena_user_10.16.
|
| 39583 |
"anony": true,
|
| 39584 |
-
"tstamp":
|
| 39585 |
},
|
| 39586 |
{
|
| 39587 |
-
"model_a": "
|
| 39588 |
"model_b": "LCM(v1.5/XL)",
|
| 39589 |
-
"winner": "
|
| 39590 |
"judge": "arena_user_10.16.3.14",
|
| 39591 |
"anony": true,
|
| 39592 |
-
"tstamp":
|
| 39593 |
},
|
| 39594 |
{
|
| 39595 |
"model_a": "LCM(v1.5/XL)",
|
| 39596 |
-
"model_b": "
|
| 39597 |
-
"winner": "tie
|
| 39598 |
"judge": "arena_user_10.16.9.183",
|
| 39599 |
"anony": true,
|
| 39600 |
-
"tstamp":
|
| 39601 |
},
|
| 39602 |
{
|
| 39603 |
-
"model_a": "
|
| 39604 |
-
"model_b": "
|
| 39605 |
-
"winner": "
|
| 39606 |
-
"judge": "arena_user_10.16.
|
| 39607 |
"anony": true,
|
| 39608 |
-
"tstamp":
|
| 39609 |
},
|
| 39610 |
{
|
| 39611 |
-
"model_a": "
|
| 39612 |
-
"model_b": "
|
| 39613 |
-
"winner": "
|
| 39614 |
-
"judge": "arena_user_10.16.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39615 |
"anony": true,
|
| 39616 |
-
"tstamp":
|
| 39617 |
},
|
| 39618 |
{
|
| 39619 |
"model_a": "PixArtSigma",
|
| 39620 |
-
"model_b": "
|
| 39621 |
"winner": "model_a",
|
| 39622 |
"judge": "arena_user_10.16.9.183",
|
| 39623 |
"anony": true,
|
| 39624 |
-
"tstamp":
|
| 39625 |
},
|
| 39626 |
{
|
| 39627 |
"model_a": "PlayGround V2",
|
| 39628 |
"model_b": "StableCascade",
|
| 39629 |
"winner": "model_a",
|
| 39630 |
-
"judge": "arena_user_10.16.
|
| 39631 |
"anony": true,
|
| 39632 |
-
"tstamp":
|
| 39633 |
},
|
| 39634 |
{
|
| 39635 |
-
"model_a": "
|
| 39636 |
-
"model_b": "
|
| 39637 |
-
"winner": "
|
| 39638 |
-
"judge": "arena_user_10.16.
|
| 39639 |
"anony": true,
|
| 39640 |
-
"tstamp":
|
| 39641 |
},
|
| 39642 |
{
|
| 39643 |
-
"model_a": "
|
| 39644 |
-
"model_b": "
|
| 39645 |
-
"winner": "
|
| 39646 |
-
"judge": "arena_user_10.16.
|
| 39647 |
"anony": true,
|
| 39648 |
-
"tstamp":
|
| 39649 |
},
|
| 39650 |
{
|
| 39651 |
-
"model_a": "
|
| 39652 |
-
"model_b": "
|
| 39653 |
"winner": "model_b",
|
| 39654 |
-
"judge": "arena_user_10.16.
|
| 39655 |
"anony": true,
|
| 39656 |
-
"tstamp":
|
| 39657 |
},
|
| 39658 |
{
|
| 39659 |
-
"model_a": "
|
| 39660 |
-
"model_b": "
|
| 39661 |
"winner": "model_b",
|
| 39662 |
-
"judge": "arena_user_10.16.
|
| 39663 |
"anony": true,
|
| 39664 |
-
"tstamp":
|
| 39665 |
},
|
| 39666 |
{
|
| 39667 |
"model_a": "SDXLLightning",
|
| 39668 |
-
"model_b": "
|
| 39669 |
"winner": "model_a",
|
| 39670 |
"judge": "arena_user_10.16.9.183",
|
| 39671 |
"anony": true,
|
| 39672 |
-
"tstamp":
|
| 39673 |
},
|
| 39674 |
{
|
| 39675 |
-
"model_a": "
|
| 39676 |
-
"model_b": "
|
| 39677 |
-
"winner": "
|
| 39678 |
-
"judge": "arena_user_10.16.
|
| 39679 |
"anony": true,
|
| 39680 |
-
"tstamp":
|
| 39681 |
},
|
| 39682 |
{
|
| 39683 |
-
"model_a": "
|
| 39684 |
-
"model_b": "
|
| 39685 |
"winner": "model_b",
|
| 39686 |
-
"judge": "arena_user_10.16.
|
| 39687 |
"anony": true,
|
| 39688 |
-
"tstamp":
|
| 39689 |
},
|
| 39690 |
{
|
| 39691 |
-
"model_a": "
|
| 39692 |
"model_b": "SDXLLightning",
|
| 39693 |
"winner": "model_b",
|
| 39694 |
-
"judge": "arena_user_10.16.
|
| 39695 |
"anony": true,
|
| 39696 |
-
"tstamp":
|
| 39697 |
},
|
| 39698 |
{
|
| 39699 |
-
"model_a": "
|
| 39700 |
-
"model_b": "
|
| 39701 |
-
"winner": "
|
| 39702 |
-
"judge": "arena_user_10.16.
|
| 39703 |
"anony": true,
|
| 39704 |
-
"tstamp":
|
| 39705 |
},
|
| 39706 |
{
|
| 39707 |
-
"model_a": "
|
| 39708 |
-
"model_b": "
|
| 39709 |
"winner": "model_b",
|
| 39710 |
-
"judge": "arena_user_10.16.
|
| 39711 |
"anony": true,
|
| 39712 |
-
"tstamp":
|
| 39713 |
},
|
| 39714 |
{
|
| 39715 |
"model_a": "StableCascade",
|
| 39716 |
-
"model_b": "
|
| 39717 |
-
"winner": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39718 |
"judge": "arena_user_10.16.27.38",
|
| 39719 |
"anony": true,
|
| 39720 |
-
"tstamp":
|
| 39721 |
},
|
| 39722 |
{
|
| 39723 |
-
"model_a": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39724 |
"model_b": "PlayGround V2",
|
| 39725 |
"winner": "model_a",
|
| 39726 |
"judge": "arena_user_10.16.9.183",
|
| 39727 |
"anony": true,
|
| 39728 |
-
"tstamp":
|
| 39729 |
},
|
| 39730 |
{
|
| 39731 |
-
"model_a": "
|
| 39732 |
-
"model_b": "
|
| 39733 |
"winner": "model_a",
|
| 39734 |
-
"judge": "arena_user_10.16.
|
| 39735 |
"anony": true,
|
| 39736 |
-
"tstamp":
|
| 39737 |
},
|
| 39738 |
{
|
| 39739 |
-
"model_a": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39740 |
"model_b": "PixArtAlpha",
|
| 39741 |
"winner": "model_a",
|
| 39742 |
-
"judge": "arena_user_10.16.
|
| 39743 |
"anony": true,
|
| 39744 |
-
"tstamp":
|
| 39745 |
},
|
| 39746 |
{
|
| 39747 |
"model_a": "OpenJourney",
|
| 39748 |
"model_b": "PixArtSigma",
|
| 39749 |
-
"winner": "
|
| 39750 |
-
"judge": "arena_user_10.16.
|
| 39751 |
"anony": true,
|
| 39752 |
-
"tstamp":
|
| 39753 |
},
|
| 39754 |
{
|
| 39755 |
-
"model_a": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39756 |
"model_b": "OpenJourney",
|
| 39757 |
"winner": "tie (bothbad)",
|
| 39758 |
-
"judge": "arena_user_10.16.
|
| 39759 |
"anony": true,
|
| 39760 |
-
"tstamp":
|
| 39761 |
},
|
| 39762 |
{
|
| 39763 |
-
"model_a": "
|
| 39764 |
"model_b": "OpenJourney",
|
| 39765 |
-
"winner": "
|
| 39766 |
-
"judge": "arena_user_10.16.
|
| 39767 |
"anony": true,
|
| 39768 |
-
"tstamp":
|
| 39769 |
},
|
| 39770 |
{
|
| 39771 |
-
"model_a": "
|
| 39772 |
"model_b": "SDXLLightning",
|
| 39773 |
"winner": "model_b",
|
| 39774 |
"judge": "arena_user_10.16.3.14",
|
| 39775 |
"anony": true,
|
| 39776 |
-
"tstamp":
|
| 39777 |
-
},
|
| 39778 |
-
{
|
| 39779 |
-
"model_a": "OpenJourney",
|
| 39780 |
-
"model_b": "SDXLLightning",
|
| 39781 |
-
"winner": "tie (bothbad)",
|
| 39782 |
-
"judge": "arena_user_10.16.9.183",
|
| 39783 |
-
"anony": true,
|
| 39784 |
-
"tstamp": 1716507895.6605
|
| 39785 |
},
|
| 39786 |
{
|
| 39787 |
-
"model_a": "
|
| 39788 |
-
"model_b": "
|
| 39789 |
"winner": "tie",
|
| 39790 |
-
"judge": "arena_user_10.16.
|
| 39791 |
"anony": true,
|
| 39792 |
-
"tstamp":
|
| 39793 |
},
|
| 39794 |
{
|
| 39795 |
-
"model_a": "
|
| 39796 |
-
"model_b": "
|
| 39797 |
-
"winner": "
|
| 39798 |
-
"judge": "arena_user_10.16.
|
| 39799 |
"anony": true,
|
| 39800 |
-
"tstamp":
|
| 39801 |
},
|
| 39802 |
{
|
| 39803 |
-
"model_a": "
|
| 39804 |
-
"model_b": "
|
| 39805 |
-
"winner": "
|
| 39806 |
"judge": "arena_user_10.16.3.14",
|
| 39807 |
"anony": true,
|
| 39808 |
-
"tstamp":
|
| 39809 |
},
|
| 39810 |
{
|
| 39811 |
-
"model_a": "
|
| 39812 |
-
"model_b": "
|
| 39813 |
-
"winner": "
|
| 39814 |
"judge": "arena_user_10.16.3.14",
|
| 39815 |
"anony": true,
|
| 39816 |
-
"tstamp":
|
| 39817 |
},
|
| 39818 |
{
|
| 39819 |
-
"model_a": "
|
| 39820 |
-
"model_b": "
|
| 39821 |
-
"winner": "
|
| 39822 |
-
"judge": "arena_user_10.16.
|
| 39823 |
"anony": true,
|
| 39824 |
-
"tstamp":
|
| 39825 |
},
|
| 39826 |
{
|
| 39827 |
-
"model_a": "
|
| 39828 |
"model_b": "SDXL",
|
| 39829 |
"winner": "model_b",
|
| 39830 |
-
"judge": "arena_user_10.16.
|
| 39831 |
"anony": true,
|
| 39832 |
-
"tstamp":
|
| 39833 |
},
|
| 39834 |
{
|
| 39835 |
-
"model_a": "
|
| 39836 |
-
"model_b": "
|
| 39837 |
-
"winner": "
|
| 39838 |
"judge": "arena_user_10.16.27.38",
|
| 39839 |
"anony": true,
|
| 39840 |
-
"tstamp":
|
| 39841 |
},
|
| 39842 |
{
|
| 39843 |
"model_a": "SDXL",
|
| 39844 |
-
"model_b": "
|
| 39845 |
-
"winner": "tie
|
| 39846 |
-
"judge": "arena_user_10.16.
|
| 39847 |
"anony": true,
|
| 39848 |
-
"tstamp":
|
| 39849 |
},
|
| 39850 |
{
|
| 39851 |
-
"model_a": "
|
| 39852 |
-
"model_b": "
|
| 39853 |
"winner": "tie",
|
| 39854 |
-
"judge": "arena_user_10.16.
|
| 39855 |
"anony": true,
|
| 39856 |
-
"tstamp":
|
| 39857 |
},
|
| 39858 |
{
|
| 39859 |
-
"model_a": "
|
| 39860 |
-
"model_b": "
|
| 39861 |
-
"winner": "
|
| 39862 |
"judge": "arena_user_10.16.3.14",
|
| 39863 |
"anony": true,
|
| 39864 |
-
"tstamp":
|
| 39865 |
},
|
| 39866 |
{
|
| 39867 |
-
"model_a": "
|
| 39868 |
"model_b": "PlayGround V2.5",
|
| 39869 |
-
"winner": "
|
| 39870 |
"judge": "arena_user_10.16.9.183",
|
| 39871 |
"anony": true,
|
| 39872 |
-
"tstamp":
|
| 39873 |
},
|
| 39874 |
{
|
| 39875 |
-
"model_a": "
|
| 39876 |
"model_b": "PixArtSigma",
|
| 39877 |
-
"winner": "
|
| 39878 |
-
"judge": "arena_user_10.16.
|
| 39879 |
"anony": true,
|
| 39880 |
-
"tstamp":
|
| 39881 |
},
|
| 39882 |
{
|
| 39883 |
-
"model_a": "
|
| 39884 |
-
"model_b": "
|
| 39885 |
-
"winner": "
|
| 39886 |
-
"judge": "arena_user_10.16.
|
| 39887 |
"anony": true,
|
| 39888 |
-
"tstamp":
|
| 39889 |
},
|
| 39890 |
{
|
| 39891 |
-
"model_a": "
|
| 39892 |
"model_b": "StableCascade",
|
| 39893 |
-
"winner": "
|
| 39894 |
"judge": "arena_user_10.16.9.183",
|
| 39895 |
"anony": true,
|
| 39896 |
-
"tstamp":
|
| 39897 |
},
|
| 39898 |
{
|
| 39899 |
-
"model_a": "
|
| 39900 |
"model_b": "LCM(v1.5/XL)",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39901 |
"winner": "model_a",
|
| 39902 |
-
"judge": "arena_user_10.16.
|
| 39903 |
"anony": true,
|
| 39904 |
-
"tstamp":
|
| 39905 |
},
|
| 39906 |
{
|
| 39907 |
-
"model_a": "
|
| 39908 |
-
"model_b": "
|
| 39909 |
"winner": "model_b",
|
| 39910 |
"judge": "arena_user_10.16.9.183",
|
| 39911 |
"anony": true,
|
| 39912 |
-
"tstamp":
|
| 39913 |
},
|
| 39914 |
{
|
| 39915 |
"model_a": "OpenJourney",
|
| 39916 |
-
"model_b": "
|
| 39917 |
-
"winner": "tie",
|
| 39918 |
-
"judge": "arena_user_10.16.
|
| 39919 |
"anony": true,
|
| 39920 |
-
"tstamp":
|
| 39921 |
},
|
| 39922 |
{
|
| 39923 |
"model_a": "OpenJourney",
|
| 39924 |
-
"model_b": "
|
| 39925 |
-
"winner": "
|
| 39926 |
-
"judge": "arena_user_10.16.
|
| 39927 |
"anony": true,
|
| 39928 |
-
"tstamp":
|
| 39929 |
},
|
| 39930 |
{
|
| 39931 |
-
"model_a": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39932 |
"model_b": "PixArtSigma",
|
| 39933 |
-
"winner": "
|
| 39934 |
-
"judge": "arena_user_10.16.
|
| 39935 |
"anony": true,
|
| 39936 |
-
"tstamp":
|
| 39937 |
},
|
| 39938 |
{
|
| 39939 |
-
"model_a": "
|
| 39940 |
-
"model_b": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39941 |
"winner": "model_b",
|
| 39942 |
-
"judge": "arena_user_10.16.
|
| 39943 |
"anony": true,
|
| 39944 |
-
"tstamp":
|
| 39945 |
},
|
| 39946 |
{
|
| 39947 |
-
"model_a": "
|
| 39948 |
"model_b": "SDXLLightning",
|
| 39949 |
"winner": "model_a",
|
| 39950 |
-
"judge": "arena_user_10.16.
|
| 39951 |
"anony": true,
|
| 39952 |
-
"tstamp":
|
| 39953 |
},
|
| 39954 |
{
|
| 39955 |
-
"model_a": "
|
| 39956 |
-
"model_b": "PlayGround V2",
|
| 39957 |
-
"winner": "
|
| 39958 |
-
"judge": "arena_user_10.16.
|
| 39959 |
"anony": true,
|
| 39960 |
-
"tstamp":
|
| 39961 |
},
|
| 39962 |
{
|
| 39963 |
-
"model_a": "
|
| 39964 |
-
"model_b": "
|
| 39965 |
"winner": "model_b",
|
| 39966 |
-
"judge": "arena_user_10.16.
|
| 39967 |
"anony": true,
|
| 39968 |
-
"tstamp":
|
| 39969 |
},
|
| 39970 |
{
|
| 39971 |
-
"model_a": "
|
| 39972 |
-
"model_b": "
|
| 39973 |
"winner": "model_a",
|
| 39974 |
"judge": "arena_user_10.16.9.183",
|
| 39975 |
"anony": true,
|
| 39976 |
-
"tstamp":
|
| 39977 |
},
|
| 39978 |
{
|
| 39979 |
-
"model_a": "
|
| 39980 |
"model_b": "PlayGround V2",
|
| 39981 |
-
"winner": "
|
| 39982 |
-
"judge": "arena_user_10.16.
|
| 39983 |
"anony": true,
|
| 39984 |
-
"tstamp":
|
| 39985 |
},
|
| 39986 |
{
|
| 39987 |
-
"model_a": "
|
| 39988 |
-
"model_b": "
|
| 39989 |
"winner": "model_b",
|
| 39990 |
"judge": "arena_user_10.16.3.14",
|
| 39991 |
"anony": true,
|
| 39992 |
-
"tstamp":
|
| 39993 |
},
|
| 39994 |
{
|
| 39995 |
-
"model_a": "
|
| 39996 |
-
"model_b": "
|
| 39997 |
-
"winner": "
|
| 39998 |
"judge": "arena_user_10.16.9.183",
|
| 39999 |
"anony": true,
|
| 40000 |
-
"tstamp":
|
| 40001 |
},
|
| 40002 |
{
|
| 40003 |
-
"model_a": "
|
| 40004 |
-
"model_b": "
|
| 40005 |
"winner": "model_a",
|
| 40006 |
-
"judge": "arena_user_10.16.
|
| 40007 |
"anony": true,
|
| 40008 |
-
"tstamp":
|
| 40009 |
},
|
| 40010 |
{
|
| 40011 |
"model_a": "LCM(v1.5/XL)",
|
| 40012 |
-
"model_b": "
|
| 40013 |
-
"winner": "
|
| 40014 |
-
"judge": "arena_user_10.16.3.14",
|
| 40015 |
-
"anony": true,
|
| 40016 |
-
"tstamp": 1716539015.3065
|
| 40017 |
-
},
|
| 40018 |
-
{
|
| 40019 |
-
"model_a": "PixArtSigma",
|
| 40020 |
-
"model_b": "SDXLTurbo",
|
| 40021 |
-
"winner": "model_b",
|
| 40022 |
"judge": "arena_user_10.16.27.38",
|
| 40023 |
"anony": true,
|
| 40024 |
-
"tstamp":
|
| 40025 |
},
|
| 40026 |
{
|
| 40027 |
-
"model_a": "
|
| 40028 |
"model_b": "SDXL",
|
| 40029 |
-
"winner": "
|
| 40030 |
-
"judge": "
|
| 40031 |
"anony": true,
|
| 40032 |
-
"tstamp":
|
| 40033 |
},
|
| 40034 |
{
|
| 40035 |
-
"model_a": "
|
| 40036 |
-
"model_b": "
|
| 40037 |
"winner": "model_a",
|
| 40038 |
-
"judge": "arena_user_10.16.
|
| 40039 |
"anony": true,
|
| 40040 |
-
"tstamp":
|
| 40041 |
},
|
| 40042 |
{
|
| 40043 |
-
"model_a": "
|
| 40044 |
-
"model_b": "
|
| 40045 |
-
"winner": "
|
| 40046 |
-
"judge": "arena_user_10.16.
|
| 40047 |
"anony": true,
|
| 40048 |
-
"tstamp":
|
| 40049 |
},
|
| 40050 |
{
|
| 40051 |
-
"model_a": "
|
| 40052 |
-
"model_b": "
|
| 40053 |
"winner": "model_a",
|
| 40054 |
-
"judge": "arena_user_10.16.
|
| 40055 |
"anony": true,
|
| 40056 |
-
"tstamp":
|
| 40057 |
},
|
| 40058 |
{
|
| 40059 |
-
"model_a": "
|
| 40060 |
-
"model_b": "
|
| 40061 |
"winner": "model_b",
|
| 40062 |
-
"judge": "arena_user_10.16.
|
| 40063 |
"anony": true,
|
| 40064 |
-
"tstamp":
|
| 40065 |
},
|
| 40066 |
{
|
| 40067 |
-
"model_a": "
|
| 40068 |
-
"model_b": "
|
| 40069 |
-
"winner": "
|
| 40070 |
-
"judge": "arena_user_10.16.
|
| 40071 |
"anony": true,
|
| 40072 |
-
"tstamp":
|
| 40073 |
},
|
| 40074 |
{
|
| 40075 |
-
"model_a": "
|
| 40076 |
-
"model_b": "
|
| 40077 |
"winner": "model_b",
|
| 40078 |
-
"judge": "arena_user_10.16.
|
| 40079 |
"anony": true,
|
| 40080 |
-
"tstamp":
|
| 40081 |
},
|
| 40082 |
{
|
| 40083 |
-
"model_a": "
|
| 40084 |
-
"model_b": "
|
| 40085 |
"winner": "model_b",
|
| 40086 |
-
"judge": "arena_user_10.16.
|
| 40087 |
"anony": true,
|
| 40088 |
-
"tstamp":
|
| 40089 |
},
|
| 40090 |
{
|
| 40091 |
-
"model_a": "
|
| 40092 |
"model_b": "PlayGround V2.5",
|
| 40093 |
-
"winner": "
|
| 40094 |
"judge": "arena_user_10.16.9.183",
|
| 40095 |
"anony": true,
|
| 40096 |
-
"tstamp":
|
| 40097 |
},
|
| 40098 |
{
|
| 40099 |
-
"model_a": "
|
| 40100 |
-
"model_b": "
|
| 40101 |
-
"winner": "
|
| 40102 |
"judge": "arena_user_10.16.27.38",
|
| 40103 |
"anony": true,
|
| 40104 |
-
"tstamp":
|
| 40105 |
},
|
| 40106 |
{
|
| 40107 |
"model_a": "SDXL",
|
| 40108 |
-
"model_b": "
|
| 40109 |
"winner": "model_a",
|
| 40110 |
"judge": "arena_user_10.16.9.183",
|
| 40111 |
-
"anony":
|
| 40112 |
-
"tstamp":
|
| 40113 |
},
|
| 40114 |
{
|
| 40115 |
"model_a": "SDXL",
|
| 40116 |
-
"model_b": "
|
| 40117 |
-
"winner": "
|
| 40118 |
-
"judge": "arena_user_10.16.
|
| 40119 |
"anony": true,
|
| 40120 |
-
"tstamp":
|
| 40121 |
},
|
| 40122 |
{
|
| 40123 |
"model_a": "SDXLLightning",
|
| 40124 |
"model_b": "SDXL",
|
| 40125 |
-
"winner": "
|
| 40126 |
-
"judge": "arena_user_10.16.
|
| 40127 |
"anony": true,
|
| 40128 |
-
"tstamp":
|
| 40129 |
},
|
| 40130 |
{
|
| 40131 |
-
"model_a": "
|
| 40132 |
"model_b": "PlayGround V2",
|
| 40133 |
"winner": "model_b",
|
| 40134 |
-
"judge": "arena_user_10.16.
|
| 40135 |
"anony": true,
|
| 40136 |
-
"tstamp":
|
| 40137 |
},
|
| 40138 |
{
|
| 40139 |
-
"model_a": "
|
| 40140 |
-
"model_b": "
|
| 40141 |
"winner": "model_a",
|
| 40142 |
"judge": "arena_user_10.16.27.38",
|
| 40143 |
"anony": true,
|
| 40144 |
-
"tstamp":
|
| 40145 |
-
},
|
| 40146 |
-
{
|
| 40147 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40148 |
-
"model_b": "PixArtSigma",
|
| 40149 |
-
"winner": "tie (bothbad)",
|
| 40150 |
-
"judge": "arena_user_10.16.27.38",
|
| 40151 |
-
"anony": true,
|
| 40152 |
-
"tstamp": 1716569714.3922
|
| 40153 |
-
},
|
| 40154 |
-
{
|
| 40155 |
-
"model_a": "SDXLTurbo",
|
| 40156 |
-
"model_b": "StableCascade",
|
| 40157 |
-
"winner": "tie (bothbad)",
|
| 40158 |
-
"judge": "arena_user_10.16.33.210",
|
| 40159 |
-
"anony": true,
|
| 40160 |
-
"tstamp": 1716569738.4961
|
| 40161 |
-
},
|
| 40162 |
-
{
|
| 40163 |
-
"model_a": "PixArtSigma",
|
| 40164 |
-
"model_b": "OpenJourney",
|
| 40165 |
-
"winner": "model_b",
|
| 40166 |
-
"judge": "arena_user_10.16.33.210",
|
| 40167 |
-
"anony": true,
|
| 40168 |
-
"tstamp": 1716569758.9203
|
| 40169 |
},
|
| 40170 |
{
|
| 40171 |
"model_a": "PixArtAlpha",
|
| 40172 |
-
"model_b": "
|
| 40173 |
"winner": "model_a",
|
| 40174 |
"judge": "arena_user_10.16.9.183",
|
| 40175 |
"anony": true,
|
| 40176 |
-
"tstamp":
|
| 40177 |
},
|
| 40178 |
{
|
| 40179 |
"model_a": "PlayGround V2.5",
|
| 40180 |
-
"model_b": "
|
| 40181 |
"winner": "model_a",
|
| 40182 |
-
"judge": "arena_user_10.16.27.38",
|
| 40183 |
-
"anony": true,
|
| 40184 |
-
"tstamp": 1716582629.7353
|
| 40185 |
-
},
|
| 40186 |
-
{
|
| 40187 |
-
"model_a": "OpenJourney",
|
| 40188 |
-
"model_b": "LCM(v1.5/XL)",
|
| 40189 |
-
"winner": "tie (bothbad)",
|
| 40190 |
-
"judge": "arena_user_10.16.33.210",
|
| 40191 |
-
"anony": true,
|
| 40192 |
-
"tstamp": 1716582661.7607
|
| 40193 |
-
},
|
| 40194 |
-
{
|
| 40195 |
-
"model_a": "SDXLTurbo",
|
| 40196 |
-
"model_b": "SDXLLightning",
|
| 40197 |
-
"winner": "tie (bothbad)",
|
| 40198 |
"judge": "arena_user_10.16.9.183",
|
| 40199 |
"anony": true,
|
| 40200 |
-
"tstamp":
|
| 40201 |
-
},
|
| 40202 |
-
{
|
| 40203 |
-
"model_a": "SDXL",
|
| 40204 |
-
"model_b": "PlayGround V2",
|
| 40205 |
-
"winner": "model_a",
|
| 40206 |
-
"judge": "arena_user_10.16.3.14",
|
| 40207 |
-
"anony": true,
|
| 40208 |
-
"tstamp": 1716582719.0988
|
| 40209 |
-
},
|
| 40210 |
-
{
|
| 40211 |
-
"model_a": "PixArtAlpha",
|
| 40212 |
-
"model_b": "PixArtSigma",
|
| 40213 |
-
"winner": "tie (bothbad)",
|
| 40214 |
-
"judge": "arena_user_10.16.33.210",
|
| 40215 |
-
"anony": true,
|
| 40216 |
-
"tstamp": 1716582786.073
|
| 40217 |
},
|
| 40218 |
{
|
| 40219 |
"model_a": "LCM(v1.5/XL)",
|
| 40220 |
-
"model_b": "
|
| 40221 |
"winner": "model_b",
|
| 40222 |
-
"judge": "arena_user_10.16.
|
| 40223 |
-
"anony": true,
|
| 40224 |
-
"tstamp": 1716582843.45
|
| 40225 |
-
},
|
| 40226 |
-
{
|
| 40227 |
-
"model_a": "SDXLLightning",
|
| 40228 |
-
"model_b": "SDXL",
|
| 40229 |
-
"winner": "model_a",
|
| 40230 |
-
"judge": "arena_user_10.16.33.210",
|
| 40231 |
-
"anony": true,
|
| 40232 |
-
"tstamp": 1716588711.6463
|
| 40233 |
-
},
|
| 40234 |
-
{
|
| 40235 |
-
"model_a": "PixArtSigma",
|
| 40236 |
-
"model_b": "LCM(v1.5/XL)",
|
| 40237 |
-
"winner": "tie (bothbad)",
|
| 40238 |
-
"judge": "arena_user_10.16.27.38",
|
| 40239 |
"anony": true,
|
| 40240 |
-
"tstamp":
|
| 40241 |
},
|
| 40242 |
{
|
| 40243 |
-
"model_a": "
|
| 40244 |
-
"model_b": "
|
| 40245 |
"winner": "model_a",
|
| 40246 |
-
"judge": "arena_user_10.16.
|
| 40247 |
"anony": true,
|
| 40248 |
-
"tstamp":
|
| 40249 |
},
|
| 40250 |
{
|
| 40251 |
"model_a": "LCM(v1.5/XL)",
|
| 40252 |
-
"model_b": "PixArtSigma",
|
| 40253 |
-
"winner": "tie (bothbad)",
|
| 40254 |
-
"judge": "arena_user_10.16.27.38",
|
| 40255 |
-
"anony": true,
|
| 40256 |
-
"tstamp": 1716588878.0822
|
| 40257 |
-
},
|
| 40258 |
-
{
|
| 40259 |
-
"model_a": "OpenJourney",
|
| 40260 |
-
"model_b": "LCM(v1.5/XL)",
|
| 40261 |
-
"winner": "model_b",
|
| 40262 |
-
"judge": "arena_user_10.16.3.14",
|
| 40263 |
-
"anony": true,
|
| 40264 |
-
"tstamp": 1716588894.0191
|
| 40265 |
-
},
|
| 40266 |
-
{
|
| 40267 |
-
"model_a": "SDXLTurbo",
|
| 40268 |
-
"model_b": "SDXL",
|
| 40269 |
-
"winner": "model_b",
|
| 40270 |
-
"judge": "arena_user_10.16.3.14",
|
| 40271 |
-
"anony": true,
|
| 40272 |
-
"tstamp": 1716588911.2078
|
| 40273 |
-
},
|
| 40274 |
-
{
|
| 40275 |
-
"model_a": "PixArtSigma",
|
| 40276 |
-
"model_b": "PixArtAlpha",
|
| 40277 |
-
"winner": "model_a",
|
| 40278 |
-
"judge": "arena_user_10.16.9.183",
|
| 40279 |
-
"anony": true,
|
| 40280 |
-
"tstamp": 1716588932.3094
|
| 40281 |
-
},
|
| 40282 |
-
{
|
| 40283 |
-
"model_a": "PixArtAlpha",
|
| 40284 |
"model_b": "SDXL",
|
| 40285 |
-
"winner": "tie (bothbad)",
|
| 40286 |
-
"judge": "arena_user_10.16.9.183",
|
| 40287 |
-
"anony": true,
|
| 40288 |
-
"tstamp": 1716588958.1131
|
| 40289 |
-
},
|
| 40290 |
-
{
|
| 40291 |
-
"model_a": "OpenJourney",
|
| 40292 |
-
"model_b": "PlayGround V2.5",
|
| 40293 |
"winner": "model_b",
|
| 40294 |
"judge": "arena_user_10.16.9.183",
|
| 40295 |
"anony": true,
|
| 40296 |
-
"tstamp":
|
| 40297 |
-
},
|
| 40298 |
-
{
|
| 40299 |
-
"model_a": "SDXLLightning",
|
| 40300 |
-
"model_b": "PixArtSigma",
|
| 40301 |
-
"winner": "model_b",
|
| 40302 |
-
"judge": "arena_user_10.16.33.210",
|
| 40303 |
-
"anony": true,
|
| 40304 |
-
"tstamp": 1716589002.9294
|
| 40305 |
},
|
| 40306 |
{
|
| 40307 |
-
"model_a": "PlayGround V2",
|
| 40308 |
"model_b": "SDXL",
|
| 40309 |
"winner": "model_a",
|
| 40310 |
-
"judge": "arena_user_10.16.
|
| 40311 |
"anony": true,
|
| 40312 |
-
"tstamp":
|
| 40313 |
},
|
| 40314 |
{
|
| 40315 |
"model_a": "PlayGround V2",
|
| 40316 |
-
"model_b": "
|
| 40317 |
"winner": "tie (bothbad)",
|
| 40318 |
-
"judge": "arena_user_10.16.
|
| 40319 |
"anony": true,
|
| 40320 |
-
"tstamp":
|
| 40321 |
},
|
| 40322 |
{
|
| 40323 |
-
"model_a": "PlayGround V2",
|
| 40324 |
"model_b": "StableCascade",
|
| 40325 |
-
"winner": "model_a",
|
| 40326 |
-
"judge": "arena_user_10.16.27.38",
|
| 40327 |
-
"anony": true,
|
| 40328 |
-
"tstamp": 1716589054.1024
|
| 40329 |
-
},
|
| 40330 |
-
{
|
| 40331 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40332 |
-
"model_b": "SDXLTurbo",
|
| 40333 |
"winner": "tie (bothbad)",
|
| 40334 |
-
"judge": "arena_user_10.16.
|
| 40335 |
-
"anony": true,
|
| 40336 |
-
"tstamp": 1716589066.8788
|
| 40337 |
-
},
|
| 40338 |
-
{
|
| 40339 |
-
"model_a": "PixArtSigma",
|
| 40340 |
-
"model_b": "PlayGround V2.5",
|
| 40341 |
-
"winner": "model_b",
|
| 40342 |
-
"judge": "arena_user_10.16.9.183",
|
| 40343 |
"anony": true,
|
| 40344 |
-
"tstamp":
|
| 40345 |
},
|
| 40346 |
{
|
| 40347 |
"model_a": "PlayGround V2.5",
|
| 40348 |
-
"model_b": "
|
| 40349 |
-
"winner": "tie (bothbad)",
|
| 40350 |
-
"judge": "arena_user_10.16.9.183",
|
| 40351 |
-
"anony": true,
|
| 40352 |
-
"tstamp": 1716589099.7964
|
| 40353 |
-
},
|
| 40354 |
-
{
|
| 40355 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40356 |
-
"model_b": "SDXLTurbo",
|
| 40357 |
"winner": "model_b",
|
| 40358 |
-
"judge": "arena_user_10.16.27.38",
|
| 40359 |
-
"anony": true,
|
| 40360 |
-
"tstamp": 1716589111.4147
|
| 40361 |
-
},
|
| 40362 |
-
{
|
| 40363 |
-
"model_a": "SDXLTurbo",
|
| 40364 |
-
"model_b": "StableCascade",
|
| 40365 |
-
"winner": "model_a",
|
| 40366 |
"judge": "arena_user_10.16.3.14",
|
| 40367 |
"anony": true,
|
| 40368 |
-
"tstamp":
|
| 40369 |
},
|
| 40370 |
{
|
| 40371 |
-
"model_a": "
|
| 40372 |
"model_b": "PlayGround V2.5",
|
| 40373 |
"winner": "model_b",
|
| 40374 |
"judge": "arena_user_10.16.9.183",
|
| 40375 |
"anony": true,
|
| 40376 |
-
"tstamp":
|
| 40377 |
-
},
|
| 40378 |
-
{
|
| 40379 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40380 |
-
"model_b": "StableCascade",
|
| 40381 |
-
"winner": "model_b",
|
| 40382 |
-
"judge": "arena_user_10.16.27.38",
|
| 40383 |
-
"anony": true,
|
| 40384 |
-
"tstamp": 1716589165.6379
|
| 40385 |
-
},
|
| 40386 |
-
{
|
| 40387 |
-
"model_a": "SDXLTurbo",
|
| 40388 |
-
"model_b": "StableCascade",
|
| 40389 |
-
"winner": "tie (bothbad)",
|
| 40390 |
-
"judge": "arena_user_10.16.33.210",
|
| 40391 |
-
"anony": true,
|
| 40392 |
-
"tstamp": 1716589178.4192
|
| 40393 |
-
},
|
| 40394 |
-
{
|
| 40395 |
-
"model_a": "OpenJourney",
|
| 40396 |
-
"model_b": "StableCascade",
|
| 40397 |
-
"winner": "model_b",
|
| 40398 |
-
"judge": "arena_user_10.16.9.183",
|
| 40399 |
-
"anony": true,
|
| 40400 |
-
"tstamp": 1716589190.3726
|
| 40401 |
},
|
| 40402 |
{
|
| 40403 |
"model_a": "SDXLLightning",
|
| 40404 |
-
"model_b": "
|
| 40405 |
"winner": "model_b",
|
| 40406 |
"judge": "arena_user_10.16.9.183",
|
| 40407 |
"anony": true,
|
| 40408 |
-
"tstamp":
|
| 40409 |
},
|
| 40410 |
{
|
| 40411 |
"model_a": "PixArtSigma",
|
| 40412 |
-
"model_b": "
|
| 40413 |
-
"winner": "model_b",
|
| 40414 |
-
"judge": "arena_user_10.16.3.14",
|
| 40415 |
-
"anony": true,
|
| 40416 |
-
"tstamp": 1716589244.1266
|
| 40417 |
-
},
|
| 40418 |
-
{
|
| 40419 |
-
"model_a": "PlayGround V2",
|
| 40420 |
-
"model_b": "OpenJourney",
|
| 40421 |
-
"winner": "model_a",
|
| 40422 |
-
"judge": "arena_user_10.16.3.14",
|
| 40423 |
-
"anony": true,
|
| 40424 |
-
"tstamp": 1716589270.2905
|
| 40425 |
-
},
|
| 40426 |
-
{
|
| 40427 |
-
"model_a": "OpenJourney",
|
| 40428 |
-
"model_b": "PlayGround V2.5",
|
| 40429 |
-
"winner": "model_b",
|
| 40430 |
-
"judge": "arena_user_10.16.9.183",
|
| 40431 |
-
"anony": true,
|
| 40432 |
-
"tstamp": 1716589282.8245
|
| 40433 |
-
},
|
| 40434 |
-
{
|
| 40435 |
-
"model_a": "StableCascade",
|
| 40436 |
-
"model_b": "PixArtAlpha",
|
| 40437 |
-
"winner": "model_a",
|
| 40438 |
-
"judge": "arena_user_10.16.9.183",
|
| 40439 |
-
"anony": true,
|
| 40440 |
-
"tstamp": 1716595399.6343
|
| 40441 |
-
},
|
| 40442 |
-
{
|
| 40443 |
-
"model_a": "OpenJourney",
|
| 40444 |
-
"model_b": "PixArtSigma",
|
| 40445 |
"winner": "model_a",
|
| 40446 |
"judge": "arena_user_10.16.9.183",
|
| 40447 |
"anony": true,
|
| 40448 |
-
"tstamp":
|
| 40449 |
},
|
| 40450 |
{
|
| 40451 |
"model_a": "PixArtAlpha",
|
| 40452 |
-
"model_b": "
|
| 40453 |
-
"winner": "tie (bothbad)",
|
| 40454 |
-
"judge": "arena_user_10.16.9.183",
|
| 40455 |
-
"anony": true,
|
| 40456 |
-
"tstamp": 1716631838.9989
|
| 40457 |
-
},
|
| 40458 |
-
{
|
| 40459 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40460 |
-
"model_b": "PixArtSigma",
|
| 40461 |
-
"winner": "tie (bothbad)",
|
| 40462 |
-
"judge": "arena_user_10.16.27.38",
|
| 40463 |
-
"anony": true,
|
| 40464 |
-
"tstamp": 1716631933.7236
|
| 40465 |
-
},
|
| 40466 |
-
{
|
| 40467 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40468 |
-
"model_b": "PlayGround V2.5",
|
| 40469 |
-
"winner": "model_b",
|
| 40470 |
-
"judge": "arena_user_10.16.9.183",
|
| 40471 |
-
"anony": true,
|
| 40472 |
-
"tstamp": 1716631962.3438
|
| 40473 |
-
},
|
| 40474 |
-
{
|
| 40475 |
-
"model_a": "PlayGround V2",
|
| 40476 |
-
"model_b": "PlayGround V2.5",
|
| 40477 |
"winner": "model_b",
|
| 40478 |
-
"judge": "arena_user_10.16.9.183",
|
| 40479 |
-
"anony": true,
|
| 40480 |
-
"tstamp": 1716637811.2507
|
| 40481 |
-
},
|
| 40482 |
-
{
|
| 40483 |
-
"model_a": "SDXLLightning",
|
| 40484 |
-
"model_b": "OpenJourney",
|
| 40485 |
-
"winner": "tie (bothbad)",
|
| 40486 |
"judge": "arena_user_10.16.27.38",
|
| 40487 |
"anony": true,
|
| 40488 |
-
"tstamp":
|
| 40489 |
},
|
| 40490 |
{
|
| 40491 |
-
"model_a": "
|
| 40492 |
-
"model_b": "
|
| 40493 |
"winner": "tie (bothbad)",
|
| 40494 |
-
"judge": "arena_user_10.16.9.183",
|
| 40495 |
-
"anony": true,
|
| 40496 |
-
"tstamp": 1716637940.3706
|
| 40497 |
-
},
|
| 40498 |
-
{
|
| 40499 |
-
"model_a": "StableCascade",
|
| 40500 |
-
"model_b": "PlayGround V2.5",
|
| 40501 |
-
"winner": "model_a",
|
| 40502 |
"judge": "arena_user_10.16.3.14",
|
| 40503 |
"anony": true,
|
| 40504 |
-
"tstamp":
|
| 40505 |
},
|
| 40506 |
{
|
| 40507 |
-
"model_a": "
|
| 40508 |
"model_b": "SDXLLightning",
|
| 40509 |
"winner": "model_b",
|
| 40510 |
-
"judge": "arena_user_10.16.3.14",
|
| 40511 |
-
"anony": true,
|
| 40512 |
-
"tstamp": 1716638087.8967
|
| 40513 |
-
},
|
| 40514 |
-
{
|
| 40515 |
-
"model_a": "PlayGround V2",
|
| 40516 |
-
"model_b": "StableCascade",
|
| 40517 |
-
"winner": "model_a",
|
| 40518 |
-
"judge": "arena_user_10.16.9.183",
|
| 40519 |
-
"anony": true,
|
| 40520 |
-
"tstamp": 1716640036.2923
|
| 40521 |
-
},
|
| 40522 |
-
{
|
| 40523 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40524 |
-
"model_b": "SDXL",
|
| 40525 |
-
"winner": "model_a",
|
| 40526 |
-
"judge": "arena_user_10.16.3.14",
|
| 40527 |
-
"anony": true,
|
| 40528 |
-
"tstamp": 1716640405.2966
|
| 40529 |
-
},
|
| 40530 |
-
{
|
| 40531 |
-
"model_a": "OpenJourney",
|
| 40532 |
-
"model_b": "PlayGround V2",
|
| 40533 |
-
"winner": "tie (bothbad)",
|
| 40534 |
-
"judge": "arena_user_10.16.3.14",
|
| 40535 |
-
"anony": true,
|
| 40536 |
-
"tstamp": 1716640451.3012
|
| 40537 |
-
},
|
| 40538 |
-
{
|
| 40539 |
-
"model_a": "PixArtSigma",
|
| 40540 |
-
"model_b": "StableCascade",
|
| 40541 |
-
"winner": "tie",
|
| 40542 |
"judge": "arena_user_10.16.27.38",
|
| 40543 |
"anony": true,
|
| 40544 |
-
"tstamp":
|
| 40545 |
},
|
| 40546 |
{
|
| 40547 |
-
"model_a": "
|
| 40548 |
-
"model_b": "
|
| 40549 |
"winner": "model_b",
|
| 40550 |
"judge": "arena_user_10.16.9.183",
|
| 40551 |
"anony": true,
|
| 40552 |
-
"tstamp":
|
| 40553 |
-
},
|
| 40554 |
-
{
|
| 40555 |
-
"model_a": "PlayGround V2",
|
| 40556 |
-
"model_b": "StableCascade",
|
| 40557 |
-
"winner": "model_b",
|
| 40558 |
-
"judge": "arena_user_10.16.3.14",
|
| 40559 |
-
"anony": true,
|
| 40560 |
-
"tstamp": 1716650252.1683
|
| 40561 |
},
|
| 40562 |
{
|
| 40563 |
-
"model_a": "
|
| 40564 |
"model_b": "SDXLLightning",
|
| 40565 |
-
"winner": "model_a",
|
| 40566 |
-
"judge": "arena_user_10.16.3.14",
|
| 40567 |
-
"anony": true,
|
| 40568 |
-
"tstamp": 1716654002.8058
|
| 40569 |
-
},
|
| 40570 |
-
{
|
| 40571 |
-
"model_a": "OpenJourney",
|
| 40572 |
-
"model_b": "StableCascade",
|
| 40573 |
-
"winner": "model_a",
|
| 40574 |
-
"judge": "arena_user_10.16.9.183",
|
| 40575 |
-
"anony": true,
|
| 40576 |
-
"tstamp": 1716657661.8542
|
| 40577 |
-
},
|
| 40578 |
-
{
|
| 40579 |
-
"model_a": "PixArtSigma",
|
| 40580 |
-
"model_b": "PlayGround V2",
|
| 40581 |
"winner": "tie (bothbad)",
|
| 40582 |
"judge": "arena_user_10.16.9.183",
|
| 40583 |
"anony": true,
|
| 40584 |
-
"tstamp":
|
| 40585 |
-
},
|
| 40586 |
-
{
|
| 40587 |
-
"model_a": "LCM(v1.5/XL)",
|
| 40588 |
-
"model_b": "SDXL",
|
| 40589 |
-
"winner": "model_b",
|
| 40590 |
-
"judge": "arena_user_10.16.3.14",
|
| 40591 |
-
"anony": true,
|
| 40592 |
-
"tstamp": 1716672582.8741
|
| 40593 |
},
|
| 40594 |
{
|
| 40595 |
"model_a": "PlayGround V2.5",
|
| 40596 |
-
"model_b": "
|
| 40597 |
"winner": "model_a",
|
| 40598 |
-
"judge": "arena_user_10.16.27.38",
|
| 40599 |
-
"anony": true,
|
| 40600 |
-
"tstamp": 1716675304.6869
|
| 40601 |
-
},
|
| 40602 |
-
{
|
| 40603 |
-
"model_a": "SDXL",
|
| 40604 |
-
"model_b": "PixArtSigma",
|
| 40605 |
-
"winner": "tie",
|
| 40606 |
-
"judge": "arena_user_10.16.9.183",
|
| 40607 |
-
"anony": true,
|
| 40608 |
-
"tstamp": 1716675360.5552
|
| 40609 |
-
},
|
| 40610 |
-
{
|
| 40611 |
-
"model_a": "PixArtSigma",
|
| 40612 |
-
"model_b": "PlayGround V2.5",
|
| 40613 |
-
"winner": "tie",
|
| 40614 |
-
"judge": "arena_user_10.16.9.183",
|
| 40615 |
-
"anony": true,
|
| 40616 |
-
"tstamp": 1716696765.27
|
| 40617 |
-
},
|
| 40618 |
-
{
|
| 40619 |
-
"model_a": "PixArtSigma",
|
| 40620 |
-
"model_b": "StableCascade",
|
| 40621 |
-
"winner": "model_b",
|
| 40622 |
"judge": "arena_user_10.16.3.14",
|
| 40623 |
-
"anony":
|
| 40624 |
-
"tstamp":
|
| 40625 |
},
|
| 40626 |
{
|
| 40627 |
-
"model_a": "
|
| 40628 |
-
"model_b": "
|
| 40629 |
-
"winner": "
|
| 40630 |
"judge": "arena_user_10.16.3.14",
|
| 40631 |
"anony": true,
|
| 40632 |
-
"tstamp":
|
| 40633 |
-
},
|
| 40634 |
-
{
|
| 40635 |
-
"model_a": "StableCascade",
|
| 40636 |
-
"model_b": "PlayGround V2.5",
|
| 40637 |
-
"winner": "model_b",
|
| 40638 |
-
"judge": "arena_user_10.16.9.183",
|
| 40639 |
-
"anony": true,
|
| 40640 |
-
"tstamp": 1716705406.3076
|
| 40641 |
-
},
|
| 40642 |
-
{
|
| 40643 |
-
"model_a": "PlayGround V2",
|
| 40644 |
-
"model_b": "PixArtSigma",
|
| 40645 |
-
"winner": "model_a",
|
| 40646 |
-
"judge": "arena_user_10.16.27.38",
|
| 40647 |
-
"anony": true,
|
| 40648 |
-
"tstamp": 1716708229.2765
|
| 40649 |
-
},
|
| 40650 |
-
{
|
| 40651 |
-
"model_a": "SDXLTurbo",
|
| 40652 |
-
"model_b": "SDXL",
|
| 40653 |
-
"winner": "model_a",
|
| 40654 |
-
"judge": "arena_user_10.16.27.38",
|
| 40655 |
-
"anony": true,
|
| 40656 |
-
"tstamp": 1716708400.6323
|
| 40657 |
-
},
|
| 40658 |
-
{
|
| 40659 |
-
"model_a": "StableCascade",
|
| 40660 |
-
"model_b": "SDXLLightning",
|
| 40661 |
-
"winner": "model_b",
|
| 40662 |
-
"judge": "arena_user_10.16.27.38",
|
| 40663 |
-
"anony": true,
|
| 40664 |
-
"tstamp": 1716708408.5517
|
| 40665 |
},
|
| 40666 |
-
{
|
| 40667 |
-
"model_a": "
|
| 40668 |
-
"model_b": "
|
| 40669 |
"winner": "model_b",
|
| 40670 |
"judge": "arena_user_10.16.9.183",
|
| 40671 |
-
"anony":
|
| 40672 |
-
"tstamp":
|
| 40673 |
},
|
| 40674 |
{
|
| 40675 |
-
"model_a": "
|
| 40676 |
-
"model_b": "
|
| 40677 |
-
"winner": "
|
| 40678 |
-
"judge": "arena_user_10.16.
|
| 40679 |
"anony": true,
|
| 40680 |
-
"tstamp":
|
| 40681 |
},
|
| 40682 |
{
|
| 40683 |
"model_a": "PlayGround V2.5",
|
| 40684 |
-
"model_b": "
|
| 40685 |
-
"winner": "
|
| 40686 |
-
"judge": "arena_user_10.16.3.14",
|
| 40687 |
-
"anony": true,
|
| 40688 |
-
"tstamp": 1716711715.0109
|
| 40689 |
-
},
|
| 40690 |
-
{
|
| 40691 |
-
"model_a": "SDXL",
|
| 40692 |
-
"model_b": "PixArtSigma",
|
| 40693 |
-
"winner": "model_a",
|
| 40694 |
"judge": "arena_user_10.16.3.14",
|
| 40695 |
"anony": true,
|
| 40696 |
-
"tstamp":
|
| 40697 |
},
|
| 40698 |
{
|
| 40699 |
"model_a": "OpenJourney",
|
| 40700 |
-
"model_b": "
|
| 40701 |
"winner": "model_b",
|
| 40702 |
"judge": "arena_user_10.16.27.38",
|
| 40703 |
"anony": true,
|
| 40704 |
-
"tstamp":
|
| 40705 |
},
|
| 40706 |
{
|
| 40707 |
-
"model_a": "
|
| 40708 |
-
"model_b": "
|
| 40709 |
-
"winner": "
|
| 40710 |
-
"judge": "arena_user_10.16.
|
| 40711 |
"anony": true,
|
| 40712 |
-
"tstamp":
|
| 40713 |
},
|
| 40714 |
{
|
| 40715 |
-
"model_a": "
|
| 40716 |
"model_b": "SDXLTurbo",
|
| 40717 |
-
"winner": "
|
| 40718 |
"judge": "arena_user_10.16.27.38",
|
| 40719 |
"anony": true,
|
| 40720 |
-
"tstamp":
|
| 40721 |
},
|
| 40722 |
{
|
| 40723 |
-
"model_a": "
|
| 40724 |
-
"model_b": "
|
| 40725 |
"winner": "model_b",
|
| 40726 |
"judge": "arena_user_10.16.9.183",
|
| 40727 |
"anony": true,
|
| 40728 |
-
"tstamp":
|
| 40729 |
},
|
| 40730 |
{
|
| 40731 |
"model_a": "OpenJourney",
|
| 40732 |
-
"model_b": "
|
| 40733 |
-
"winner": "
|
| 40734 |
"judge": "arena_user_10.16.3.14",
|
| 40735 |
"anony": true,
|
| 40736 |
-
"tstamp":
|
| 40737 |
},
|
| 40738 |
{
|
| 40739 |
-
"model_a": "
|
| 40740 |
-
"model_b": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40741 |
"winner": "tie (bothbad)",
|
| 40742 |
-
"judge": "arena_user_10.16.
|
| 40743 |
"anony": true,
|
| 40744 |
-
"tstamp":
|
| 40745 |
},
|
| 40746 |
{
|
| 40747 |
-
"model_a": "
|
| 40748 |
-
"model_b": "
|
| 40749 |
"winner": "tie (bothbad)",
|
| 40750 |
"judge": "arena_user_10.16.27.38",
|
| 40751 |
"anony": true,
|
| 40752 |
-
"tstamp":
|
| 40753 |
},
|
| 40754 |
{
|
| 40755 |
"model_a": "PlayGround V2.5",
|
| 40756 |
-
"model_b": "
|
| 40757 |
-
"winner": "
|
| 40758 |
-
"judge": "arena_user_10.16.
|
| 40759 |
"anony": true,
|
| 40760 |
-
"tstamp":
|
| 40761 |
},
|
| 40762 |
{
|
| 40763 |
-
"model_a": "
|
| 40764 |
-
"model_b": "
|
| 40765 |
-
"winner": "
|
| 40766 |
-
"judge": "arena_user_10.16.
|
| 40767 |
"anony": true,
|
| 40768 |
-
"tstamp":
|
| 40769 |
},
|
| 40770 |
{
|
| 40771 |
-
"model_a": "
|
| 40772 |
-
"model_b": "
|
| 40773 |
"winner": "model_b",
|
| 40774 |
"judge": "arena_user_10.16.3.14",
|
| 40775 |
"anony": true,
|
| 40776 |
-
"tstamp":
|
| 40777 |
},
|
| 40778 |
{
|
| 40779 |
-
"model_a": "
|
| 40780 |
-
"model_b": "
|
| 40781 |
-
"winner": "
|
| 40782 |
"judge": "arena_user_10.16.3.14",
|
| 40783 |
"anony": true,
|
| 40784 |
-
"tstamp":
|
| 40785 |
},
|
| 40786 |
{
|
| 40787 |
-
"model_a": "
|
| 40788 |
-
"model_b": "
|
| 40789 |
-
"winner": "
|
| 40790 |
"judge": "arena_user_10.16.3.14",
|
| 40791 |
"anony": true,
|
| 40792 |
-
"tstamp":
|
| 40793 |
},
|
| 40794 |
{
|
| 40795 |
-
"model_a": "
|
| 40796 |
"model_b": "LCM(v1.5/XL)",
|
| 40797 |
"winner": "model_b",
|
| 40798 |
-
"judge": "arena_user_10.16.
|
| 40799 |
"anony": true,
|
| 40800 |
-
"tstamp":
|
| 40801 |
},
|
| 40802 |
{
|
| 40803 |
-
"model_a": "
|
| 40804 |
-
"model_b": "
|
| 40805 |
-
"winner": "
|
| 40806 |
"judge": "arena_user_10.16.9.183",
|
| 40807 |
"anony": true,
|
| 40808 |
-
"tstamp":
|
| 40809 |
},
|
| 40810 |
{
|
| 40811 |
-
"model_a": "
|
| 40812 |
-
"model_b": "
|
| 40813 |
-
"winner": "
|
| 40814 |
"judge": "arena_user_10.16.9.183",
|
| 40815 |
"anony": true,
|
| 40816 |
-
"tstamp":
|
| 40817 |
},
|
| 40818 |
{
|
| 40819 |
-
"model_a": "
|
| 40820 |
-
"model_b": "
|
| 40821 |
-
"winner": "
|
| 40822 |
"judge": "arena_user_10.16.9.183",
|
| 40823 |
"anony": true,
|
| 40824 |
-
"tstamp":
|
| 40825 |
},
|
| 40826 |
{
|
| 40827 |
-
"model_a": "
|
| 40828 |
-
"model_b": "
|
| 40829 |
-
"winner": "
|
| 40830 |
-
"judge": "arena_user_10.16.
|
| 40831 |
"anony": true,
|
| 40832 |
-
"tstamp":
|
| 40833 |
},
|
| 40834 |
{
|
| 40835 |
-
"model_a": "
|
| 40836 |
-
"model_b": "
|
| 40837 |
-
"winner": "
|
| 40838 |
"judge": "arena_user_10.16.3.14",
|
| 40839 |
"anony": true,
|
| 40840 |
-
"tstamp":
|
| 40841 |
},
|
| 40842 |
{
|
| 40843 |
-
"model_a": "
|
| 40844 |
"model_b": "PlayGround V2.5",
|
| 40845 |
-
"winner": "
|
| 40846 |
"judge": "arena_user_10.16.9.183",
|
| 40847 |
"anony": true,
|
| 40848 |
-
"tstamp":
|
| 40849 |
-
},
|
| 40850 |
-
{
|
| 40851 |
-
"model_a": "PlayGround V2.5",
|
| 40852 |
-
"model_b": "OpenJourney",
|
| 40853 |
-
"winner": "model_a",
|
| 40854 |
-
"judge": "arena_user_10.16.34.32",
|
| 40855 |
-
"anony": true,
|
| 40856 |
-
"tstamp": 1716749183.3056
|
| 40857 |
},
|
| 40858 |
{
|
| 40859 |
-
"model_a": "
|
| 40860 |
-
"model_b": "
|
| 40861 |
-
"winner": "tie
|
| 40862 |
-
"judge": "arena_user_10.16.
|
| 40863 |
"anony": true,
|
| 40864 |
-
"tstamp":
|
| 40865 |
},
|
| 40866 |
{
|
| 40867 |
-
"model_a": "
|
| 40868 |
-
"model_b": "
|
| 40869 |
-
"winner": "
|
| 40870 |
-
"judge": "
|
| 40871 |
"anony": true,
|
| 40872 |
-
"tstamp":
|
| 40873 |
},
|
| 40874 |
{
|
| 40875 |
"model_a": "OpenJourney",
|
| 40876 |
-
"model_b": "
|
| 40877 |
"winner": "model_b",
|
| 40878 |
"judge": "arena_user_10.16.3.14",
|
| 40879 |
"anony": true,
|
| 40880 |
-
"tstamp":
|
| 40881 |
},
|
| 40882 |
{
|
| 40883 |
-
"model_a": "
|
| 40884 |
-
"model_b": "
|
| 40885 |
"winner": "model_b",
|
| 40886 |
-
"judge": "arena_user_10.16.
|
| 40887 |
"anony": true,
|
| 40888 |
-
"tstamp":
|
| 40889 |
},
|
| 40890 |
{
|
| 40891 |
-
"model_a": "
|
| 40892 |
-
"model_b": "
|
| 40893 |
-
"winner": "
|
| 40894 |
-
"judge": "arena_user_10.16.
|
| 40895 |
"anony": true,
|
| 40896 |
-
"tstamp":
|
| 40897 |
},
|
| 40898 |
{
|
| 40899 |
-
"model_a": "
|
| 40900 |
-
"model_b": "
|
| 40901 |
-
"winner": "
|
| 40902 |
-
"judge": "arena_user_10.16.
|
| 40903 |
"anony": true,
|
| 40904 |
-
"tstamp":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40905 |
},
|
| 40906 |
{
|
| 40907 |
"model_a": "PixArtAlpha",
|
| 40908 |
-
"model_b": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40909 |
"winner": "model_a",
|
| 40910 |
-
"judge": "arena_user_10.16.
|
| 40911 |
-
"anony":
|
| 40912 |
-
"tstamp":
|
| 40913 |
},
|
| 40914 |
{
|
| 40915 |
-
"model_a": "
|
| 40916 |
-
"model_b": "
|
| 40917 |
"winner": "model_b",
|
| 40918 |
"judge": "arena_user_10.16.9.183",
|
| 40919 |
"anony": true,
|
| 40920 |
-
"tstamp":
|
| 40921 |
},
|
| 40922 |
{
|
| 40923 |
-
"model_a": "
|
| 40924 |
-
"model_b": "
|
| 40925 |
"winner": "model_b",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40926 |
"judge": "arena_user_10.16.3.14",
|
| 40927 |
"anony": true,
|
| 40928 |
-
"tstamp":
|
| 40929 |
},
|
| 40930 |
{
|
| 40931 |
"model_a": "StableCascade",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40932 |
"model_b": "PlayGround V2",
|
| 40933 |
-
"winner": "
|
| 40934 |
"judge": "arena_user_10.16.34.32",
|
| 40935 |
"anony": true,
|
| 40936 |
-
"tstamp":
|
| 40937 |
},
|
| 40938 |
{
|
| 40939 |
-
"model_a": "PlayGround V2",
|
| 40940 |
-
"model_b": "
|
| 40941 |
"winner": "model_b",
|
| 40942 |
"judge": "arena_user_10.16.9.183",
|
| 40943 |
"anony": true,
|
| 40944 |
-
"tstamp":
|
| 40945 |
},
|
| 40946 |
{
|
| 40947 |
-
"model_a": "
|
| 40948 |
"model_b": "PlayGround V2",
|
| 40949 |
-
"winner": "
|
| 40950 |
"judge": "arena_user_10.16.27.38",
|
| 40951 |
"anony": true,
|
| 40952 |
-
"tstamp":
|
| 40953 |
},
|
| 40954 |
{
|
| 40955 |
-
"model_a": "
|
| 40956 |
-
"model_b": "
|
| 40957 |
-
"winner": "
|
| 40958 |
-
"judge": "arena_user_10.16.
|
| 40959 |
"anony": true,
|
| 40960 |
-
"tstamp":
|
| 40961 |
},
|
| 40962 |
{
|
| 40963 |
-
"model_a": "
|
| 40964 |
-
"model_b": "
|
| 40965 |
-
"winner": "
|
| 40966 |
"judge": "arena_user_10.16.27.38",
|
| 40967 |
"anony": true,
|
| 40968 |
-
"tstamp":
|
| 40969 |
},
|
| 40970 |
{
|
| 40971 |
-
"model_a": "
|
| 40972 |
-
"model_b": "
|
| 40973 |
"winner": "model_a",
|
| 40974 |
-
"judge": "arena_user_10.16.
|
| 40975 |
"anony": true,
|
| 40976 |
-
"tstamp":
|
| 40977 |
},
|
| 40978 |
{
|
| 40979 |
-
"model_a": "
|
| 40980 |
-
"model_b": "
|
| 40981 |
"winner": "model_b",
|
| 40982 |
-
"judge": "arena_user_10.16.
|
| 40983 |
"anony": true,
|
| 40984 |
-
"tstamp":
|
| 40985 |
},
|
| 40986 |
{
|
| 40987 |
-
"model_a": "
|
| 40988 |
-
"model_b": "
|
| 40989 |
-
"winner": "
|
| 40990 |
-
"judge": "arena_user_10.16.
|
| 40991 |
"anony": true,
|
| 40992 |
-
"tstamp":
|
| 40993 |
},
|
| 40994 |
{
|
| 40995 |
-
"model_a": "
|
| 40996 |
-
"model_b": "
|
| 40997 |
"winner": "model_b",
|
| 40998 |
-
"judge": "arena_user_10.16.
|
| 40999 |
"anony": true,
|
| 41000 |
-
"tstamp":
|
| 41001 |
},
|
| 41002 |
{
|
| 41003 |
-
"model_a": "
|
| 41004 |
-
"model_b": "
|
| 41005 |
-
"winner": "
|
| 41006 |
"judge": "arena_user_10.16.27.38",
|
| 41007 |
"anony": true,
|
| 41008 |
-
"tstamp":
|
| 41009 |
},
|
| 41010 |
{
|
| 41011 |
-
"model_a": "
|
| 41012 |
-
"model_b": "
|
| 41013 |
-
"winner": "
|
| 41014 |
-
"judge": "arena_user_10.16.
|
| 41015 |
"anony": true,
|
| 41016 |
-
"tstamp":
|
| 41017 |
},
|
| 41018 |
{
|
| 41019 |
-
"model_a": "
|
| 41020 |
"model_b": "SDXLTurbo",
|
| 41021 |
"winner": "model_a",
|
| 41022 |
"judge": "arena_user_10.16.9.183",
|
| 41023 |
"anony": true,
|
| 41024 |
-
"tstamp":
|
| 41025 |
},
|
| 41026 |
{
|
| 41027 |
-
"model_a": "
|
| 41028 |
-
"model_b": "
|
| 41029 |
-
"winner": "
|
| 41030 |
-
"judge": "arena_user_10.16.
|
| 41031 |
"anony": true,
|
| 41032 |
-
"tstamp":
|
| 41033 |
},
|
| 41034 |
{
|
| 41035 |
-
"model_a": "
|
| 41036 |
"model_b": "PlayGround V2",
|
| 41037 |
-
"winner": "
|
| 41038 |
-
"judge": "arena_user_10.16.
|
| 41039 |
"anony": true,
|
| 41040 |
-
"tstamp":
|
| 41041 |
},
|
| 41042 |
{
|
| 41043 |
-
"model_a": "
|
| 41044 |
"model_b": "SDXL",
|
| 41045 |
"winner": "model_b",
|
| 41046 |
-
"judge": "arena_user_10.16.
|
| 41047 |
"anony": true,
|
| 41048 |
-
"tstamp":
|
| 41049 |
},
|
| 41050 |
{
|
| 41051 |
-
"model_a": "
|
| 41052 |
-
"model_b": "
|
| 41053 |
"winner": "model_a",
|
| 41054 |
-
"judge": "arena_user_10.16.
|
| 41055 |
-
"anony":
|
| 41056 |
-
"tstamp":
|
| 41057 |
},
|
| 41058 |
{
|
| 41059 |
-
"model_a": "
|
| 41060 |
-
"model_b": "
|
| 41061 |
-
"winner": "
|
| 41062 |
-
"judge": "arena_user_10.16.
|
| 41063 |
"anony": true,
|
| 41064 |
-
"tstamp":
|
| 41065 |
},
|
| 41066 |
{
|
| 41067 |
-
"model_a": "
|
| 41068 |
-
"model_b": "
|
| 41069 |
-
"winner": "
|
| 41070 |
-
"judge": "arena_user_10.16.
|
| 41071 |
"anony": true,
|
| 41072 |
-
"tstamp":
|
| 41073 |
},
|
| 41074 |
{
|
| 41075 |
-
"model_a": "
|
| 41076 |
-
"model_b": "
|
| 41077 |
-
"winner": "
|
| 41078 |
-
"judge": "arena_user_10.16.
|
| 41079 |
"anony": true,
|
| 41080 |
-
"tstamp":
|
| 41081 |
},
|
| 41082 |
{
|
| 41083 |
-
"model_a": "
|
| 41084 |
-
"model_b": "
|
| 41085 |
"winner": "model_a",
|
| 41086 |
-
"judge": "arena_user_10.16.
|
| 41087 |
"anony": true,
|
| 41088 |
-
"tstamp":
|
| 41089 |
},
|
| 41090 |
{
|
| 41091 |
-
"model_a": "
|
| 41092 |
-
"model_b": "
|
| 41093 |
-
"winner": "
|
| 41094 |
"judge": "arena_user_10.16.27.38",
|
| 41095 |
"anony": true,
|
| 41096 |
-
"tstamp":
|
| 41097 |
},
|
| 41098 |
{
|
| 41099 |
-
"model_a": "
|
| 41100 |
-
"model_b": "
|
| 41101 |
"winner": "model_b",
|
| 41102 |
"judge": "arena_user_10.16.9.183",
|
| 41103 |
"anony": true,
|
| 41104 |
-
"tstamp":
|
| 41105 |
},
|
| 41106 |
{
|
| 41107 |
-
"model_a": "
|
| 41108 |
-
"model_b": "
|
| 41109 |
-
"winner": "
|
| 41110 |
-
"judge": "arena_user_10.16.
|
| 41111 |
"anony": true,
|
| 41112 |
-
"tstamp":
|
| 41113 |
},
|
| 41114 |
{
|
| 41115 |
"model_a": "SDXLLightning",
|
| 41116 |
-
"model_b": "
|
| 41117 |
"winner": "model_b",
|
| 41118 |
"judge": "arena_user_10.16.9.183",
|
| 41119 |
"anony": true,
|
| 41120 |
-
"tstamp":
|
| 41121 |
},
|
| 41122 |
{
|
| 41123 |
-
"model_a": "
|
| 41124 |
-
"model_b": "
|
| 41125 |
-
"winner": "
|
| 41126 |
-
"judge": "arena_user_10.16.
|
| 41127 |
"anony": true,
|
| 41128 |
-
"tstamp":
|
| 41129 |
},
|
| 41130 |
{
|
| 41131 |
-
"model_a": "
|
| 41132 |
-
"model_b": "
|
| 41133 |
"winner": "model_b",
|
| 41134 |
"judge": "arena_user_10.16.27.38",
|
| 41135 |
"anony": true,
|
| 41136 |
-
"tstamp":
|
| 41137 |
},
|
| 41138 |
{
|
| 41139 |
-
"model_a": "
|
| 41140 |
-
"model_b": "
|
| 41141 |
"winner": "tie (bothbad)",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41142 |
"judge": "arena_user_10.16.3.14",
|
| 41143 |
"anony": true,
|
| 41144 |
-
"tstamp":
|
| 41145 |
},
|
| 41146 |
{
|
| 41147 |
-
"model_a": "
|
| 41148 |
-
"model_b": "
|
| 41149 |
"winner": "model_b",
|
| 41150 |
"judge": "arena_user_10.16.27.38",
|
| 41151 |
"anony": true,
|
| 41152 |
-
"tstamp":
|
| 41153 |
},
|
| 41154 |
{
|
| 41155 |
"model_a": "SDXLTurbo",
|
| 41156 |
-
"model_b": "
|
| 41157 |
"winner": "model_b",
|
| 41158 |
-
"judge": "arena_user_10.16.
|
| 41159 |
"anony": true,
|
| 41160 |
-
"tstamp":
|
| 41161 |
},
|
| 41162 |
{
|
| 41163 |
-
"model_a": "
|
| 41164 |
-
"model_b": "
|
| 41165 |
-
"winner": "
|
| 41166 |
-
"judge": "arena_user_10.16.
|
| 41167 |
"anony": true,
|
| 41168 |
-
"tstamp":
|
| 41169 |
},
|
| 41170 |
{
|
| 41171 |
-
"model_a": "
|
| 41172 |
-
"model_b": "
|
| 41173 |
"winner": "model_a",
|
| 41174 |
"judge": "arena_user_10.16.9.183",
|
| 41175 |
-
"anony":
|
| 41176 |
-
"tstamp":
|
| 41177 |
},
|
| 41178 |
{
|
| 41179 |
"model_a": "StableCascade",
|
| 41180 |
-
"model_b": "
|
| 41181 |
-
"winner": "tie",
|
| 41182 |
"judge": "arena_user_10.16.3.14",
|
| 41183 |
"anony": true,
|
| 41184 |
-
"tstamp":
|
| 41185 |
-
},
|
| 41186 |
-
{
|
| 41187 |
-
"model_a": "PlayGround V2.5",
|
| 41188 |
-
"model_b": "SDXLLightning",
|
| 41189 |
-
"winner": "model_a",
|
| 41190 |
-
"judge": "arena_user_10.16.3.14",
|
| 41191 |
-
"anony": false,
|
| 41192 |
-
"tstamp": 1716783462.483
|
| 41193 |
},
|
| 41194 |
{
|
| 41195 |
"model_a": "SDXLLightning",
|
| 41196 |
-
"model_b": "
|
| 41197 |
-
"winner": "
|
| 41198 |
-
"judge": "arena_user_10.16.
|
| 41199 |
"anony": true,
|
| 41200 |
-
"tstamp":
|
| 41201 |
},
|
| 41202 |
{
|
| 41203 |
-
"model_a": "
|
| 41204 |
-
"model_b": "
|
| 41205 |
-
"winner": "
|
| 41206 |
"judge": "arena_user_10.16.3.14",
|
| 41207 |
"anony": true,
|
| 41208 |
-
"tstamp":
|
| 41209 |
-
},
|
| 41210 |
-
{
|
| 41211 |
-
"model_a": "LCM(v1.5/XL)",
|
| 41212 |
-
"model_b": "SDXLTurbo",
|
| 41213 |
-
"winner": "model_b",
|
| 41214 |
-
"judge": "arena_user_10.16.9.183",
|
| 41215 |
-
"anony": false,
|
| 41216 |
-
"tstamp": 1716784775.2026
|
| 41217 |
},
|
| 41218 |
{
|
| 41219 |
-
"model_a": "
|
| 41220 |
-
"model_b": "
|
| 41221 |
-
"winner": "
|
| 41222 |
-
"judge": "arena_user_10.16.
|
| 41223 |
"anony": true,
|
| 41224 |
-
"tstamp":
|
| 41225 |
},
|
| 41226 |
{
|
| 41227 |
-
"model_a": "
|
| 41228 |
-
"model_b": "
|
| 41229 |
"winner": "model_b",
|
| 41230 |
-
"judge": "arena_user_10.16.
|
| 41231 |
"anony": true,
|
| 41232 |
-
"tstamp":
|
| 41233 |
}
|
| 41234 |
]
|
|
|
|
| 39039 |
"anony": true,
|
| 39040 |
"tstamp": 1716431811.1067
|
| 39041 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39042 |
{
|
| 39043 |
"model_a": "SDXLTurbo",
|
| 39044 |
"model_b": "PixArtAlpha",
|
|
|
|
| 39055 |
"anony": true,
|
| 39056 |
"tstamp": 1716455955.7955
|
| 39057 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39058 |
{
|
| 39059 |
"model_a": "SDXLLightning",
|
| 39060 |
"model_b": "PixArtSigma",
|
|
|
|
| 39079 |
"anony": true,
|
| 39080 |
"tstamp": 1716464883.9242
|
| 39081 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39082 |
{
|
| 39083 |
"model_a": "SDXL",
|
| 39084 |
"model_b": "SDXLLightning",
|
|
|
|
| 39103 |
"anony": true,
|
| 39104 |
"tstamp": 1716465158.8835
|
| 39105 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39106 |
{
|
| 39107 |
"model_a": "PlayGround V2.5",
|
| 39108 |
"model_b": "SDXLLightning",
|
|
|
|
| 39111 |
"anony": true,
|
| 39112 |
"tstamp": 1716465320.7672
|
| 39113 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39114 |
{
|
| 39115 |
"model_a": "PlayGround V2",
|
| 39116 |
"model_b": "SDXL",
|
|
|
|
| 39159 |
"anony": false,
|
| 39160 |
"tstamp": 1716473646.5102
|
| 39161 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39162 |
{
|
| 39163 |
"model_a": "PlayGround V2.5",
|
| 39164 |
"model_b": "SDXLLightning",
|
|
|
|
| 39175 |
"anony": true,
|
| 39176 |
"tstamp": 1716481830.2832
|
| 39177 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39178 |
{
|
| 39179 |
"model_a": "SDXLTurbo",
|
| 39180 |
"model_b": "PixArtAlpha",
|
|
|
|
| 39199 |
"anony": true,
|
| 39200 |
"tstamp": 1716482665.9327
|
| 39201 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39202 |
{
|
| 39203 |
"model_a": "PlayGround V2.5",
|
| 39204 |
"model_b": "SDXLTurbo",
|
|
|
|
| 39215 |
"anony": true,
|
| 39216 |
"tstamp": 1716483130.6731
|
| 39217 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39218 |
{
|
| 39219 |
"model_a": "PixArtSigma",
|
| 39220 |
"model_b": "PixArtAlpha",
|
|
|
|
| 39239 |
"anony": true,
|
| 39240 |
"tstamp": 1716491961.101
|
| 39241 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39242 |
{
|
| 39243 |
"model_a": "LCM(v1.5/XL)",
|
| 39244 |
"model_b": "SDXL",
|
|
|
|
| 39255 |
"anony": true,
|
| 39256 |
"tstamp": 1716492165.0747
|
| 39257 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39258 |
{
|
| 39259 |
"model_a": "SDXLTurbo",
|
| 39260 |
"model_b": "PixArtSigma",
|
|
|
|
| 39263 |
"anony": true,
|
| 39264 |
"tstamp": 1716493052.5738
|
| 39265 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39266 |
{
|
| 39267 |
"model_a": "PlayGround V2.5",
|
| 39268 |
"model_b": "SDXL",
|
|
|
|
| 39287 |
"anony": true,
|
| 39288 |
"tstamp": 1716494907.8652
|
| 39289 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39290 |
{
|
| 39291 |
"model_a": "SDXL",
|
| 39292 |
"model_b": "PlayGround V2.5",
|
|
|
|
| 39295 |
"anony": false,
|
| 39296 |
"tstamp": 1716495025.0063
|
| 39297 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39298 |
{
|
| 39299 |
"model_a": "SDXL",
|
| 39300 |
"model_b": "StableCascade",
|
|
|
|
| 39320 |
"tstamp": 1716497278.1725
|
| 39321 |
},
|
| 39322 |
{
|
| 39323 |
+
"model_a": "LCM(v1.5/XL)",
|
| 39324 |
+
"model_b": "PixArtSigma",
|
| 39325 |
+
"winner": "tie (bothbad)",
|
| 39326 |
+
"judge": "arena_user_10.16.9.183",
|
| 39327 |
"anony": true,
|
| 39328 |
+
"tstamp": 1716498525.386
|
| 39329 |
},
|
| 39330 |
{
|
| 39331 |
+
"model_a": "OpenJourney",
|
| 39332 |
+
"model_b": "PixArtSigma",
|
| 39333 |
"winner": "tie (bothbad)",
|
| 39334 |
+
"judge": "arena_user_10.16.9.183",
|
| 39335 |
"anony": true,
|
| 39336 |
+
"tstamp": 1716508618.2377
|
| 39337 |
},
|
| 39338 |
{
|
| 39339 |
+
"model_a": "SDXL",
|
| 39340 |
"model_b": "LCM(v1.5/XL)",
|
| 39341 |
+
"winner": "model_b",
|
| 39342 |
"judge": "arena_user_10.16.3.14",
|
| 39343 |
"anony": true,
|
| 39344 |
+
"tstamp": 1716508647.6412
|
| 39345 |
},
|
| 39346 |
{
|
| 39347 |
"model_a": "LCM(v1.5/XL)",
|
| 39348 |
+
"model_b": "StableCascade",
|
| 39349 |
+
"winner": "tie",
|
| 39350 |
"judge": "arena_user_10.16.9.183",
|
| 39351 |
"anony": true,
|
| 39352 |
+
"tstamp": 1716508773.0947
|
| 39353 |
},
|
| 39354 |
{
|
| 39355 |
+
"model_a": "PlayGround V2",
|
| 39356 |
+
"model_b": "LCM(v1.5/XL)",
|
| 39357 |
+
"winner": "model_a",
|
| 39358 |
+
"judge": "arena_user_10.16.3.14",
|
| 39359 |
"anony": true,
|
| 39360 |
+
"tstamp": 1716509848.6189
|
| 39361 |
},
|
| 39362 |
{
|
| 39363 |
+
"model_a": "SDXLTurbo",
|
| 39364 |
+
"model_b": "StableCascade",
|
| 39365 |
+
"winner": "model_b",
|
| 39366 |
+
"judge": "arena_user_10.16.9.183",
|
| 39367 |
+
"anony": true,
|
| 39368 |
+
"tstamp": 1716511130.78
|
| 39369 |
+
},
|
| 39370 |
+
{
|
| 39371 |
+
"model_a": "PlayGround V2",
|
| 39372 |
+
"model_b": "PixArtSigma",
|
| 39373 |
+
"winner": "model_b",
|
| 39374 |
+
"judge": "arena_user_10.16.9.183",
|
| 39375 |
"anony": true,
|
| 39376 |
+
"tstamp": 1716512505.6737
|
| 39377 |
},
|
| 39378 |
{
|
| 39379 |
"model_a": "PixArtSigma",
|
| 39380 |
+
"model_b": "SDXLLightning",
|
| 39381 |
"winner": "model_a",
|
| 39382 |
"judge": "arena_user_10.16.9.183",
|
| 39383 |
"anony": true,
|
| 39384 |
+
"tstamp": 1716521987.1249
|
| 39385 |
},
|
| 39386 |
{
|
| 39387 |
"model_a": "PlayGround V2",
|
| 39388 |
"model_b": "StableCascade",
|
| 39389 |
"winner": "model_a",
|
| 39390 |
+
"judge": "arena_user_10.16.9.183",
|
| 39391 |
"anony": true,
|
| 39392 |
+
"tstamp": 1716534865.3098
|
| 39393 |
},
|
| 39394 |
{
|
| 39395 |
+
"model_a": "PixArtAlpha",
|
| 39396 |
+
"model_b": "SDXLTurbo",
|
| 39397 |
+
"winner": "model_a",
|
| 39398 |
+
"judge": "arena_user_10.16.3.14",
|
| 39399 |
"anony": true,
|
| 39400 |
+
"tstamp": 1716535184.4481
|
| 39401 |
},
|
| 39402 |
{
|
| 39403 |
+
"model_a": "LCM(v1.5/XL)",
|
| 39404 |
+
"model_b": "PixArtAlpha",
|
| 39405 |
+
"winner": "model_a",
|
| 39406 |
+
"judge": "arena_user_10.16.3.14",
|
| 39407 |
"anony": true,
|
| 39408 |
+
"tstamp": 1716539015.3065
|
| 39409 |
},
|
| 39410 |
{
|
| 39411 |
+
"model_a": "PixArtSigma",
|
| 39412 |
+
"model_b": "SDXLTurbo",
|
| 39413 |
"winner": "model_b",
|
| 39414 |
+
"judge": "arena_user_10.16.27.38",
|
| 39415 |
"anony": true,
|
| 39416 |
+
"tstamp": 1716539889.7886
|
| 39417 |
},
|
| 39418 |
{
|
| 39419 |
+
"model_a": "OpenJourney",
|
| 39420 |
+
"model_b": "SDXL",
|
| 39421 |
"winner": "model_b",
|
| 39422 |
+
"judge": "arena_user_10.16.27.38",
|
| 39423 |
"anony": true,
|
| 39424 |
+
"tstamp": 1716540536.1365
|
| 39425 |
},
|
| 39426 |
{
|
| 39427 |
"model_a": "SDXLLightning",
|
| 39428 |
+
"model_b": "PixArtSigma",
|
| 39429 |
"winner": "model_a",
|
| 39430 |
"judge": "arena_user_10.16.9.183",
|
| 39431 |
"anony": true,
|
| 39432 |
+
"tstamp": 1716540946.9096
|
| 39433 |
},
|
| 39434 |
{
|
| 39435 |
+
"model_a": "SDXL",
|
| 39436 |
+
"model_b": "PixArtAlpha",
|
| 39437 |
+
"winner": "model_b",
|
| 39438 |
+
"judge": "arena_user_10.16.39.221",
|
| 39439 |
"anony": true,
|
| 39440 |
+
"tstamp": 1716542403.1488
|
| 39441 |
},
|
| 39442 |
{
|
| 39443 |
+
"model_a": "SDXL",
|
| 39444 |
+
"model_b": "PlayGround V2.5",
|
| 39445 |
"winner": "model_b",
|
| 39446 |
+
"judge": "arena_user_10.16.39.221",
|
| 39447 |
"anony": true,
|
| 39448 |
+
"tstamp": 1716543831.0194
|
| 39449 |
},
|
| 39450 |
{
|
| 39451 |
+
"model_a": "SDXLTurbo",
|
| 39452 |
"model_b": "SDXLLightning",
|
| 39453 |
"winner": "model_b",
|
| 39454 |
+
"judge": "arena_user_10.16.33.210",
|
| 39455 |
"anony": true,
|
| 39456 |
+
"tstamp": 1716553156.4165
|
| 39457 |
},
|
| 39458 |
{
|
| 39459 |
+
"model_a": "PixArtAlpha",
|
| 39460 |
+
"model_b": "PlayGround V2",
|
| 39461 |
+
"winner": "model_b",
|
| 39462 |
+
"judge": "arena_user_10.16.33.210",
|
| 39463 |
"anony": true,
|
| 39464 |
+
"tstamp": 1716553180.6047
|
| 39465 |
},
|
| 39466 |
{
|
| 39467 |
+
"model_a": "OpenJourney",
|
| 39468 |
+
"model_b": "SDXLTurbo",
|
| 39469 |
"winner": "model_b",
|
| 39470 |
+
"judge": "arena_user_10.16.33.210",
|
| 39471 |
"anony": true,
|
| 39472 |
+
"tstamp": 1716553208.1102
|
| 39473 |
},
|
| 39474 |
{
|
| 39475 |
"model_a": "StableCascade",
|
| 39476 |
+
"model_b": "PlayGround V2.5",
|
| 39477 |
+
"winner": "tie (bothbad)",
|
| 39478 |
+
"judge": "arena_user_10.16.9.183",
|
| 39479 |
+
"anony": true,
|
| 39480 |
+
"tstamp": 1716555742.6319
|
| 39481 |
+
},
|
| 39482 |
+
{
|
| 39483 |
+
"model_a": "PixArtSigma",
|
| 39484 |
+
"model_b": "LCM(v1.5/XL)",
|
| 39485 |
+
"winner": "tie (bothbad)",
|
| 39486 |
"judge": "arena_user_10.16.27.38",
|
| 39487 |
"anony": true,
|
| 39488 |
+
"tstamp": 1716564155.6044
|
| 39489 |
},
|
| 39490 |
{
|
| 39491 |
+
"model_a": "PixArtSigma",
|
| 39492 |
+
"model_b": "OpenJourney",
|
| 39493 |
+
"winner": "model_b",
|
| 39494 |
+
"judge": "arena_user_10.16.33.210",
|
| 39495 |
+
"anony": true,
|
| 39496 |
+
"tstamp": 1716569758.9203
|
| 39497 |
+
},
|
| 39498 |
+
{
|
| 39499 |
+
"model_a": "PixArtAlpha",
|
| 39500 |
"model_b": "PlayGround V2",
|
| 39501 |
"winner": "model_a",
|
| 39502 |
"judge": "arena_user_10.16.9.183",
|
| 39503 |
"anony": true,
|
| 39504 |
+
"tstamp": 1716573314.1735
|
| 39505 |
},
|
| 39506 |
{
|
| 39507 |
+
"model_a": "SDXLLightning",
|
| 39508 |
+
"model_b": "SDXL",
|
| 39509 |
"winner": "model_a",
|
| 39510 |
+
"judge": "arena_user_10.16.33.210",
|
| 39511 |
"anony": true,
|
| 39512 |
+
"tstamp": 1716588711.6463
|
| 39513 |
},
|
| 39514 |
{
|
| 39515 |
+
"model_a": "OpenJourney",
|
| 39516 |
+
"model_b": "PlayGround V2.5",
|
| 39517 |
+
"winner": "model_b",
|
| 39518 |
+
"judge": "arena_user_10.16.9.183",
|
| 39519 |
+
"anony": true,
|
| 39520 |
+
"tstamp": 1716589282.8245
|
| 39521 |
+
},
|
| 39522 |
+
{
|
| 39523 |
+
"model_a": "StableCascade",
|
| 39524 |
"model_b": "PixArtAlpha",
|
| 39525 |
"winner": "model_a",
|
| 39526 |
+
"judge": "arena_user_10.16.9.183",
|
| 39527 |
"anony": true,
|
| 39528 |
+
"tstamp": 1716595399.6343
|
| 39529 |
},
|
| 39530 |
{
|
| 39531 |
"model_a": "OpenJourney",
|
| 39532 |
"model_b": "PixArtSigma",
|
| 39533 |
+
"winner": "model_a",
|
| 39534 |
+
"judge": "arena_user_10.16.9.183",
|
| 39535 |
"anony": true,
|
| 39536 |
+
"tstamp": 1716596153.0762
|
| 39537 |
},
|
| 39538 |
{
|
| 39539 |
+
"model_a": "LCM(v1.5/XL)",
|
| 39540 |
+
"model_b": "PlayGround V2.5",
|
| 39541 |
+
"winner": "model_b",
|
| 39542 |
+
"judge": "arena_user_10.16.9.183",
|
| 39543 |
+
"anony": true,
|
| 39544 |
+
"tstamp": 1716631962.3438
|
| 39545 |
+
},
|
| 39546 |
+
{
|
| 39547 |
+
"model_a": "SDXLLightning",
|
| 39548 |
"model_b": "OpenJourney",
|
| 39549 |
"winner": "tie (bothbad)",
|
| 39550 |
+
"judge": "arena_user_10.16.27.38",
|
| 39551 |
"anony": true,
|
| 39552 |
+
"tstamp": 1716637883.7082
|
| 39553 |
},
|
| 39554 |
{
|
| 39555 |
+
"model_a": "SDXLLightning",
|
| 39556 |
"model_b": "OpenJourney",
|
| 39557 |
+
"winner": "tie (bothbad)",
|
| 39558 |
+
"judge": "arena_user_10.16.9.183",
|
| 39559 |
"anony": true,
|
| 39560 |
+
"tstamp": 1716637940.3706
|
| 39561 |
},
|
| 39562 |
{
|
| 39563 |
+
"model_a": "StableCascade",
|
| 39564 |
"model_b": "SDXLLightning",
|
| 39565 |
"winner": "model_b",
|
| 39566 |
"judge": "arena_user_10.16.3.14",
|
| 39567 |
"anony": true,
|
| 39568 |
+
"tstamp": 1716638087.8967
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39569 |
},
|
| 39570 |
{
|
| 39571 |
+
"model_a": "PixArtSigma",
|
| 39572 |
+
"model_b": "StableCascade",
|
| 39573 |
"winner": "tie",
|
| 39574 |
+
"judge": "arena_user_10.16.27.38",
|
| 39575 |
"anony": true,
|
| 39576 |
+
"tstamp": 1716648496.2293
|
| 39577 |
},
|
| 39578 |
{
|
| 39579 |
+
"model_a": "PlayGround V2",
|
| 39580 |
+
"model_b": "OpenJourney",
|
| 39581 |
+
"winner": "model_b",
|
| 39582 |
+
"judge": "arena_user_10.16.9.183",
|
| 39583 |
"anony": true,
|
| 39584 |
+
"tstamp": 1716650144.5433
|
| 39585 |
},
|
| 39586 |
{
|
| 39587 |
+
"model_a": "PlayGround V2",
|
| 39588 |
+
"model_b": "StableCascade",
|
| 39589 |
+
"winner": "model_b",
|
| 39590 |
"judge": "arena_user_10.16.3.14",
|
| 39591 |
"anony": true,
|
| 39592 |
+
"tstamp": 1716650252.1683
|
| 39593 |
},
|
| 39594 |
{
|
| 39595 |
+
"model_a": "PlayGround V2.5",
|
| 39596 |
+
"model_b": "SDXLLightning",
|
| 39597 |
+
"winner": "model_a",
|
| 39598 |
"judge": "arena_user_10.16.3.14",
|
| 39599 |
"anony": true,
|
| 39600 |
+
"tstamp": 1716654002.8058
|
| 39601 |
},
|
| 39602 |
{
|
| 39603 |
+
"model_a": "OpenJourney",
|
| 39604 |
+
"model_b": "StableCascade",
|
| 39605 |
+
"winner": "model_a",
|
| 39606 |
+
"judge": "arena_user_10.16.9.183",
|
| 39607 |
"anony": true,
|
| 39608 |
+
"tstamp": 1716657661.8542
|
| 39609 |
},
|
| 39610 |
{
|
| 39611 |
+
"model_a": "LCM(v1.5/XL)",
|
| 39612 |
"model_b": "SDXL",
|
| 39613 |
"winner": "model_b",
|
| 39614 |
+
"judge": "arena_user_10.16.3.14",
|
| 39615 |
"anony": true,
|
| 39616 |
+
"tstamp": 1716672582.8741
|
| 39617 |
},
|
| 39618 |
{
|
| 39619 |
+
"model_a": "PlayGround V2.5",
|
| 39620 |
+
"model_b": "PixArtSigma",
|
| 39621 |
+
"winner": "model_a",
|
| 39622 |
"judge": "arena_user_10.16.27.38",
|
| 39623 |
"anony": true,
|
| 39624 |
+
"tstamp": 1716675304.6869
|
| 39625 |
},
|
| 39626 |
{
|
| 39627 |
"model_a": "SDXL",
|
| 39628 |
+
"model_b": "PixArtSigma",
|
| 39629 |
+
"winner": "tie",
|
| 39630 |
+
"judge": "arena_user_10.16.9.183",
|
| 39631 |
"anony": true,
|
| 39632 |
+
"tstamp": 1716675360.5552
|
| 39633 |
},
|
| 39634 |
{
|
| 39635 |
+
"model_a": "PixArtSigma",
|
| 39636 |
+
"model_b": "PlayGround V2.5",
|
| 39637 |
"winner": "tie",
|
| 39638 |
+
"judge": "arena_user_10.16.9.183",
|
| 39639 |
"anony": true,
|
| 39640 |
+
"tstamp": 1716696765.27
|
| 39641 |
},
|
| 39642 |
{
|
| 39643 |
+
"model_a": "PixArtSigma",
|
| 39644 |
+
"model_b": "StableCascade",
|
| 39645 |
+
"winner": "model_b",
|
| 39646 |
"judge": "arena_user_10.16.3.14",
|
| 39647 |
"anony": true,
|
| 39648 |
+
"tstamp": 1716699503.5692
|
| 39649 |
},
|
| 39650 |
{
|
| 39651 |
+
"model_a": "StableCascade",
|
| 39652 |
"model_b": "PlayGround V2.5",
|
| 39653 |
+
"winner": "model_b",
|
| 39654 |
"judge": "arena_user_10.16.9.183",
|
| 39655 |
"anony": true,
|
| 39656 |
+
"tstamp": 1716705406.3076
|
| 39657 |
},
|
| 39658 |
{
|
| 39659 |
+
"model_a": "PlayGround V2",
|
| 39660 |
"model_b": "PixArtSigma",
|
| 39661 |
+
"winner": "model_a",
|
| 39662 |
+
"judge": "arena_user_10.16.27.38",
|
| 39663 |
"anony": true,
|
| 39664 |
+
"tstamp": 1716708229.2765
|
| 39665 |
},
|
| 39666 |
{
|
| 39667 |
+
"model_a": "SDXLTurbo",
|
| 39668 |
+
"model_b": "SDXL",
|
| 39669 |
+
"winner": "model_a",
|
| 39670 |
+
"judge": "arena_user_10.16.27.38",
|
| 39671 |
"anony": true,
|
| 39672 |
+
"tstamp": 1716708400.6323
|
| 39673 |
},
|
| 39674 |
{
|
| 39675 |
+
"model_a": "SDXL",
|
| 39676 |
"model_b": "StableCascade",
|
| 39677 |
+
"winner": "model_b",
|
| 39678 |
"judge": "arena_user_10.16.9.183",
|
| 39679 |
"anony": true,
|
| 39680 |
+
"tstamp": 1716708425.3973
|
| 39681 |
},
|
| 39682 |
{
|
| 39683 |
+
"model_a": "OpenJourney",
|
| 39684 |
"model_b": "LCM(v1.5/XL)",
|
| 39685 |
+
"winner": "tie (bothbad)",
|
| 39686 |
+
"judge": "arena_user_10.16.27.38",
|
| 39687 |
+
"anony": true,
|
| 39688 |
+
"tstamp": 1716708463.7409
|
| 39689 |
+
},
|
| 39690 |
+
{
|
| 39691 |
+
"model_a": "StableCascade",
|
| 39692 |
+
"model_b": "SDXLTurbo",
|
| 39693 |
"winner": "model_a",
|
| 39694 |
+
"judge": "arena_user_10.16.27.38",
|
| 39695 |
"anony": true,
|
| 39696 |
+
"tstamp": 1716712383.2781
|
| 39697 |
},
|
| 39698 |
{
|
| 39699 |
+
"model_a": "PixArtSigma",
|
| 39700 |
+
"model_b": "PixArtAlpha",
|
| 39701 |
"winner": "model_b",
|
| 39702 |
"judge": "arena_user_10.16.9.183",
|
| 39703 |
"anony": true,
|
| 39704 |
+
"tstamp": 1716714698.5936
|
| 39705 |
},
|
| 39706 |
{
|
| 39707 |
"model_a": "OpenJourney",
|
| 39708 |
+
"model_b": "SDXLTurbo",
|
| 39709 |
+
"winner": "tie (bothbad)",
|
| 39710 |
+
"judge": "arena_user_10.16.3.14",
|
| 39711 |
"anony": true,
|
| 39712 |
+
"tstamp": 1716714723.8527
|
| 39713 |
},
|
| 39714 |
{
|
| 39715 |
"model_a": "OpenJourney",
|
| 39716 |
+
"model_b": "SDXLTurbo",
|
| 39717 |
+
"winner": "tie (bothbad)",
|
| 39718 |
+
"judge": "arena_user_10.16.27.38",
|
| 39719 |
"anony": true,
|
| 39720 |
+
"tstamp": 1716714742.496
|
| 39721 |
},
|
| 39722 |
{
|
| 39723 |
+
"model_a": "SDXL",
|
| 39724 |
+
"model_b": "SDXLLightning",
|
| 39725 |
+
"winner": "tie (bothbad)",
|
| 39726 |
+
"judge": "arena_user_10.16.27.38",
|
| 39727 |
+
"anony": true,
|
| 39728 |
+
"tstamp": 1716714758.5844
|
| 39729 |
+
},
|
| 39730 |
+
{
|
| 39731 |
+
"model_a": "PlayGround V2.5",
|
| 39732 |
"model_b": "PixArtSigma",
|
| 39733 |
+
"winner": "tie (bothbad)",
|
| 39734 |
+
"judge": "arena_user_10.16.27.38",
|
| 39735 |
"anony": true,
|
| 39736 |
+
"tstamp": 1716714791.7059
|
| 39737 |
},
|
| 39738 |
{
|
| 39739 |
+
"model_a": "SDXL",
|
| 39740 |
+
"model_b": "SDXLLightning",
|
| 39741 |
+
"winner": "model_a",
|
| 39742 |
+
"judge": "arena_user_10.16.27.38",
|
| 39743 |
+
"anony": true,
|
| 39744 |
+
"tstamp": 1716714813.7628
|
| 39745 |
+
},
|
| 39746 |
+
{
|
| 39747 |
+
"model_a": "SDXLTurbo",
|
| 39748 |
+
"model_b": "PixArtSigma",
|
| 39749 |
"winner": "model_b",
|
| 39750 |
+
"judge": "arena_user_10.16.3.14",
|
| 39751 |
"anony": true,
|
| 39752 |
+
"tstamp": 1716718013.9851
|
| 39753 |
},
|
| 39754 |
{
|
| 39755 |
+
"model_a": "StableCascade",
|
| 39756 |
"model_b": "SDXLLightning",
|
| 39757 |
"winner": "model_a",
|
| 39758 |
+
"judge": "arena_user_10.16.3.14",
|
| 39759 |
"anony": true,
|
| 39760 |
+
"tstamp": 1716719923.7897
|
| 39761 |
},
|
| 39762 |
{
|
| 39763 |
+
"model_a": "OpenJourney",
|
| 39764 |
+
"model_b": "PlayGround V2.5",
|
| 39765 |
+
"winner": "model_b",
|
| 39766 |
+
"judge": "arena_user_10.16.3.14",
|
| 39767 |
"anony": true,
|
| 39768 |
+
"tstamp": 1716719954.4298
|
| 39769 |
},
|
| 39770 |
{
|
| 39771 |
+
"model_a": "OpenJourney",
|
| 39772 |
+
"model_b": "LCM(v1.5/XL)",
|
| 39773 |
"winner": "model_b",
|
| 39774 |
+
"judge": "arena_user_10.16.27.38",
|
| 39775 |
"anony": true,
|
| 39776 |
+
"tstamp": 1716732002.5621
|
| 39777 |
},
|
| 39778 |
{
|
| 39779 |
+
"model_a": "StableCascade",
|
| 39780 |
+
"model_b": "PixArtAlpha",
|
| 39781 |
"winner": "model_a",
|
| 39782 |
"judge": "arena_user_10.16.9.183",
|
| 39783 |
"anony": true,
|
| 39784 |
+
"tstamp": 1716735265.1561
|
| 39785 |
},
|
| 39786 |
{
|
| 39787 |
+
"model_a": "PixArtSigma",
|
| 39788 |
"model_b": "PlayGround V2",
|
| 39789 |
+
"winner": "model_b",
|
| 39790 |
+
"judge": "arena_user_10.16.9.183",
|
| 39791 |
"anony": true,
|
| 39792 |
+
"tstamp": 1716737955.5742
|
| 39793 |
},
|
| 39794 |
{
|
| 39795 |
+
"model_a": "PixArtSigma",
|
| 39796 |
+
"model_b": "StableCascade",
|
| 39797 |
"winner": "model_b",
|
| 39798 |
"judge": "arena_user_10.16.3.14",
|
| 39799 |
"anony": true,
|
| 39800 |
+
"tstamp": 1716749082.5893
|
| 39801 |
},
|
| 39802 |
{
|
| 39803 |
+
"model_a": "StableCascade",
|
| 39804 |
+
"model_b": "PlayGround V2.5",
|
| 39805 |
+
"winner": "model_b",
|
| 39806 |
"judge": "arena_user_10.16.9.183",
|
| 39807 |
"anony": true,
|
| 39808 |
+
"tstamp": 1716749104.301
|
| 39809 |
},
|
| 39810 |
{
|
| 39811 |
+
"model_a": "PlayGround V2.5",
|
| 39812 |
+
"model_b": "OpenJourney",
|
| 39813 |
"winner": "model_a",
|
| 39814 |
+
"judge": "arena_user_10.16.34.32",
|
| 39815 |
"anony": true,
|
| 39816 |
+
"tstamp": 1716749183.3056
|
| 39817 |
},
|
| 39818 |
{
|
| 39819 |
"model_a": "LCM(v1.5/XL)",
|
| 39820 |
+
"model_b": "StableCascade",
|
| 39821 |
+
"winner": "tie (bothbad)",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39822 |
"judge": "arena_user_10.16.27.38",
|
| 39823 |
"anony": true,
|
| 39824 |
+
"tstamp": 1716749405.6595
|
| 39825 |
},
|
| 39826 |
{
|
| 39827 |
+
"model_a": "PlayGround V2.5",
|
| 39828 |
"model_b": "SDXL",
|
| 39829 |
+
"winner": "model_a",
|
| 39830 |
+
"judge": "arena_user_127.0.0.1",
|
| 39831 |
"anony": true,
|
| 39832 |
+
"tstamp": 1716751911.6964
|
| 39833 |
},
|
| 39834 |
{
|
| 39835 |
+
"model_a": "StableCascade",
|
| 39836 |
+
"model_b": "SDXLTurbo",
|
| 39837 |
"winner": "model_a",
|
| 39838 |
+
"judge": "arena_user_10.16.27.38",
|
| 39839 |
"anony": true,
|
| 39840 |
+
"tstamp": 1716775345.3085
|
| 39841 |
},
|
| 39842 |
{
|
| 39843 |
+
"model_a": "PlayGround V2.5",
|
| 39844 |
+
"model_b": "OpenJourney",
|
| 39845 |
+
"winner": "model_a",
|
| 39846 |
+
"judge": "arena_user_10.16.27.38",
|
| 39847 |
"anony": true,
|
| 39848 |
+
"tstamp": 1716776806.2262
|
| 39849 |
},
|
| 39850 |
{
|
| 39851 |
+
"model_a": "PixArtAlpha",
|
| 39852 |
+
"model_b": "StableCascade",
|
| 39853 |
"winner": "model_a",
|
| 39854 |
+
"judge": "arena_user_10.16.27.38",
|
| 39855 |
"anony": true,
|
| 39856 |
+
"tstamp": 1716776883.0635
|
| 39857 |
},
|
| 39858 |
{
|
| 39859 |
+
"model_a": "PlayGround V2",
|
| 39860 |
+
"model_b": "PixArtAlpha",
|
| 39861 |
"winner": "model_b",
|
| 39862 |
+
"judge": "arena_user_10.16.3.14",
|
| 39863 |
"anony": true,
|
| 39864 |
+
"tstamp": 1716776943.7594
|
| 39865 |
},
|
| 39866 |
{
|
| 39867 |
+
"model_a": "StableCascade",
|
| 39868 |
+
"model_b": "PlayGround V2",
|
| 39869 |
+
"winner": "tie",
|
| 39870 |
+
"judge": "arena_user_10.16.34.32",
|
| 39871 |
"anony": true,
|
| 39872 |
+
"tstamp": 1716779918.8509
|
| 39873 |
},
|
| 39874 |
{
|
| 39875 |
+
"model_a": "PlayGround V2",
|
| 39876 |
+
"model_b": "SDXL",
|
| 39877 |
"winner": "model_b",
|
| 39878 |
+
"judge": "arena_user_10.16.9.183",
|
| 39879 |
"anony": true,
|
| 39880 |
+
"tstamp": 1716780527.3148
|
| 39881 |
},
|
| 39882 |
{
|
| 39883 |
+
"model_a": "PixArtSigma",
|
| 39884 |
+
"model_b": "PlayGround V2",
|
| 39885 |
"winner": "model_b",
|
| 39886 |
+
"judge": "arena_user_10.16.27.38",
|
| 39887 |
"anony": true,
|
| 39888 |
+
"tstamp": 1716780918.544
|
| 39889 |
},
|
| 39890 |
{
|
| 39891 |
+
"model_a": "PixArtSigma",
|
| 39892 |
"model_b": "PlayGround V2.5",
|
| 39893 |
+
"winner": "model_a",
|
| 39894 |
"judge": "arena_user_10.16.9.183",
|
| 39895 |
"anony": true,
|
| 39896 |
+
"tstamp": 1716780951.8598
|
| 39897 |
},
|
| 39898 |
{
|
| 39899 |
+
"model_a": "SDXL",
|
| 39900 |
+
"model_b": "StableCascade",
|
| 39901 |
+
"winner": "model_a",
|
| 39902 |
"judge": "arena_user_10.16.27.38",
|
| 39903 |
"anony": true,
|
| 39904 |
+
"tstamp": 1716781241.076
|
| 39905 |
},
|
| 39906 |
{
|
| 39907 |
"model_a": "SDXL",
|
| 39908 |
+
"model_b": "PlayGround V2",
|
| 39909 |
"winner": "model_a",
|
| 39910 |
"judge": "arena_user_10.16.9.183",
|
| 39911 |
+
"anony": true,
|
| 39912 |
+
"tstamp": 1716781759.6094
|
| 39913 |
},
|
| 39914 |
{
|
| 39915 |
"model_a": "SDXL",
|
| 39916 |
+
"model_b": "PixArtSigma",
|
| 39917 |
+
"winner": "model_b",
|
| 39918 |
+
"judge": "arena_user_10.16.34.32",
|
| 39919 |
"anony": true,
|
| 39920 |
+
"tstamp": 1716782158.4573
|
| 39921 |
},
|
| 39922 |
{
|
| 39923 |
"model_a": "SDXLLightning",
|
| 39924 |
"model_b": "SDXL",
|
| 39925 |
+
"winner": "model_a",
|
| 39926 |
+
"judge": "arena_user_10.16.3.14",
|
| 39927 |
"anony": true,
|
| 39928 |
+
"tstamp": 1716782417.8883
|
| 39929 |
},
|
| 39930 |
{
|
| 39931 |
+
"model_a": "PixArtSigma",
|
| 39932 |
"model_b": "PlayGround V2",
|
| 39933 |
"winner": "model_b",
|
| 39934 |
+
"judge": "arena_user_10.16.34.32",
|
| 39935 |
"anony": true,
|
| 39936 |
+
"tstamp": 1716782420.5452
|
| 39937 |
},
|
| 39938 |
{
|
| 39939 |
+
"model_a": "SDXL",
|
| 39940 |
+
"model_b": "SDXLTurbo",
|
| 39941 |
"winner": "model_a",
|
| 39942 |
"judge": "arena_user_10.16.27.38",
|
| 39943 |
"anony": true,
|
| 39944 |
+
"tstamp": 1716782443.0163
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39945 |
},
|
| 39946 |
{
|
| 39947 |
"model_a": "PixArtAlpha",
|
| 39948 |
+
"model_b": "SDXLTurbo",
|
| 39949 |
"winner": "model_a",
|
| 39950 |
"judge": "arena_user_10.16.9.183",
|
| 39951 |
"anony": true,
|
| 39952 |
+
"tstamp": 1716782459.9191
|
| 39953 |
},
|
| 39954 |
{
|
| 39955 |
"model_a": "PlayGround V2.5",
|
| 39956 |
+
"model_b": "SDXLTurbo",
|
| 39957 |
"winner": "model_a",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39958 |
"judge": "arena_user_10.16.9.183",
|
| 39959 |
"anony": true,
|
| 39960 |
+
"tstamp": 1716782484.1275
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39961 |
},
|
| 39962 |
{
|
| 39963 |
"model_a": "LCM(v1.5/XL)",
|
| 39964 |
+
"model_b": "SDXLTurbo",
|
| 39965 |
"winner": "model_b",
|
| 39966 |
+
"judge": "arena_user_10.16.9.183",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39967 |
"anony": true,
|
| 39968 |
+
"tstamp": 1716782499.7234
|
| 39969 |
},
|
| 39970 |
{
|
| 39971 |
+
"model_a": "StableCascade",
|
| 39972 |
+
"model_b": "PlayGround V2",
|
| 39973 |
"winner": "model_a",
|
| 39974 |
+
"judge": "arena_user_10.16.34.32",
|
| 39975 |
"anony": true,
|
| 39976 |
+
"tstamp": 1716782519.0233
|
| 39977 |
},
|
| 39978 |
{
|
| 39979 |
"model_a": "LCM(v1.5/XL)",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39980 |
"model_b": "SDXL",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39981 |
"winner": "model_b",
|
| 39982 |
"judge": "arena_user_10.16.9.183",
|
| 39983 |
"anony": true,
|
| 39984 |
+
"tstamp": 1716782537.0836
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39985 |
},
|
| 39986 |
{
|
| 39987 |
+
"model_a": "PlayGround V2.5",
|
| 39988 |
"model_b": "SDXL",
|
| 39989 |
"winner": "model_a",
|
| 39990 |
+
"judge": "arena_user_10.16.9.183",
|
| 39991 |
"anony": true,
|
| 39992 |
+
"tstamp": 1716782553.9857
|
| 39993 |
},
|
| 39994 |
{
|
| 39995 |
"model_a": "PlayGround V2",
|
| 39996 |
+
"model_b": "PixArtSigma",
|
| 39997 |
"winner": "tie (bothbad)",
|
| 39998 |
+
"judge": "arena_user_10.16.34.32",
|
| 39999 |
"anony": true,
|
| 40000 |
+
"tstamp": 1716782569.153
|
| 40001 |
},
|
| 40002 |
{
|
| 40003 |
+
"model_a": "PlayGround V2.5",
|
| 40004 |
"model_b": "StableCascade",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40005 |
"winner": "tie (bothbad)",
|
| 40006 |
+
"judge": "arena_user_10.16.3.14",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40007 |
"anony": true,
|
| 40008 |
+
"tstamp": 1716782604.0051
|
| 40009 |
},
|
| 40010 |
{
|
| 40011 |
"model_a": "PlayGround V2.5",
|
| 40012 |
+
"model_b": "PixArtSigma",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40013 |
"winner": "model_b",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40014 |
"judge": "arena_user_10.16.3.14",
|
| 40015 |
"anony": true,
|
| 40016 |
+
"tstamp": 1716782640.804
|
| 40017 |
},
|
| 40018 |
{
|
| 40019 |
+
"model_a": "SDXL",
|
| 40020 |
"model_b": "PlayGround V2.5",
|
| 40021 |
"winner": "model_b",
|
| 40022 |
"judge": "arena_user_10.16.9.183",
|
| 40023 |
"anony": true,
|
| 40024 |
+
"tstamp": 1716782995.4422
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40025 |
},
|
| 40026 |
{
|
| 40027 |
"model_a": "SDXLLightning",
|
| 40028 |
+
"model_b": "StableCascade",
|
| 40029 |
"winner": "model_b",
|
| 40030 |
"judge": "arena_user_10.16.9.183",
|
| 40031 |
"anony": true,
|
| 40032 |
+
"tstamp": 1716783031.5075
|
| 40033 |
},
|
| 40034 |
{
|
| 40035 |
"model_a": "PixArtSigma",
|
| 40036 |
+
"model_b": "StableCascade",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40037 |
"winner": "model_a",
|
| 40038 |
"judge": "arena_user_10.16.9.183",
|
| 40039 |
"anony": true,
|
| 40040 |
+
"tstamp": 1716783089.4325
|
| 40041 |
},
|
| 40042 |
{
|
| 40043 |
"model_a": "PixArtAlpha",
|
| 40044 |
+
"model_b": "StableCascade",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40045 |
"winner": "model_b",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40046 |
"judge": "arena_user_10.16.27.38",
|
| 40047 |
"anony": true,
|
| 40048 |
+
"tstamp": 1716783090.8889
|
| 40049 |
},
|
| 40050 |
{
|
| 40051 |
+
"model_a": "SDXL",
|
| 40052 |
+
"model_b": "SDXLTurbo",
|
| 40053 |
"winner": "tie (bothbad)",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40054 |
"judge": "arena_user_10.16.3.14",
|
| 40055 |
"anony": true,
|
| 40056 |
+
"tstamp": 1716783109.7954
|
| 40057 |
},
|
| 40058 |
{
|
| 40059 |
+
"model_a": "PixArtAlpha",
|
| 40060 |
"model_b": "SDXLLightning",
|
| 40061 |
"winner": "model_b",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40062 |
"judge": "arena_user_10.16.27.38",
|
| 40063 |
"anony": true,
|
| 40064 |
+
"tstamp": 1716783138.0445
|
| 40065 |
},
|
| 40066 |
{
|
| 40067 |
+
"model_a": "SDXLTurbo",
|
| 40068 |
+
"model_b": "PixArtAlpha",
|
| 40069 |
"winner": "model_b",
|
| 40070 |
"judge": "arena_user_10.16.9.183",
|
| 40071 |
"anony": true,
|
| 40072 |
+
"tstamp": 1716783168.9557
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40073 |
},
|
| 40074 |
{
|
| 40075 |
+
"model_a": "SDXL",
|
| 40076 |
"model_b": "SDXLLightning",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40077 |
"winner": "tie (bothbad)",
|
| 40078 |
"judge": "arena_user_10.16.9.183",
|
| 40079 |
"anony": true,
|
| 40080 |
+
"tstamp": 1716783358.7145
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40081 |
},
|
| 40082 |
{
|
| 40083 |
"model_a": "PlayGround V2.5",
|
| 40084 |
+
"model_b": "SDXLLightning",
|
| 40085 |
"winner": "model_a",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40086 |
"judge": "arena_user_10.16.3.14",
|
| 40087 |
+
"anony": false,
|
| 40088 |
+
"tstamp": 1716783462.483
|
| 40089 |
},
|
| 40090 |
{
|
| 40091 |
+
"model_a": "SDXLLightning",
|
| 40092 |
+
"model_b": "SDXLTurbo",
|
| 40093 |
+
"winner": "tie",
|
| 40094 |
"judge": "arena_user_10.16.3.14",
|
| 40095 |
"anony": true,
|
| 40096 |
+
"tstamp": 1716783564.225
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40097 |
},
|
| 40098 |
+
{
|
| 40099 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40100 |
+
"model_b": "SDXLTurbo",
|
| 40101 |
"winner": "model_b",
|
| 40102 |
"judge": "arena_user_10.16.9.183",
|
| 40103 |
+
"anony": false,
|
| 40104 |
+
"tstamp": 1716784775.2026
|
| 40105 |
},
|
| 40106 |
{
|
| 40107 |
+
"model_a": "StableCascade",
|
| 40108 |
+
"model_b": "SDXLTurbo",
|
| 40109 |
+
"winner": "model_b",
|
| 40110 |
+
"judge": "arena_user_10.16.9.183",
|
| 40111 |
"anony": true,
|
| 40112 |
+
"tstamp": 1716786037.8729
|
| 40113 |
},
|
| 40114 |
{
|
| 40115 |
"model_a": "PlayGround V2.5",
|
| 40116 |
+
"model_b": "PlayGround V2",
|
| 40117 |
+
"winner": "model_b",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40118 |
"judge": "arena_user_10.16.3.14",
|
| 40119 |
"anony": true,
|
| 40120 |
+
"tstamp": 1716786448.0434
|
| 40121 |
},
|
| 40122 |
{
|
| 40123 |
"model_a": "OpenJourney",
|
| 40124 |
+
"model_b": "SDXLLightning",
|
| 40125 |
"winner": "model_b",
|
| 40126 |
"judge": "arena_user_10.16.27.38",
|
| 40127 |
"anony": true,
|
| 40128 |
+
"tstamp": 1716787891.5755
|
| 40129 |
},
|
| 40130 |
{
|
| 40131 |
+
"model_a": "StableCascade",
|
| 40132 |
+
"model_b": "PlayGround V2.5",
|
| 40133 |
+
"winner": "model_b",
|
| 40134 |
+
"judge": "arena_user_10.16.9.183",
|
| 40135 |
"anony": true,
|
| 40136 |
+
"tstamp": 1716788134.0343
|
| 40137 |
},
|
| 40138 |
{
|
| 40139 |
+
"model_a": "OpenJourney",
|
| 40140 |
"model_b": "SDXLTurbo",
|
| 40141 |
+
"winner": "tie",
|
| 40142 |
"judge": "arena_user_10.16.27.38",
|
| 40143 |
"anony": true,
|
| 40144 |
+
"tstamp": 1716788285.3057
|
| 40145 |
},
|
| 40146 |
{
|
| 40147 |
+
"model_a": "SDXLLightning",
|
| 40148 |
+
"model_b": "StableCascade",
|
| 40149 |
"winner": "model_b",
|
| 40150 |
"judge": "arena_user_10.16.9.183",
|
| 40151 |
"anony": true,
|
| 40152 |
+
"tstamp": 1716789329.1919
|
| 40153 |
},
|
| 40154 |
{
|
| 40155 |
"model_a": "OpenJourney",
|
| 40156 |
+
"model_b": "PixArtAlpha",
|
| 40157 |
+
"winner": "model_a",
|
| 40158 |
"judge": "arena_user_10.16.3.14",
|
| 40159 |
"anony": true,
|
| 40160 |
+
"tstamp": 1716795652.1604
|
| 40161 |
},
|
| 40162 |
{
|
| 40163 |
+
"model_a": "SDXL",
|
| 40164 |
+
"model_b": "OpenJourney",
|
| 40165 |
+
"winner": "model_a",
|
| 40166 |
+
"judge": "arena_user_10.16.34.32",
|
| 40167 |
+
"anony": true,
|
| 40168 |
+
"tstamp": 1716795779.9806
|
| 40169 |
+
},
|
| 40170 |
+
{
|
| 40171 |
+
"model_a": "PlayGround V2",
|
| 40172 |
+
"model_b": "SDXL",
|
| 40173 |
"winner": "tie (bothbad)",
|
| 40174 |
+
"judge": "arena_user_10.16.9.183",
|
| 40175 |
"anony": true,
|
| 40176 |
+
"tstamp": 1716795814.0196
|
| 40177 |
},
|
| 40178 |
{
|
| 40179 |
+
"model_a": "PixArtAlpha",
|
| 40180 |
+
"model_b": "OpenJourney",
|
| 40181 |
"winner": "tie (bothbad)",
|
| 40182 |
"judge": "arena_user_10.16.27.38",
|
| 40183 |
"anony": true,
|
| 40184 |
+
"tstamp": 1716795851.1701
|
| 40185 |
},
|
| 40186 |
{
|
| 40187 |
"model_a": "PlayGround V2.5",
|
| 40188 |
+
"model_b": "PlayGround V2",
|
| 40189 |
+
"winner": "model_b",
|
| 40190 |
+
"judge": "arena_user_10.16.9.183",
|
| 40191 |
"anony": true,
|
| 40192 |
+
"tstamp": 1716796006.4588
|
| 40193 |
},
|
| 40194 |
{
|
| 40195 |
+
"model_a": "OpenJourney",
|
| 40196 |
+
"model_b": "SDXL",
|
| 40197 |
+
"winner": "model_b",
|
| 40198 |
+
"judge": "arena_user_10.16.34.32",
|
| 40199 |
"anony": true,
|
| 40200 |
+
"tstamp": 1716796314.0423
|
| 40201 |
},
|
| 40202 |
{
|
| 40203 |
+
"model_a": "PixArtSigma",
|
| 40204 |
+
"model_b": "SDXL",
|
| 40205 |
"winner": "model_b",
|
| 40206 |
"judge": "arena_user_10.16.3.14",
|
| 40207 |
"anony": true,
|
| 40208 |
+
"tstamp": 1716797932.5341
|
| 40209 |
},
|
| 40210 |
{
|
| 40211 |
+
"model_a": "PixArtSigma",
|
| 40212 |
+
"model_b": "PlayGround V2",
|
| 40213 |
+
"winner": "model_b",
|
| 40214 |
"judge": "arena_user_10.16.3.14",
|
| 40215 |
"anony": true,
|
| 40216 |
+
"tstamp": 1716798084.7317
|
| 40217 |
},
|
| 40218 |
{
|
| 40219 |
+
"model_a": "PixArtAlpha",
|
| 40220 |
+
"model_b": "PixArtSigma",
|
| 40221 |
+
"winner": "tie (bothbad)",
|
| 40222 |
"judge": "arena_user_10.16.3.14",
|
| 40223 |
"anony": true,
|
| 40224 |
+
"tstamp": 1716798121.6615
|
| 40225 |
},
|
| 40226 |
{
|
| 40227 |
+
"model_a": "PixArtAlpha",
|
| 40228 |
"model_b": "LCM(v1.5/XL)",
|
| 40229 |
"winner": "model_b",
|
| 40230 |
+
"judge": "arena_user_10.16.9.183",
|
| 40231 |
"anony": true,
|
| 40232 |
+
"tstamp": 1716800856.1807
|
| 40233 |
},
|
| 40234 |
{
|
| 40235 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40236 |
+
"model_b": "OpenJourney",
|
| 40237 |
+
"winner": "tie",
|
| 40238 |
"judge": "arena_user_10.16.9.183",
|
| 40239 |
"anony": true,
|
| 40240 |
+
"tstamp": 1716811377.2082
|
| 40241 |
},
|
| 40242 |
{
|
| 40243 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40244 |
+
"model_b": "OpenJourney",
|
| 40245 |
+
"winner": "tie (bothbad)",
|
| 40246 |
"judge": "arena_user_10.16.9.183",
|
| 40247 |
"anony": true,
|
| 40248 |
+
"tstamp": 1716811412.4609
|
| 40249 |
},
|
| 40250 |
{
|
| 40251 |
+
"model_a": "SDXL",
|
| 40252 |
+
"model_b": "SDXLLightning",
|
| 40253 |
+
"winner": "tie (bothbad)",
|
| 40254 |
"judge": "arena_user_10.16.9.183",
|
| 40255 |
"anony": true,
|
| 40256 |
+
"tstamp": 1716811455.261
|
| 40257 |
},
|
| 40258 |
{
|
| 40259 |
+
"model_a": "PlayGround V2",
|
| 40260 |
+
"model_b": "SDXLTurbo",
|
| 40261 |
+
"winner": "model_a",
|
| 40262 |
+
"judge": "arena_user_10.16.9.183",
|
| 40263 |
"anony": true,
|
| 40264 |
+
"tstamp": 1716815094.1935
|
| 40265 |
},
|
| 40266 |
{
|
| 40267 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40268 |
+
"model_b": "OpenJourney",
|
| 40269 |
+
"winner": "tie",
|
| 40270 |
"judge": "arena_user_10.16.3.14",
|
| 40271 |
"anony": true,
|
| 40272 |
+
"tstamp": 1716815234.9665
|
| 40273 |
},
|
| 40274 |
{
|
| 40275 |
+
"model_a": "SDXLTurbo",
|
| 40276 |
"model_b": "PlayGround V2.5",
|
| 40277 |
+
"winner": "tie",
|
| 40278 |
"judge": "arena_user_10.16.9.183",
|
| 40279 |
"anony": true,
|
| 40280 |
+
"tstamp": 1716815654.9788
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40281 |
},
|
| 40282 |
{
|
| 40283 |
+
"model_a": "OpenJourney",
|
| 40284 |
+
"model_b": "SDXLTurbo",
|
| 40285 |
+
"winner": "tie",
|
| 40286 |
+
"judge": "arena_user_10.16.3.14",
|
| 40287 |
"anony": true,
|
| 40288 |
+
"tstamp": 1716815707.9688
|
| 40289 |
},
|
| 40290 |
{
|
| 40291 |
+
"model_a": "SDXL",
|
| 40292 |
+
"model_b": "PixArtAlpha",
|
| 40293 |
+
"winner": "tie",
|
| 40294 |
+
"judge": "arena_user_10.16.9.183",
|
| 40295 |
"anony": true,
|
| 40296 |
+
"tstamp": 1716815854.6739
|
| 40297 |
},
|
| 40298 |
{
|
| 40299 |
"model_a": "OpenJourney",
|
| 40300 |
+
"model_b": "LCM(v1.5/XL)",
|
| 40301 |
"winner": "model_b",
|
| 40302 |
"judge": "arena_user_10.16.3.14",
|
| 40303 |
"anony": true,
|
| 40304 |
+
"tstamp": 1716816541.9961
|
| 40305 |
},
|
| 40306 |
{
|
| 40307 |
+
"model_a": "SDXLLightning",
|
| 40308 |
+
"model_b": "SDXLTurbo",
|
| 40309 |
"winner": "model_b",
|
| 40310 |
+
"judge": "arena_user_10.16.34.32",
|
| 40311 |
"anony": true,
|
| 40312 |
+
"tstamp": 1716816625.048
|
| 40313 |
},
|
| 40314 |
{
|
| 40315 |
+
"model_a": "PixArtAlpha",
|
| 40316 |
+
"model_b": "OpenJourney",
|
| 40317 |
+
"winner": "tie (bothbad)",
|
| 40318 |
+
"judge": "arena_user_10.16.34.32",
|
| 40319 |
"anony": true,
|
| 40320 |
+
"tstamp": 1716818286.1937
|
| 40321 |
},
|
| 40322 |
{
|
| 40323 |
+
"model_a": "StableCascade",
|
| 40324 |
+
"model_b": "PlayGround V2.5",
|
| 40325 |
+
"winner": "model_b",
|
| 40326 |
+
"judge": "arena_user_10.16.9.183",
|
| 40327 |
"anony": true,
|
| 40328 |
+
"tstamp": 1716820699.6007
|
| 40329 |
+
},
|
| 40330 |
+
{
|
| 40331 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40332 |
+
"model_b": "SDXLLightning",
|
| 40333 |
+
"winner": "model_b",
|
| 40334 |
+
"judge": "arena_user_10.16.3.14",
|
| 40335 |
+
"anony": false,
|
| 40336 |
+
"tstamp": 1716822550.5508
|
| 40337 |
},
|
| 40338 |
{
|
| 40339 |
"model_a": "PixArtAlpha",
|
| 40340 |
+
"model_b": "SDXLLightning",
|
| 40341 |
+
"winner": "model_b",
|
| 40342 |
+
"judge": "arena_user_10.16.9.183",
|
| 40343 |
+
"anony": false,
|
| 40344 |
+
"tstamp": 1716822601.7824
|
| 40345 |
+
},
|
| 40346 |
+
{
|
| 40347 |
+
"model_a": "StableCascade",
|
| 40348 |
+
"model_b": "SDXLLightning",
|
| 40349 |
"winner": "model_a",
|
| 40350 |
+
"judge": "arena_user_10.16.3.14",
|
| 40351 |
+
"anony": false,
|
| 40352 |
+
"tstamp": 1716822684.0205
|
| 40353 |
},
|
| 40354 |
{
|
| 40355 |
+
"model_a": "OpenJourney",
|
| 40356 |
+
"model_b": "PlayGround V2",
|
| 40357 |
"winner": "model_b",
|
| 40358 |
"judge": "arena_user_10.16.9.183",
|
| 40359 |
"anony": true,
|
| 40360 |
+
"tstamp": 1716824222.9857
|
| 40361 |
},
|
| 40362 |
{
|
| 40363 |
+
"model_a": "OpenJourney",
|
| 40364 |
+
"model_b": "SDXLLightning",
|
| 40365 |
"winner": "model_b",
|
| 40366 |
+
"judge": "arena_user_10.16.9.183",
|
| 40367 |
+
"anony": true,
|
| 40368 |
+
"tstamp": 1716824902.917
|
| 40369 |
+
},
|
| 40370 |
+
{
|
| 40371 |
+
"model_a": "SDXLLightning",
|
| 40372 |
+
"model_b": "StableCascade",
|
| 40373 |
+
"winner": "model_a",
|
| 40374 |
"judge": "arena_user_10.16.3.14",
|
| 40375 |
"anony": true,
|
| 40376 |
+
"tstamp": 1716825475.2657
|
| 40377 |
},
|
| 40378 |
{
|
| 40379 |
"model_a": "StableCascade",
|
| 40380 |
+
"model_b": "PlayGround V2.5",
|
| 40381 |
+
"winner": "model_b",
|
| 40382 |
+
"judge": "arena_user_10.16.9.183",
|
| 40383 |
+
"anony": false,
|
| 40384 |
+
"tstamp": 1716827655.7005
|
| 40385 |
+
},
|
| 40386 |
+
{
|
| 40387 |
+
"model_a": "SDXL",
|
| 40388 |
"model_b": "PlayGround V2",
|
| 40389 |
+
"winner": "model_a",
|
| 40390 |
"judge": "arena_user_10.16.34.32",
|
| 40391 |
"anony": true,
|
| 40392 |
+
"tstamp": 1716833085.2146
|
| 40393 |
},
|
| 40394 |
{
|
| 40395 |
+
"model_a": "PlayGround V2.5",
|
| 40396 |
+
"model_b": "StableCascade",
|
| 40397 |
"winner": "model_b",
|
| 40398 |
"judge": "arena_user_10.16.9.183",
|
| 40399 |
"anony": true,
|
| 40400 |
+
"tstamp": 1716837768.4182
|
| 40401 |
},
|
| 40402 |
{
|
| 40403 |
+
"model_a": "PlayGround V2.5",
|
| 40404 |
"model_b": "PlayGround V2",
|
| 40405 |
+
"winner": "tie",
|
| 40406 |
"judge": "arena_user_10.16.27.38",
|
| 40407 |
"anony": true,
|
| 40408 |
+
"tstamp": 1716838033.7689
|
| 40409 |
},
|
| 40410 |
{
|
| 40411 |
+
"model_a": "PixArtAlpha",
|
| 40412 |
+
"model_b": "LCM(v1.5/XL)",
|
| 40413 |
+
"winner": "model_b",
|
| 40414 |
+
"judge": "arena_user_10.16.27.38",
|
| 40415 |
"anony": true,
|
| 40416 |
+
"tstamp": 1716840571.8782
|
| 40417 |
},
|
| 40418 |
{
|
| 40419 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40420 |
+
"model_b": "PixArtAlpha",
|
| 40421 |
+
"winner": "model_b",
|
| 40422 |
"judge": "arena_user_10.16.27.38",
|
| 40423 |
"anony": true,
|
| 40424 |
+
"tstamp": 1716842021.1183
|
| 40425 |
},
|
| 40426 |
{
|
| 40427 |
+
"model_a": "SDXLLightning",
|
| 40428 |
+
"model_b": "OpenJourney",
|
| 40429 |
"winner": "model_a",
|
| 40430 |
+
"judge": "arena_user_10.16.34.32",
|
| 40431 |
"anony": true,
|
| 40432 |
+
"tstamp": 1716842045.0031
|
| 40433 |
},
|
| 40434 |
{
|
| 40435 |
+
"model_a": "SDXLLightning",
|
| 40436 |
+
"model_b": "PlayGround V2",
|
| 40437 |
"winner": "model_b",
|
| 40438 |
+
"judge": "arena_user_10.16.3.14",
|
| 40439 |
"anony": true,
|
| 40440 |
+
"tstamp": 1716842062.0558
|
| 40441 |
},
|
| 40442 |
{
|
| 40443 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40444 |
+
"model_b": "PlayGround V2.5",
|
| 40445 |
+
"winner": "model_b",
|
| 40446 |
+
"judge": "arena_user_10.16.9.183",
|
| 40447 |
"anony": true,
|
| 40448 |
+
"tstamp": 1716844269.6437
|
| 40449 |
},
|
| 40450 |
{
|
| 40451 |
+
"model_a": "SDXLTurbo",
|
| 40452 |
+
"model_b": "SDXLLightning",
|
| 40453 |
"winner": "model_b",
|
| 40454 |
+
"judge": "arena_user_10.16.9.183",
|
| 40455 |
"anony": true,
|
| 40456 |
+
"tstamp": 1716844294.3593
|
| 40457 |
},
|
| 40458 |
{
|
| 40459 |
+
"model_a": "OpenJourney",
|
| 40460 |
+
"model_b": "PlayGround V2.5",
|
| 40461 |
+
"winner": "model_b",
|
| 40462 |
"judge": "arena_user_10.16.27.38",
|
| 40463 |
"anony": true,
|
| 40464 |
+
"tstamp": 1716846730.6152
|
| 40465 |
},
|
| 40466 |
{
|
| 40467 |
+
"model_a": "OpenJourney",
|
| 40468 |
+
"model_b": "StableCascade",
|
| 40469 |
+
"winner": "model_b",
|
| 40470 |
+
"judge": "arena_user_10.16.3.14",
|
| 40471 |
"anony": true,
|
| 40472 |
+
"tstamp": 1716846754.4305
|
| 40473 |
},
|
| 40474 |
{
|
| 40475 |
+
"model_a": "SDXLLightning",
|
| 40476 |
"model_b": "SDXLTurbo",
|
| 40477 |
"winner": "model_a",
|
| 40478 |
"judge": "arena_user_10.16.9.183",
|
| 40479 |
"anony": true,
|
| 40480 |
+
"tstamp": 1716846777.0478
|
| 40481 |
},
|
| 40482 |
{
|
| 40483 |
+
"model_a": "PixArtSigma",
|
| 40484 |
+
"model_b": "OpenJourney",
|
| 40485 |
+
"winner": "model_a",
|
| 40486 |
+
"judge": "arena_user_10.16.27.38",
|
| 40487 |
"anony": true,
|
| 40488 |
+
"tstamp": 1716846795.5401
|
| 40489 |
},
|
| 40490 |
{
|
| 40491 |
+
"model_a": "SDXL",
|
| 40492 |
"model_b": "PlayGround V2",
|
| 40493 |
+
"winner": "tie",
|
| 40494 |
+
"judge": "arena_user_10.16.3.14",
|
| 40495 |
"anony": true,
|
| 40496 |
+
"tstamp": 1716846812.5139
|
| 40497 |
},
|
| 40498 |
{
|
| 40499 |
+
"model_a": "PixArtSigma",
|
| 40500 |
"model_b": "SDXL",
|
| 40501 |
"winner": "model_b",
|
| 40502 |
+
"judge": "arena_user_10.16.3.14",
|
| 40503 |
"anony": true,
|
| 40504 |
+
"tstamp": 1716846831.5816
|
| 40505 |
},
|
| 40506 |
{
|
| 40507 |
+
"model_a": "LCM(v1.5/XL)",
|
| 40508 |
+
"model_b": "SDXLTurbo",
|
| 40509 |
"winner": "model_a",
|
| 40510 |
+
"judge": "arena_user_10.16.27.38",
|
| 40511 |
+
"anony": false,
|
| 40512 |
+
"tstamp": 1716846856.7092
|
| 40513 |
},
|
| 40514 |
{
|
| 40515 |
+
"model_a": "StableCascade",
|
| 40516 |
+
"model_b": "SDXLTurbo",
|
| 40517 |
+
"winner": "model_b",
|
| 40518 |
+
"judge": "arena_user_10.16.3.14",
|
| 40519 |
"anony": true,
|
| 40520 |
+
"tstamp": 1716851477.2888
|
| 40521 |
},
|
| 40522 |
{
|
| 40523 |
+
"model_a": "SDXLTurbo",
|
| 40524 |
+
"model_b": "PixArtAlpha",
|
| 40525 |
+
"winner": "model_a",
|
| 40526 |
+
"judge": "arena_user_10.16.27.38",
|
| 40527 |
"anony": true,
|
| 40528 |
+
"tstamp": 1716852722.4343
|
| 40529 |
},
|
| 40530 |
{
|
| 40531 |
+
"model_a": "SDXL",
|
| 40532 |
+
"model_b": "SDXLLightning",
|
| 40533 |
+
"winner": "tie (bothbad)",
|
| 40534 |
+
"judge": "arena_user_10.16.34.32",
|
| 40535 |
"anony": true,
|
| 40536 |
+
"tstamp": 1716862066.5604
|
| 40537 |
},
|
| 40538 |
{
|
| 40539 |
+
"model_a": "SDXLTurbo",
|
| 40540 |
+
"model_b": "OpenJourney",
|
| 40541 |
"winner": "model_a",
|
| 40542 |
+
"judge": "arena_user_10.16.34.32",
|
| 40543 |
"anony": true,
|
| 40544 |
+
"tstamp": 1716888658.6323
|
| 40545 |
},
|
| 40546 |
{
|
| 40547 |
+
"model_a": "PixArtAlpha",
|
| 40548 |
+
"model_b": "StableCascade",
|
| 40549 |
+
"winner": "model_b",
|
| 40550 |
"judge": "arena_user_10.16.27.38",
|
| 40551 |
"anony": true,
|
| 40552 |
+
"tstamp": 1716888692.3451
|
| 40553 |
},
|
| 40554 |
{
|
| 40555 |
+
"model_a": "OpenJourney",
|
| 40556 |
+
"model_b": "PixArtAlpha",
|
| 40557 |
"winner": "model_b",
|
| 40558 |
"judge": "arena_user_10.16.9.183",
|
| 40559 |
"anony": true,
|
| 40560 |
+
"tstamp": 1716888743.3788
|
| 40561 |
},
|
| 40562 |
{
|
| 40563 |
+
"model_a": "SDXLLightning",
|
| 40564 |
+
"model_b": "PlayGround V2.5",
|
| 40565 |
+
"winner": "model_b",
|
| 40566 |
+
"judge": "arena_user_10.16.27.38",
|
| 40567 |
"anony": true,
|
| 40568 |
+
"tstamp": 1716888808.7382
|
| 40569 |
},
|
| 40570 |
{
|
| 40571 |
"model_a": "SDXLLightning",
|
| 40572 |
+
"model_b": "PlayGround V2",
|
| 40573 |
"winner": "model_b",
|
| 40574 |
"judge": "arena_user_10.16.9.183",
|
| 40575 |
"anony": true,
|
| 40576 |
+
"tstamp": 1716889722.4243
|
| 40577 |
},
|
| 40578 |
{
|
| 40579 |
+
"model_a": "PixArtAlpha",
|
| 40580 |
+
"model_b": "PlayGround V2.5",
|
| 40581 |
+
"winner": "model_b",
|
| 40582 |
+
"judge": "arena_user_10.16.34.32",
|
| 40583 |
"anony": true,
|
| 40584 |
+
"tstamp": 1716892310.907
|
| 40585 |
},
|
| 40586 |
{
|
| 40587 |
+
"model_a": "StableCascade",
|
| 40588 |
+
"model_b": "PlayGround V2.5",
|
| 40589 |
"winner": "model_b",
|
| 40590 |
"judge": "arena_user_10.16.27.38",
|
| 40591 |
"anony": true,
|
| 40592 |
+
"tstamp": 1716893044.8237
|
| 40593 |
},
|
| 40594 |
{
|
| 40595 |
+
"model_a": "PlayGround V2",
|
| 40596 |
+
"model_b": "PlayGround V2.5",
|
| 40597 |
"winner": "tie (bothbad)",
|
| 40598 |
+
"judge": "arena_user_10.16.27.38",
|
| 40599 |
+
"anony": true,
|
| 40600 |
+
"tstamp": 1716894726.3896
|
| 40601 |
+
},
|
| 40602 |
+
{
|
| 40603 |
+
"model_a": "SDXLTurbo",
|
| 40604 |
+
"model_b": "PlayGround V2",
|
| 40605 |
+
"winner": "model_b",
|
| 40606 |
"judge": "arena_user_10.16.3.14",
|
| 40607 |
"anony": true,
|
| 40608 |
+
"tstamp": 1716904032.8719
|
| 40609 |
},
|
| 40610 |
{
|
| 40611 |
+
"model_a": "OpenJourney",
|
| 40612 |
+
"model_b": "PlayGround V2.5",
|
| 40613 |
"winner": "model_b",
|
| 40614 |
"judge": "arena_user_10.16.27.38",
|
| 40615 |
"anony": true,
|
| 40616 |
+
"tstamp": 1716904166.7957
|
| 40617 |
},
|
| 40618 |
{
|
| 40619 |
"model_a": "SDXLTurbo",
|
| 40620 |
+
"model_b": "SDXL",
|
| 40621 |
"winner": "model_b",
|
| 40622 |
+
"judge": "arena_user_10.16.27.38",
|
| 40623 |
"anony": true,
|
| 40624 |
+
"tstamp": 1716904274.6297
|
| 40625 |
},
|
| 40626 |
{
|
| 40627 |
+
"model_a": "PlayGround V2",
|
| 40628 |
+
"model_b": "PixArtAlpha",
|
| 40629 |
+
"winner": "model_b",
|
| 40630 |
+
"judge": "arena_user_10.16.34.32",
|
| 40631 |
"anony": true,
|
| 40632 |
+
"tstamp": 1716904375.3197
|
| 40633 |
},
|
| 40634 |
{
|
| 40635 |
+
"model_a": "PixArtAlpha",
|
| 40636 |
+
"model_b": "SDXLLightning",
|
| 40637 |
"winner": "model_a",
|
| 40638 |
"judge": "arena_user_10.16.9.183",
|
| 40639 |
+
"anony": true,
|
| 40640 |
+
"tstamp": 1716904458.3328
|
| 40641 |
},
|
| 40642 |
{
|
| 40643 |
"model_a": "StableCascade",
|
| 40644 |
+
"model_b": "SDXL",
|
| 40645 |
+
"winner": "tie (bothbad)",
|
| 40646 |
"judge": "arena_user_10.16.3.14",
|
| 40647 |
"anony": true,
|
| 40648 |
+
"tstamp": 1716905236.8052
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40649 |
},
|
| 40650 |
{
|
| 40651 |
"model_a": "SDXLLightning",
|
| 40652 |
+
"model_b": "OpenJourney",
|
| 40653 |
+
"winner": "tie (bothbad)",
|
| 40654 |
+
"judge": "arena_user_10.16.9.183",
|
| 40655 |
"anony": true,
|
| 40656 |
+
"tstamp": 1716905301.5056
|
| 40657 |
},
|
| 40658 |
{
|
| 40659 |
+
"model_a": "PlayGround V2",
|
| 40660 |
+
"model_b": "SDXLLightning",
|
| 40661 |
+
"winner": "model_b",
|
| 40662 |
"judge": "arena_user_10.16.3.14",
|
| 40663 |
"anony": true,
|
| 40664 |
+
"tstamp": 1716906155.4111
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40665 |
},
|
| 40666 |
{
|
| 40667 |
+
"model_a": "SDXLLightning",
|
| 40668 |
+
"model_b": "PixArtAlpha",
|
| 40669 |
+
"winner": "tie",
|
| 40670 |
+
"judge": "arena_user_10.16.27.38",
|
| 40671 |
"anony": true,
|
| 40672 |
+
"tstamp": 1716909502.2672
|
| 40673 |
},
|
| 40674 |
{
|
| 40675 |
+
"model_a": "OpenJourney",
|
| 40676 |
+
"model_b": "PixArtAlpha",
|
| 40677 |
"winner": "model_b",
|
| 40678 |
+
"judge": "arena_user_10.16.27.38",
|
| 40679 |
"anony": true,
|
| 40680 |
+
"tstamp": 1716911861.7486
|
| 40681 |
}
|
| 40682 |
]
|
arena_elo/results/latest/clean_battle_video_generation.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
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:6edf4987c4b28631efb7fa99e3c68444f4b54835c103325c298e1d890f306155
|
| 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:7b97106b1d926c478ebe1784e4c919155184284fee772facdd008fa3b4a02afa
|
| 3 |
+
size 68023
|
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:d3c60583aef9b1ebed11bc011ee71066d553fc4469ab36fe9e1a69bdd7f045f1
|
| 3 |
+
size 57226
|
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,1113.
|
| 3 |
-
InfEdit,InfEdit,
|
| 4 |
-
CosXLEdit,CosXLEdit,
|
| 5 |
-
InstructPix2Pix,InstructPix2Pix,1032.
|
| 6 |
-
PNP,PNP,997.
|
| 7 |
-
Prompt2prompt,Prompt2prompt,
|
| 8 |
-
CycleDiffusion,CycleDiffusion,
|
| 9 |
-
SDEdit,SDEdit,930.
|
| 10 |
-
Pix2PixZero,Pix2PixZero,858.
|
|
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
MagicBrush,MagicBrush,1113.4601702633233,1114.9499809457182,CC-BY-4.0,"The Ohio State University, University of Waterloo",https://osu-nlp-group.github.io/MagicBrush
|
| 3 |
+
InfEdit,InfEdit,1076.3735770770381,1078.298768921264,Apache-2.0,"University of Michigan, University of California, Berkeley",https://huggingface.co/spaces/sled-umich/InfEdit
|
| 4 |
+
CosXLEdit,CosXLEdit,1064.2254978140068,1065.2558502694496,cosxl-nc-community,Stability AI,https://huggingface.co/spaces/multimodalart/cosxl
|
| 5 |
+
InstructPix2Pix,InstructPix2Pix,1032.7089803075078,1030.5502039749676,"Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros","University of California, Berkeley",https://www.timothybrooks.com/instruct-pix2pix
|
| 6 |
+
PNP,PNP,997.4814111808752,1002.3024164280657,-,Weizmann Institute of Science,https://github.com/MichalGeyer/plug-and-play
|
| 7 |
+
Prompt2prompt,Prompt2prompt,987.231936473214,988.4308236280019,Apache-2.0,"Google, Tel Aviv University",https://prompt-to-prompt.github.io
|
| 8 |
+
CycleDiffusion,CycleDiffusion,938.9851750635415,932.8676126255519,X11,Carnegie Mellon University,https://github.com/ChenWu98/cycle-diffusion
|
| 9 |
+
SDEdit,SDEdit,930.6004411838677,929.6141536709094,MIT License,Stanford University,https://sde-image-editing.github.io
|
| 10 |
+
Pix2PixZero,Pix2PixZero,858.932810636626,857.7301895360717,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,
|
| 4 |
-
SDXLLightning,SDXLLightning,
|
| 5 |
-
StableCascade,StableCascade,
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
SDXL,SDXL,
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
OpenJourney,OpenJourney,853.
|
| 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,1142.7117002337504,1146.9363438085231,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic
|
| 3 |
+
PlayGround V2,PlayGround V2,1098.8454521501767,1099.7665759662905,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
|
| 4 |
+
SDXLLightning,SDXLLightning,1060.1273568149945,1062.6699858648572,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning
|
| 5 |
+
StableCascade,StableCascade,1057.3443292150273,1057.342442192608,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade
|
| 6 |
+
PixArtAlpha,PixArtAlpha,1053.175982335811,1040.650593249443,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS
|
| 7 |
+
PixArtSigma,PixArtSigma,1052.5095907498117,1051.4130097337882,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma
|
| 8 |
+
SDXL,SDXL,999.9885142114025,999.3532207465602,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
| 9 |
+
SDXLTurbo,SDXLTurbo,932.9204637230577,932.3395772992475,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo
|
| 10 |
+
LCM(v1.5/XL),LCM(v1.5/XL),932.3960486321375,925.7743131744076,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api
|
| 11 |
+
OpenJourney,OpenJourney,853.2642690431031,848.1055360442166,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney
|
| 12 |
+
LCM,LCM,816.7162928907261,830.3440920761234,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
arena_elo/results/latest/video_generation_leaderboard.csv
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
-
AnimateDiff,AnimateDiff,
|
| 3 |
-
VideoCrafter2,VideoCrafter2,
|
| 4 |
-
LaVie,LaVie,
|
| 5 |
-
OpenSora,OpenSora,
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
| 1 |
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
| 2 |
+
AnimateDiff,AnimateDiff,1152.0856885350188,1151.0162844753168,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v
|
| 3 |
+
VideoCrafter2,VideoCrafter2,1133.1007019381395,1135.6926816244604,Apache 2.0,Tencent AI Lab,https://ailab-cvc.github.io/videocrafter2/
|
| 4 |
+
LaVie,LaVie,1033.7517715333445,1035.5659090630193,Apache 2.0,Shanghai AI Lab,https://github.com/Vchitect/LaVie
|
| 5 |
+
OpenSora,OpenSora,981.0443881053995,982.7176909892552,Apache 2.0,HPC-AI Tech,https://github.com/hpcaitech/Open-Sora
|
| 6 |
+
ModelScope,ModelScope,925.4949965722631,926.9772247294472,cc-by-nc-4.0,Alibaba Group,https://arxiv.org/abs/2308.06571
|
| 7 |
+
AnimateDiffTurbo,AnimateDiffTurbo,908.2458421360755,912.3411648048902,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v-turbo
|
| 8 |
+
StableVideoDiffusion,StableVideoDiffusion,866.2766111797596,855.6890443136105,N/A,N/A,N/A
|