Spaces:
Running
on
Zero
Running
on
Zero
DongfuJiang
commited on
Commit
•
5f11b6a
1
Parent(s):
6ff1b6e
update
Browse files- arena_elo/elo_rating/elo_analysis.py +51 -20
- arena_elo/results/20240602/elo_results_image_editing.pkl +2 -2
- arena_elo/results/20240604/elo_results_t2i_generation.pkl +2 -2
- arena_elo/results/20240604/elo_results_video_generation.pkl +2 -2
- arena_elo/results/20240605/clean_battle_image_editing.json +0 -0
- arena_elo/results/20240605/clean_battle_t2i_generation.json +0 -0
- arena_elo/results/20240605/clean_battle_video_generation.json +0 -0
- arena_elo/results/20240605/elo_results_image_editing.pkl +3 -0
- arena_elo/results/20240605/elo_results_t2i_generation.pkl +3 -0
- arena_elo/results/20240605/elo_results_video_generation.pkl +3 -0
- arena_elo/results/20240605/image_editing_leaderboard.csv +10 -0
- arena_elo/results/20240605/t2i_generation_leaderboard.csv +12 -0
- arena_elo/results/20240605/video_generation_leaderboard.csv +9 -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
- serve/gradio_web.py +11 -1
- serve/gradio_web_image_editing.py +10 -0
- serve/gradio_web_video_generation.py +10 -0
arena_elo/elo_rating/elo_analysis.py
CHANGED
@@ -171,20 +171,20 @@ def visualize_pairwise_win_fraction(battles, model_order):
|
|
171 |
xaxis_side="top",
|
172 |
title_y=0.07,
|
173 |
title_x=0.5,
|
174 |
-
xaxis=dict(
|
175 |
-
|
176 |
-
|
177 |
-
),
|
178 |
-
yaxis=dict(
|
179 |
-
|
180 |
-
|
181 |
-
),
|
182 |
)
|
183 |
fig.update_traces(
|
184 |
-
textfont=dict(size=16),
|
185 |
-
colorbar=dict(
|
186 |
-
|
187 |
-
),
|
188 |
hovertemplate="Model A: %{y}<br>Model B: %{x}<br>Fraction of A Wins: %{z}<extra></extra>"
|
189 |
)
|
190 |
|
@@ -208,8 +208,20 @@ def visualize_battle_count(battles, model_order):
|
|
208 |
xaxis_side="top",
|
209 |
title_y=0.07,
|
210 |
title_x=0.5,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
)
|
212 |
fig.update_traces(
|
|
|
|
|
|
|
|
|
213 |
hovertemplate="Model A: %{y}<br>Model B: %{x}<br>Count: %{z}<extra></extra>"
|
214 |
)
|
215 |
return fig
|
@@ -226,8 +238,17 @@ def visualize_average_win_rate(battles, limit_show_number):
|
|
226 |
width=700,
|
227 |
)
|
228 |
fig.update_layout(
|
229 |
-
yaxis_title="Average Win Rate", xaxis_title="Model", showlegend=False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
)
|
|
|
231 |
return fig
|
232 |
|
233 |
|
@@ -257,7 +278,17 @@ def visualize_bootstrap_elo_rating(df, df_final, limit_show_number):
|
|
257 |
height=500,
|
258 |
width=700,
|
259 |
)
|
260 |
-
fig.update_layout(xaxis_title="Model", yaxis_title="Rating"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
return fig
|
262 |
|
263 |
|
@@ -380,13 +411,13 @@ if __name__ == "__main__":
|
|
380 |
|
381 |
# # save heatmap results in the same directory of the cleaned battle file
|
382 |
win_fraction_heatmap_file = args.clean_battle_file.replace(".json", "_win_fraction_heatmap.jpg")
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
anony_results["win_fraction_heatmap"].write_image(win_fraction_heatmap_file)
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
|
391 |
|
392 |
last_updated_tstamp = full_results["last_updated_tstamp"]
|
|
|
171 |
xaxis_side="top",
|
172 |
title_y=0.07,
|
173 |
title_x=0.5,
|
174 |
+
# xaxis=dict(
|
175 |
+
# tickfont=dict(size=16),
|
176 |
+
# title=dict(font=dict(size=16)),
|
177 |
+
# ),
|
178 |
+
# yaxis=dict(
|
179 |
+
# tickfont=dict(size=16),
|
180 |
+
# title=dict(font=dict(size=16)),
|
181 |
+
# ),
|
182 |
)
|
183 |
fig.update_traces(
|
184 |
+
# textfont=dict(size=16),
|
185 |
+
# colorbar=dict(
|
186 |
+
# title=dict(font=dict(size=16))
|
187 |
+
# ),
|
188 |
hovertemplate="Model A: %{y}<br>Model B: %{x}<br>Fraction of A Wins: %{z}<extra></extra>"
|
189 |
)
|
190 |
|
|
|
208 |
xaxis_side="top",
|
209 |
title_y=0.07,
|
210 |
title_x=0.5,
|
211 |
+
# xaxis=dict(
|
212 |
+
# tickfont=dict(size=16),
|
213 |
+
# title=dict(font=dict(size=16)),
|
214 |
+
# ),
|
215 |
+
# yaxis=dict(
|
216 |
+
# tickfont=dict(size=16),
|
217 |
+
# title=dict(font=dict(size=16)),
|
218 |
+
# ),
|
219 |
)
|
220 |
fig.update_traces(
|
221 |
+
# textfont=dict(size=16),
|
222 |
+
# colorbar=dict(
|
223 |
+
# title=dict(font=dict(size=16))
|
224 |
+
# ),
|
225 |
hovertemplate="Model A: %{y}<br>Model B: %{x}<br>Count: %{z}<extra></extra>"
|
226 |
)
|
227 |
return fig
|
|
|
238 |
width=700,
|
239 |
)
|
240 |
fig.update_layout(
|
241 |
+
yaxis_title="Average Win Rate", xaxis_title="Model", showlegend=False,
|
242 |
+
# xaxis=dict(
|
243 |
+
# tickfont=dict(size=16),
|
244 |
+
# title=dict(font=dict(size=16)),
|
245 |
+
# ),
|
246 |
+
# yaxis=dict(
|
247 |
+
# tickfont=dict(size=16),
|
248 |
+
# title=dict(font=dict(size=16)),
|
249 |
+
# ),
|
250 |
)
|
251 |
+
fig.update_traces(textfont_size=16)
|
252 |
return fig
|
253 |
|
254 |
|
|
|
278 |
height=500,
|
279 |
width=700,
|
280 |
)
|
281 |
+
fig.update_layout(xaxis_title="Model", yaxis_title="Rating",
|
282 |
+
# xaxis=dict(
|
283 |
+
# tickfont=dict(size=16),
|
284 |
+
# title=dict(font=dict(size=16)),
|
285 |
+
# ),
|
286 |
+
# yaxis=dict(
|
287 |
+
# tickfont=dict(size=16),
|
288 |
+
# title=dict(font=dict(size=16)),
|
289 |
+
# ),
|
290 |
+
)
|
291 |
+
fig.update_traces(textfont_size=16)
|
292 |
return fig
|
293 |
|
294 |
|
|
|
411 |
|
412 |
# # save heatmap results in the same directory of the cleaned battle file
|
413 |
win_fraction_heatmap_file = args.clean_battle_file.replace(".json", "_win_fraction_heatmap.jpg")
|
414 |
+
battle_count_heatmap_file = args.clean_battle_file.replace(".json", "_battle_count_heatmap.jpg")
|
415 |
+
average_win_rate_bar_file = args.clean_battle_file.replace(".json", "_average_win_rate_bar.jpg")
|
416 |
+
bootstrap_elo_rating_file = args.clean_battle_file.replace(".json", "_bootstrap_elo_rating.jpg")
|
417 |
anony_results["win_fraction_heatmap"].write_image(win_fraction_heatmap_file)
|
418 |
+
anony_results["battle_count_heatmap"].write_image(battle_count_heatmap_file)
|
419 |
+
anony_results["average_win_rate_bar"].write_image(average_win_rate_bar_file)
|
420 |
+
anony_results["bootstrap_elo_rating"].write_image(bootstrap_elo_rating_file)
|
421 |
|
422 |
|
423 |
last_updated_tstamp = full_results["last_updated_tstamp"]
|
arena_elo/results/20240602/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:41c7f35c5812940344d1b3f626339820480de7a40b029df9a1ce62f969833173
|
3 |
+
size 62454
|
arena_elo/results/20240604/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:7be5eb1f9434a7c8dcf82d1a530c1d4dc4bddfd6e9c1bec3c3bb215e50730a1d
|
3 |
+
size 68116
|
arena_elo/results/20240604/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:b481ad17c28dd03dc7acd1d8236ba71b175cbde4b56d06dd926f35199cfb3831
|
3 |
+
size 59905
|
arena_elo/results/20240605/clean_battle_image_editing.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
arena_elo/results/20240605/clean_battle_t2i_generation.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
arena_elo/results/20240605/clean_battle_video_generation.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
arena_elo/results/20240605/elo_results_image_editing.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d399036e9c8820f0de8d75a502d79664fb39208b4f1313fbd7904444776891a
|
3 |
+
size 62454
|
arena_elo/results/20240605/elo_results_t2i_generation.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:087fe327dbd4ab65eb4bbea49a98654b54e71fa0ad653f54190cea7bcc917ed6
|
3 |
+
size 68115
|
arena_elo/results/20240605/elo_results_video_generation.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dc59a521a30af39418ca44a2e8abe210a24c091a817e319ac9a19865819330fe
|
3 |
+
size 59905
|
arena_elo/results/20240605/image_editing_leaderboard.csv
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
2 |
+
MagicBrush,MagicBrush,1111.287883287791,1115.4920223628246,CC-BY-4.0,"The Ohio State University, University of Waterloo",https://osu-nlp-group.github.io/MagicBrush
|
3 |
+
InfEdit,InfEdit,1079.0215496678925,1078.7425836837601,CC BY-NC-ND 4.0,"University of Michigan, University of California, Berkeley",https://huggingface.co/spaces/sled-umich/InfEdit
|
4 |
+
CosXLEdit,CosXLEdit,1065.6805346660533,1066.6576811167185,cosxl-nc-community,Stability AI,https://huggingface.co/spaces/multimodalart/cosxl
|
5 |
+
InstructPix2Pix,InstructPix2Pix,1032.7530333195389,1030.5892525970432,"Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros","University of California, Berkeley",https://www.timothybrooks.com/instruct-pix2pix
|
6 |
+
PNP,PNP,998.4983696664473,1003.328498120622,-,Weizmann Institute of Science,https://github.com/MichalGeyer/plug-and-play
|
7 |
+
Prompt2prompt,Prompt2prompt,987.9337296502758,989.1241997635233,Apache-2.0,"Google, Tel Aviv University",https://prompt-to-prompt.github.io
|
8 |
+
CycleDiffusion,CycleDiffusion,938.9517299322257,932.9343115136126,X11,Carnegie Mellon University,https://github.com/ChenWu98/cycle-diffusion
|
9 |
+
SDEdit,SDEdit,928.5595445205557,926.8259267403399,MIT License,Stanford University,https://sde-image-editing.github.io
|
10 |
+
Pix2PixZero,Pix2PixZero,857.3136252892202,856.3055241015554,MIT License,"Carnegie Mellon University, Adobe Research",https://pix2pixzero.github.io
|
arena_elo/results/20240605/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,1151.4765748556717,1153.6593332791817,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic
|
3 |
+
PlayGround V2,PlayGround V2,1100.3037040843228,1099.2629295943668,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
|
4 |
+
StableCascade,StableCascade,1057.3087770064067,1061.7664219410574,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade
|
5 |
+
SDXLLightning,SDXLLightning,1052.18389910394,1056.4972274621996,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning
|
6 |
+
PixArtAlpha,PixArtAlpha,1051.5563906642553,1039.507593874199,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS
|
7 |
+
PixArtSigma,PixArtSigma,1049.8702445682718,1049.1941177240374,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma
|
8 |
+
SDXL,SDXL,1000.4056267411033,998.804982828749,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
|
9 |
+
SDXLTurbo,SDXLTurbo,934.7707608687357,932.5634380637507,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo
|
10 |
+
LCM(v1.5/XL),LCM(v1.5/XL),932.2617211496097,925.5957004497745,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api
|
11 |
+
OpenJourney,OpenJourney,853.0015060982882,847.4884318387889,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney
|
12 |
+
LCM,LCM,816.8607948593981,829.9259097682236,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7
|
arena_elo/results/20240605/video_generation_leaderboard.csv
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link
|
2 |
+
T2VTurbo,T2VTurbo,1114.0976950076051,1111.996839823075,cc-by-nc-4.0,"University of California, Santa Barbara",https://huggingface.co/jiachenli-ucsb/T2V-Turbo-VC2
|
3 |
+
StableVideoDiffusion,StableVideoDiffusion,1111.5916401252923,1115.2642690156,stable-video-diffusion-nc-community,Stability AI,https://fal.ai/models/fal-ai/fast-svd/text-to-video/api
|
4 |
+
VideoCrafter2,VideoCrafter2,1077.0075945696226,1077.7266263652966,Apache 2.0,Tencent AI Lab,https://ailab-cvc.github.io/videocrafter2/
|
5 |
+
AnimateDiff,AnimateDiff,1073.1580940041636,1071.1675217333839,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v
|
6 |
+
LaVie,LaVie,995.5394165448754,995.6499275888945,Apache 2.0,Shanghai AI Lab,https://github.com/Vchitect/LaVie
|
7 |
+
OpenSora,OpenSora,914.4387176103126,914.0080243221488,Apache 2.0,HPC-AI Tech,https://github.com/hpcaitech/Open-Sora
|
8 |
+
ModelScope,ModelScope,864.3033408750659,863.9078826243627,cc-by-nc-4.0,Alibaba Group,https://arxiv.org/abs/2308.06571
|
9 |
+
AnimateDiffTurbo,AnimateDiffTurbo,849.8635012630624,850.2789085272368,creativeml-openrail-m,"The Chinese University of Hong Kong, Shanghai AI Lab, Stanford University",https://fal.ai/models/fast-animatediff-t2v-turbo
|
arena_elo/results/latest/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:41c7f35c5812940344d1b3f626339820480de7a40b029df9a1ce62f969833173
|
3 |
+
size 62454
|
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:7be5eb1f9434a7c8dcf82d1a530c1d4dc4bddfd6e9c1bec3c3bb215e50730a1d
|
3 |
+
size 68116
|
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:b481ad17c28dd03dc7acd1d8236ba71b175cbde4b56d06dd926f35199cfb3831
|
3 |
+
size 59905
|
serve/gradio_web.py
CHANGED
@@ -16,7 +16,7 @@ from .vote_utils import (
|
|
16 |
generate_igm_annoy_museum,
|
17 |
share_js
|
18 |
)
|
19 |
-
from functools import partial
|
20 |
|
21 |
def build_side_by_side_ui_anony(models):
|
22 |
notice_markdown = """
|
@@ -28,6 +28,11 @@ def build_side_by_side_ui_anony(models):
|
|
28 |
- Vote won't be counted if model identity is revealed during conversation.
|
29 |
- Click "New Round" to start a new round.
|
30 |
|
|
|
|
|
|
|
|
|
|
|
31 |
## 🏆 Arena Elo
|
32 |
Find out who is the 🥇conditional image generation models! More models are going to be supported.
|
33 |
|
@@ -196,6 +201,11 @@ def build_side_by_side_ui_named(models):
|
|
196 |
- Click "Send" to submit the prompt.
|
197 |
- Click "Clear history" to start a new round.
|
198 |
|
|
|
|
|
|
|
|
|
|
|
199 |
## 🤖 Choose two models to compare
|
200 |
"""
|
201 |
model_list = models.model_ig_list
|
|
|
16 |
generate_igm_annoy_museum,
|
17 |
share_js
|
18 |
)
|
19 |
+
from functools import partial
|
20 |
|
21 |
def build_side_by_side_ui_anony(models):
|
22 |
notice_markdown = """
|
|
|
28 |
- Vote won't be counted if model identity is revealed during conversation.
|
29 |
- Click "New Round" to start a new round.
|
30 |
|
31 |
+
## ⚠️ Data Collection Consent
|
32 |
+
- Your input and votes will be collected for research purposes only.
|
33 |
+
- By using this service, you agree to the collection of your input and votes for research purposes.
|
34 |
+
- Your data will be anonymized and will not be used for commercial purposes.
|
35 |
+
|
36 |
## 🏆 Arena Elo
|
37 |
Find out who is the 🥇conditional image generation models! More models are going to be supported.
|
38 |
|
|
|
201 |
- Click "Send" to submit the prompt.
|
202 |
- Click "Clear history" to start a new round.
|
203 |
|
204 |
+
## ⚠️ Data Collection Consent
|
205 |
+
- Your input and votes will be collected for research purposes only.
|
206 |
+
- By using this service, you agree to the collection of your input and votes for research purposes.
|
207 |
+
- Your data will be anonymized and will not be used for commercial purposes.
|
208 |
+
|
209 |
## 🤖 Choose two models to compare
|
210 |
"""
|
211 |
model_list = models.model_ig_list
|
serve/gradio_web_image_editing.py
CHANGED
@@ -32,6 +32,11 @@ def build_side_by_side_ui_anony_ie(models):
|
|
32 |
- Vote won't be counted if model identity is revealed during generation.
|
33 |
- The model coulmodel_selector_left.changed output a totally black image or noise. It's not a bug but the failure case of the model.
|
34 |
|
|
|
|
|
|
|
|
|
|
|
35 |
## 🏆 Arena Elo
|
36 |
Find out who is the 🥇conditional image edition models!
|
37 |
|
@@ -234,6 +239,11 @@ def build_side_by_side_ui_named_ie(models):
|
|
234 |
- Click "Clear history" to start a new round.
|
235 |
- The model could output a totally black image or noise. It's not a bug but the failure case of the model.
|
236 |
|
|
|
|
|
|
|
|
|
|
|
237 |
## 🤖 Choose two models to compare
|
238 |
"""
|
239 |
|
|
|
32 |
- Vote won't be counted if model identity is revealed during generation.
|
33 |
- The model coulmodel_selector_left.changed output a totally black image or noise. It's not a bug but the failure case of the model.
|
34 |
|
35 |
+
## ⚠️ Data Collection Consent
|
36 |
+
- Your input and votes will be collected for research purposes only.
|
37 |
+
- By using this service, you agree to the collection of your input and votes for research purposes.
|
38 |
+
- Your data will be anonymized and will not be used for commercial purposes.
|
39 |
+
|
40 |
## 🏆 Arena Elo
|
41 |
Find out who is the 🥇conditional image edition models!
|
42 |
|
|
|
239 |
- Click "Clear history" to start a new round.
|
240 |
- The model could output a totally black image or noise. It's not a bug but the failure case of the model.
|
241 |
|
242 |
+
## ⚠️ Data Collection Consent
|
243 |
+
- Your input and votes will be collected for research purposes only.
|
244 |
+
- By using this service, you agree to the collection of your input and votes for research purposes.
|
245 |
+
- Your data will be anonymized and will not be used for commercial purposes.
|
246 |
+
|
247 |
## 🤖 Choose two models to compare
|
248 |
"""
|
249 |
|
serve/gradio_web_video_generation.py
CHANGED
@@ -29,6 +29,11 @@ def build_side_by_side_ui_anony_vg(models):
|
|
29 |
- Vote won't be counted if model identity is revealed during conversation.
|
30 |
- Click "New Round" to start a new round.
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
## 🏆 Arena Elo
|
33 |
Find out who is the 🥇conditional video generation models! More models are going to be supported.
|
34 |
|
@@ -200,6 +205,11 @@ def build_side_by_side_ui_named_vg(models):
|
|
200 |
- Click "Send" to submit the prompt.
|
201 |
- Click "Clear history" to start a new round.
|
202 |
|
|
|
|
|
|
|
|
|
|
|
203 |
## 🤖 Choose two models to compare
|
204 |
"""
|
205 |
model_list = models.model_vg_list
|
|
|
29 |
- Vote won't be counted if model identity is revealed during conversation.
|
30 |
- Click "New Round" to start a new round.
|
31 |
|
32 |
+
## ⚠️ Data Collection Consent
|
33 |
+
- Your input and votes will be collected for research purposes only.
|
34 |
+
- By using this service, you agree to the collection of your input and votes for research purposes.
|
35 |
+
- Your data will be anonymized and will not be used for commercial purposes.
|
36 |
+
|
37 |
## 🏆 Arena Elo
|
38 |
Find out who is the 🥇conditional video generation models! More models are going to be supported.
|
39 |
|
|
|
205 |
- Click "Send" to submit the prompt.
|
206 |
- Click "Clear history" to start a new round.
|
207 |
|
208 |
+
## ⚠️ Data Collection Consent
|
209 |
+
- Your input and votes will be collected for research purposes only.
|
210 |
+
- By using this service, you agree to the collection of your input and votes for research purposes.
|
211 |
+
- Your data will be anonymized and will not be used for commercial purposes.
|
212 |
+
|
213 |
## 🤖 Choose two models to compare
|
214 |
"""
|
215 |
model_list = models.model_vg_list
|