diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..c29583c6b01185dad97f39d3e18437ba63dfaa4d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +examples/duck.jpg filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..2c8f13cffd40e28b808b974e456d3d52af4b4a99 --- /dev/null +++ b/.gitignore @@ -0,0 +1,170 @@ +checkpoints/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class +src/ +# C extensions +*.so +temp + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ +/tmp +/logs +/*.json +/*.jpg +/*.ipynb + +GenAI-Arena-hf-logs/vote_log/* \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/GenAI-Arena.iml b/.idea/GenAI-Arena.iml new file mode 100644 index 0000000000000000000000000000000000000000..60c1c77e4977a632de9ba2e9b2463c4465fea56e --- /dev/null +++ b/.idea/GenAI-Arena.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000000000000000000000000000000000000..105ce2da2d6447d11dfe32bfb846c3d5b199fc99 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..2b2a0663cae3524b1775e9eec58231359ad104ba --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..35eb1ddfbbc029bcab630581847471d7f238ec53 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a1c5ea04c828c08b35e54b1c9f39e12b152f4692 --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ +--- +title: K-Sort Arena +emoji: 📈 +colorFrom: purple +colorTo: pink +sdk: gradio +sdk_version: 4.21.0 +app_file: app.py +pinned: false +license: mit +tags: +- arena +- leaderboard +short_description: Efficient Image/Video K-Sort Arena +--- + +## Installation + +- for cuda 11.8 +```bash +conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia +pip3 install -U xformers --index-url https://download.pytorch.org/whl/cu118 +pip install -r requirements.txt +``` +- for cuda 12.1 +```bash +conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia +pip install -r requirements.txt +``` + +## Start Hugging Face UI +```bash +python app.py +``` + +## Start Log server +```bash +uvicorn serve.log_server:app --reload --port 22005 --host 0.0.0.0 +``` + +## Update leaderboard +```bash +cd arena_elo && bash update_leaderboard.sh +``` \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..93a59fbe87181d1748d59cec2e82aa2a836f60eb --- /dev/null +++ b/app.py @@ -0,0 +1,59 @@ +import gradio as gr +import os +from serve.gradio_web import * +from serve.leaderboard import build_leaderboard_tab +from model.model_manager import ModelManager +from pathlib import Path +from serve.constants import SERVER_PORT, ROOT_PATH, ELO_RESULTS_DIR + +def build_combine_demo(models, elo_results_file, leaderboard_table_file): + + with gr.Blocks( + title="Play with Open Vision Models", + theme=gr.themes.Default(), + css=block_css, + ) as demo: + with gr.Tabs() as tabs_combine: + with gr.Tab("Image Generation", id=0): + with gr.Tabs() as tabs_ig: + with gr.Tab("Generation Leaderboard", id=0): + build_leaderboard_tab(elo_results_file['t2i_generation'], leaderboard_table_file['t2i_generation']) + + with gr.Tab("Generation Arena (battle)", id=1): + build_side_by_side_ui_anony(models) + + return demo + + +def load_elo_results(elo_results_dir): + from collections import defaultdict + elo_results_file = defaultdict(lambda: None) + leaderboard_table_file = defaultdict(lambda: None) + if elo_results_dir is not None: + elo_results_dir = Path(elo_results_dir) + elo_results_file = {} + leaderboard_table_file = {} + for file in elo_results_dir.glob('elo_results_*.pkl'): + if 't2i_generation' in file.name: + elo_results_file['t2i_generation'] = file + # else: + # raise ValueError(f"Unknown file name: {file.name}") + for file in elo_results_dir.glob('*_leaderboard.csv'): + if 't2i_generation' in file.name: + leaderboard_table_file['t2i_generation'] = file + # else: + # raise ValueError(f"Unknown file name: {file.name}") + + return elo_results_file, leaderboard_table_file + +if __name__ == "__main__": + server_port = int(SERVER_PORT) + root_path = ROOT_PATH + elo_results_dir = ELO_RESULTS_DIR + models = ModelManager() + + elo_results_file, leaderboard_table_file = load_elo_results(elo_results_dir) + demo = build_combine_demo(models, elo_results_file, leaderboard_table_file) + demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, share=True) + + # demo.launch(server_name="0.0.0.0", server_port=7860, root_path=ROOT_PATH) \ No newline at end of file diff --git a/arena_elo/LICENSE b/arena_elo/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..b66e214125a484c217def34e6cd30914d086336c --- /dev/null +++ b/arena_elo/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 WildVision-Bench + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/arena_elo/README.md b/arena_elo/README.md new file mode 100644 index 0000000000000000000000000000000000000000..9056ec3417001832dfb118bd13a47a5783c24a59 --- /dev/null +++ b/arena_elo/README.md @@ -0,0 +1,46 @@ +## Computing the Elo Ratings + + +```bash +apt-get -y install pkg-config +pip install -r requirements.txt +``` + + +### to update the leaderboard + +```bash +export LOGDIR="/path/to/your/logdir" +bash update_elo_rating.sh +``` + +### to inspect the leaderboard status +```bash +python -m elo_rating.inspect_elo_rating_pkl +``` + +### to inspect the collected data status and cost +```bash +export LOGDIR="/path/to/your/logdir" +python -m elo_rating.inspect_cost +``` + +### to upload the battle data to hugging face🤗 +```bash +export HUGGINGFACE_TOKEN="your_huggingface_token" +bash get_latest_data.sh +python -m elo_rating.upload_battle_data --repo_id "WildVision/wildvision-bench" --log_dir "./vision-arena-logs/" +``` + +### to upload the chat data to hugging face🤗 +```bash +export HUGGINGFACE_TOKEN="your_huggingface_token" +bash get_latest_data.sh +python -m elo_rating.upload_chat_data --repo_id "WildVision/wildvision-bench" --log_dir "./vision-arena-logs/" +``` + + +### to get the collected data +```bash +python -m + diff --git a/arena_elo/edition_model_info.json b/arena_elo/edition_model_info.json new file mode 100644 index 0000000000000000000000000000000000000000..bef917ac558b9c9966546ee4ed966b504af0e036 --- /dev/null +++ b/arena_elo/edition_model_info.json @@ -0,0 +1,47 @@ +{ + "CycleDiffusion": { + "Link": "https://github.com/ChenWu98/cycle-diffusion", + "License": "X11", + "Organization": "Carnegie Mellon University" + }, + "PNP": { + "Link": "https://github.com/MichalGeyer/plug-and-play", + "License": "-", + "Organization": "Weizmann Institute of Science" + }, + "InstructPix2Pix": { + "Link": "https://www.timothybrooks.com/instruct-pix2pix", + "License": "Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros", + "Organization": "University of California, Berkeley" + }, + "Pix2PixZero": { + "Link": "https://pix2pixzero.github.io", + "License": "MIT License", + "Organization": "Carnegie Mellon University, Adobe Research" + }, + "MagicBrush": { + "Link": "https://osu-nlp-group.github.io/MagicBrush", + "License": "CC-BY-4.0", + "Organization": "The Ohio State University, University of Waterloo" + }, + "Prompt2prompt": { + "Link": "https://prompt-to-prompt.github.io", + "License": "Apache-2.0", + "Organization": "Google, Tel Aviv University" + }, + "SDEdit": { + "Link": "https://sde-image-editing.github.io", + "License": "MIT License", + "Organization": "Stanford University" + }, + "CosXLEdit": { + "Link": "https://huggingface.co/spaces/multimodalart/cosxl", + "License": "cosxl-nc-community", + "Organization": "Stability AI" + }, + "InfEdit": { + "Link": "https://huggingface.co/spaces/sled-umich/InfEdit", + "License": "Apache-2.0", + "Organization": "University of Michigan, University of California, Berkeley" + } +} \ No newline at end of file diff --git a/arena_elo/elo_rating/__init__.py b/arena_elo/elo_rating/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/arena_elo/elo_rating/basic_stats.py b/arena_elo/elo_rating/basic_stats.py new file mode 100644 index 0000000000000000000000000000000000000000..41527492b747a4d20dbf594f4e418286ed1876d5 --- /dev/null +++ b/arena_elo/elo_rating/basic_stats.py @@ -0,0 +1,227 @@ +import argparse +import code +import datetime +import json +import os +from pytz import timezone +import time + +import pandas as pd # pandas>=2.0.3 +import plotly.express as px +import plotly.graph_objects as go +from tqdm import tqdm + +NUM_SERVERS = 1 +LOG_ROOT_DIR = os.getenv("LOGDIR", None) +if LOG_ROOT_DIR is None: + raise ValueError("LOGDIR environment variable not set, please set it by `export LOGDIR=...`") + +def get_log_files(max_num_files=None): + log_root = os.path.expanduser(LOG_ROOT_DIR) + filenames = [] + if NUM_SERVERS == 1: + for filename in os.listdir(log_root): + if filename.endswith("-conv.json"): + filepath = f"{log_root}/{filename}" + name_tstamp_tuple = (filepath, os.path.getmtime(filepath)) + filenames.append(name_tstamp_tuple) + else: + for i in range(NUM_SERVERS): + for filename in os.listdir(f"{log_root}/server{i}"): + if filename.endswith("-conv.json"): + filepath = f"{log_root}/server{i}/{filename}" + name_tstamp_tuple = (filepath, os.path.getmtime(filepath)) + filenames.append(name_tstamp_tuple) + # sort by tstamp + filenames = sorted(filenames, key=lambda x: x[1]) + filenames = [x[0] for x in filenames] + + max_num_files = max_num_files or len(filenames) + filenames = filenames[-max_num_files:] + return filenames + + +def load_log_files(filename): + data = [] + for retry in range(5): + try: + lines = open(filename).readlines() + break + except FileNotFoundError: + time.sleep(2) + + for l in lines: + row = json.loads(l) + data.append( + dict( + type=row["type"], + tstamp=row["tstamp"], + model=row.get("model", ""), + models=row.get("models", ["", ""]), + ) + ) + return data + + +def load_log_files_parallel(log_files, num_threads=16): + data_all = [] + from multiprocessing import Pool + + with Pool(num_threads) as p: + ret_all = list(tqdm(p.imap(load_log_files, log_files), total=len(log_files))) + for ret in ret_all: + data_all.extend(ret) + return data_all + + +def get_anony_vote_df(df): + anony_vote_df = df[ + df["type"].isin(["leftvote", "rightvote", "tievote", "bothbad_vote"]) + ] + anony_vote_df = anony_vote_df[anony_vote_df["models"].apply(lambda x: x[0] == "")] + return anony_vote_df + + +def merge_counts(series, on, names): + ret = pd.merge(series[0], series[1], on=on) + for i in range(2, len(series)): + ret = pd.merge(ret, series[i], on=on) + ret = ret.reset_index() + old_names = list(ret.columns)[-len(series) :] + rename = {old_name: new_name for old_name, new_name in zip(old_names, names)} + ret = ret.rename(columns=rename) + return ret + + +def report_basic_stats(log_files): + df_all = load_log_files_parallel(log_files) + df_all = pd.DataFrame(df_all) + now_t = df_all["tstamp"].max() + df_1_hour = df_all[df_all["tstamp"] > (now_t - 3600)] + df_1_day = df_all[df_all["tstamp"] > (now_t - 3600 * 24)] + anony_vote_df_all = get_anony_vote_df(df_all) + + # Chat trends + chat_dates = [ + datetime.datetime.fromtimestamp(x, tz=timezone("US/Pacific")).strftime( + "%Y-%m-%d" + ) + for x in df_all[df_all["type"] == "chat"]["tstamp"] + ] + chat_dates_counts = pd.value_counts(chat_dates) + vote_dates = [ + datetime.datetime.fromtimestamp(x, tz=timezone("US/Pacific")).strftime( + "%Y-%m-%d" + ) + for x in anony_vote_df_all["tstamp"] + ] + vote_dates_counts = pd.value_counts(vote_dates) + chat_dates_bar = go.Figure( + data=[ + go.Bar( + name="Anony. Vote", + x=vote_dates_counts.index, + y=vote_dates_counts, + text=[f"{val:.0f}" for val in vote_dates_counts], + textposition="auto", + ), + go.Bar( + name="Chat", + x=chat_dates_counts.index, + y=chat_dates_counts, + text=[f"{val:.0f}" for val in chat_dates_counts], + textposition="auto", + ), + ] + ) + chat_dates_bar.update_layout( + barmode="stack", + xaxis_title="Dates", + yaxis_title="Count", + height=300, + width=1200, + ) + + # Model call counts + model_hist_all = df_all[df_all["type"] == "chat"]["model"].value_counts() + model_hist_1_day = df_1_day[df_1_day["type"] == "chat"]["model"].value_counts() + model_hist_1_hour = df_1_hour[df_1_hour["type"] == "chat"]["model"].value_counts() + model_hist = merge_counts( + [model_hist_all, model_hist_1_day, model_hist_1_hour], + on="model", + names=["All", "Last Day", "Last Hour"], + ) + model_hist_md = model_hist.to_markdown(index=False, tablefmt="github") + + # Action counts + action_hist_all = df_all["type"].value_counts() + action_hist_1_day = df_1_day["type"].value_counts() + action_hist_1_hour = df_1_hour["type"].value_counts() + action_hist = merge_counts( + [action_hist_all, action_hist_1_day, action_hist_1_hour], + on="type", + names=["All", "Last Day", "Last Hour"], + ) + action_hist_md = action_hist.to_markdown(index=False, tablefmt="github") + + # Anony vote counts + anony_vote_hist_all = anony_vote_df_all["type"].value_counts() + anony_vote_df_1_day = get_anony_vote_df(df_1_day) + anony_vote_hist_1_day = anony_vote_df_1_day["type"].value_counts() + # anony_vote_df_1_hour = get_anony_vote_df(df_1_hour) + # anony_vote_hist_1_hour = anony_vote_df_1_hour["type"].value_counts() + anony_vote_hist = merge_counts( + [anony_vote_hist_all, anony_vote_hist_1_day], + on="type", + names=["All", "Last Day"], + ) + anony_vote_hist_md = anony_vote_hist.to_markdown(index=False, tablefmt="github") + + # Last 24 hours + chat_1_day = df_1_day[df_1_day["type"] == "chat"] + num_chats_last_24_hours = [] + base = df_1_day["tstamp"].min() + for i in range(24, 0, -1): + left = base + (i - 1) * 3600 + right = base + i * 3600 + num = ((chat_1_day["tstamp"] >= left) & (chat_1_day["tstamp"] < right)).sum() + num_chats_last_24_hours.append(num) + times = [ + datetime.datetime.fromtimestamp( + base + i * 3600, tz=timezone("US/Pacific") + ).strftime("%Y-%m-%d %H:%M:%S %Z") + for i in range(24, 0, -1) + ] + last_24_hours_df = pd.DataFrame({"time": times, "value": num_chats_last_24_hours}) + last_24_hours_md = last_24_hours_df.to_markdown(index=False, tablefmt="github") + + # Last update datetime + last_updated_tstamp = now_t + last_updated_datetime = datetime.datetime.fromtimestamp( + last_updated_tstamp, tz=timezone("US/Pacific") + ).strftime("%Y-%m-%d %H:%M:%S %Z") + + # code.interact(local=locals()) + + return { + "chat_dates_bar": chat_dates_bar, + "model_hist_md": model_hist_md, + "action_hist_md": action_hist_md, + "anony_vote_hist_md": anony_vote_hist_md, + "num_chats_last_24_hours": last_24_hours_md, + "last_updated_datetime": last_updated_datetime, + } + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--max-num-files", type=int) + args = parser.parse_args() + + log_files = get_log_files(args.max_num_files) + basic_stats = report_basic_stats(log_files) + + print(basic_stats["action_hist_md"] + "\n") + print(basic_stats["model_hist_md"] + "\n") + print(basic_stats["anony_vote_hist_md"] + "\n") + print(basic_stats["num_chats_last_24_hours"] + "\n") diff --git a/arena_elo/elo_rating/clean_battle_data.py b/arena_elo/elo_rating/clean_battle_data.py new file mode 100644 index 0000000000000000000000000000000000000000..b806eb159a3222df49bb0bc2d8475e04a679c8dd --- /dev/null +++ b/arena_elo/elo_rating/clean_battle_data.py @@ -0,0 +1,432 @@ +""" +Clean chatbot arena battle log. + +Usage: +python3 clean_battle_data.py --mode conv_release +""" +import argparse +import datetime +import json +import os +import sys +from pytz import timezone +import time +import PIL +from PIL import ImageFile +ImageFile.LOAD_TRUNCATED_IMAGES = True + +from tqdm import tqdm + +from .basic_stats import get_log_files, NUM_SERVERS, LOG_ROOT_DIR +from .utils import detect_language, get_time_stamp_from_date + +VOTES = ["tievote", "leftvote", "rightvote", "bothbad_vote"] +IDENTITY_WORDS = [ + "vicuna", + "lmsys", + "koala", + "uc berkeley", + "open assistant", + "laion", + "chatglm", + "chatgpt", + "gpt-4", + "openai", + "anthropic", + "claude", + "bard", + "palm", + "lamda", + "google", + "llama", + "qianwan", + "alibaba", + "mistral", + "zhipu", + "KEG lab", + "01.AI", + "AI2", + "Tülu", + "Tulu", + "NETWORK ERROR DUE TO HIGH TRAFFIC. PLEASE REGENERATE OR REFRESH THIS PAGE.", + "$MODERATION$ YOUR INPUT VIOLATES OUR CONTENT MODERATION GUIDELINES.", + "API REQUEST ERROR. Please increase the number of max tokens.", + "**API REQUEST ERROR** Reason: The response was blocked.", + "**API REQUEST ERROR**", +] + +for i in range(len(IDENTITY_WORDS)): + IDENTITY_WORDS[i] = IDENTITY_WORDS[i].lower() + + +def remove_html(raw): + if raw.startswith("

"): + return raw[raw.find(": ") + 2 : -len("

\n")] + if raw.startswith("### Model A: ") or raw.startswith("### Model B: "): + return raw[13:] + return raw + + +def to_openai_format(messages): + roles = ["user", "assistant"] + ret = [] + for i, x in enumerate(messages): + ret.append({"role": roles[i % 2], "content": x[1]}) + return ret + + +def replace_model_name(old_name, tstamp): + replace_dict = { + "bard": "palm-2", + "claude-v1": "claude-1", + "claude-instant-v1": "claude-instant-1", + "oasst-sft-1-pythia-12b": "oasst-pythia-12b", + "claude-2": "claude-2.0", + "PlayGroundV2": "PlayGround V2", + "PlayGroundV2.5": "PlayGround V2.5", + } + if old_name in ["gpt-4", "gpt-3.5-turbo"]: + if tstamp > 1687849200: + return old_name + "-0613" + else: + return old_name + "-0314" + if old_name in replace_dict: + return replace_dict[old_name] + return old_name + + +def read_file(filename): + data = [] + for retry in range(5): + try: + # lines = open(filename).readlines() + for l in open(filename): + row = json.loads(l) + if row["type"] in VOTES: + data.append(row) + break + except FileNotFoundError: + time.sleep(2) + except json.JSONDecodeError: + print(f"Error in reading {filename}") + print(row) + exit(0) + return data + + +def read_file_parallel(log_files, num_threads=16): + data_all = [] + from multiprocessing import Pool + + with Pool(num_threads) as p: + ret_all = list(tqdm(p.imap(read_file, log_files), total=len(log_files))) + for ret in ret_all: + data_all.extend(ret) + return data_all + +def load_image(image_path): + try: + return PIL.Image.open(image_path) + except: + return None + +def clean_battle_data( + log_files, exclude_model_names, ban_ip_list=None, sanitize_ip=False, mode="simple", task_name="image_editing" +): + data = read_file_parallel(log_files, num_threads=16) + + convert_type = { + "leftvote": "model_a", + "rightvote": "model_b", + "tievote": "tie", + "bothbad_vote": "tie (bothbad)", + } + + all_models = set() + all_ips = dict() + ct_anony = 0 + ct_invalid = 0 + ct_leaked_identity = 0 + ct_banned = 0 + battles = [] + for row in tqdm(data, desc="Cleaning"): + if row["models"][0] is None or row["models"][1] is None: + continue + + # Resolve model names + models_public = [remove_html(row["models"][0]), remove_html(row["models"][1])] + if "model_name" in row["states"][0]: + models_hidden = [ + row["states"][0]["model_name"], + row["states"][1]["model_name"], + ] + if models_hidden[0] is None: + models_hidden = models_public + else: + models_hidden = models_public + + if (models_public[0] == "" and models_public[1] != "") or ( + models_public[1] == "" and models_public[0] != "" + ): + ct_invalid += 1 + continue + + if models_public[0] == "" or models_public[0] == "Model A": + anony = True + models = models_hidden + ct_anony += 1 + else: + anony = False + models = models_public + if not models_public == models_hidden: + ct_invalid += 1 + continue + + # # Detect langauge + # state = row["states"][0] + # if state["offset"] >= len(state["messages"]): + # ct_invalid += 1 + # continue + # lang_code = detect_language(state["messages"][state["offset"]][1]) + + # # Drop conversations if the model names are leaked + # leaked_identity = False + # messages = "" + # for i in range(2): + # state = row["states"][i] + # for turn_idx, (role, msg) in enumerate( + # state["messages"][state["offset"] :] + # ): + # if msg: + # messages += msg.lower() + # for word in IDENTITY_WORDS: + # if word in messages: + # leaked_identity = True + # break + + # if leaked_identity: + # ct_leaked_identity += 1 + # continue + + def preprocess_model_name(m): + if m == "Playground v2": + return 'playground_PlayGroundV2_generation' + if m == "Playground v2.5": + return 'playground_PlayGroundV2.5_generation' + return m + models = [preprocess_model_name(m) for m in models] + + # Replace bard with palm + if task_name == "image_editing": + valid = True + for _model in models: + try: + platform, model_name, task = _model.split("_") + except ValueError: + print(f"Invalid model names: {_model}") + valid = False + break + if not (platform in ["playground", "imagenhub"] and task == "edition"): + valid = False + break + if not valid: + ct_invalid += 1 + continue + for i, _model in enumerate(models): + platform, model_name, task = _model.split("_") + models[i] = model_name + + # if not all(x.startswith("imagenhub_") and x.endswith("_edition") for x in models): + # # print(f"Invalid model names: {models}") + # ct_invalid += 1 + # continue + + # models = [x[len("imagenhub_"):-len("_edition")] for x in models] + elif task_name == "t2i_generation": + valid = True + for _model in models: + try: + platform, model_name, task = _model.split("_") + except ValueError: + print(f"Invalid model names: {_model}") + valid = False + break + if not (platform.lower() in ["playground", "imagenhub", 'fal'] and (task == "generation" or task == "text2image")): + valid = False + break + if not valid: + ct_invalid += 1 + continue + for i, _model in enumerate(models): + platform, model_name, task = _model.split("_") + models[i] = model_name + # if not all("playground" in x.lower() or (x.startswith("imagenhub_") and x.endswith("_generation")) for x in models): + # print(f"Invalid model names: {models}") + # ct_invalid += 1 + # continue + # models = [x[len("imagenhub_"):-len("_generation")] for x in models] + # for i, model_name in enumerate(models): + # mode + # if model_name.startswith("imagenhub_"): + # models[i] = model_name[len("imagenhub_"):-len("_generation")] + + else: + raise ValueError(f"Invalid task_name: {task_name}") + models = [replace_model_name(m, row["tstamp"]) for m in models] + + # Exclude certain models + if exclude_model_names and any(x in exclude_model_names for x in models): + ct_invalid += 1 + continue + + # if models[0] not in model_infos or models[1] not in model_infos: + # continue + + # # Exclude votes before the starting date + # if model_infos and (model_infos[models[0]]["starting_from"] > row["tstamp"] or model_infos[models[1]]["starting_from"] > row["tstamp"]): + # print(f"Invalid vote before the valid starting date for {models[0]} and {models[1]}") + # ct_invalid += 1 + # continue + + + + if mode == "conv_release": + # assert the two images are the same + date = datetime.datetime.fromtimestamp(row["tstamp"], tz=timezone("US/Pacific")).strftime("%Y-%m-%d") # 2024-02-29 + image_path_format = f"{LOG_ROOT_DIR}/{date}-convinput_images/input_image_" + image_path_0 = image_path_format + str(row["states"][0]["conv_id"]) + ".png" + image_path_1 = image_path_format + str(row["states"][1]["conv_id"]) + ".png" + if not os.path.exists(image_path_0) or not os.path.exists(image_path_1): + print(f"Image not found for {image_path_0} or {image_path_1}") + ct_invalid += 1 + continue + + image_0 = load_image(image_path_0) + image_1 = load_image(image_path_1) + if image_0 is None or image_1 is None: + print(f"Image not found for {image_path_0} or {image_path_1}") + ct_invalid += 1 + continue + if image_0.tobytes() != image_1.tobytes(): + print(f"Image not the same for {image_path_0} and {image_path_1}") + ct_invalid += 1 + continue + + + question_id = row["states"][0]["conv_id"] + # conversation_a = to_openai_format( + # row["states"][0]["messages"][row["states"][0]["offset"] :] + # ) + # conversation_b = to_openai_format( + # row["states"][1]["messages"][row["states"][1]["offset"] :] + # ) + + ip = row["ip"] + if ip not in all_ips: + all_ips[ip] = {"ip": ip, "count": 0, "sanitized_id": len(all_ips)} + all_ips[ip]["count"] += 1 + if sanitize_ip: + user_id = f"arena_user_{all_ips[ip]['sanitized_id']}" + else: + user_id = f"{all_ips[ip]['ip']}" + + if ban_ip_list is not None and ip in ban_ip_list: + ct_banned += 1 + continue + + # Save the results + battles.append( + dict( + question_id=question_id, + model_a=models[0], + model_b=models[1], + winner=convert_type[row["type"]], + judge=f"arena_user_{user_id}", + # conversation_a=conversation_a, + # conversation_b=conversation_b, + # turn=len(conversation_a) // 2, + anony=anony, + # language=lang_code, + tstamp=row["tstamp"], + ) + ) + + all_models.update(models_hidden) + battles.sort(key=lambda x: x["tstamp"]) + last_updated_tstamp = battles[-1]["tstamp"] + + last_updated_datetime = datetime.datetime.fromtimestamp( + last_updated_tstamp, tz=timezone("US/Pacific") + ).strftime("%Y-%m-%d %H:%M:%S %Z") + + print( + f"#votes: {len(data)}, #invalid votes: {ct_invalid}, " + f"#leaked_identity: {ct_leaked_identity} " + f"#banned: {ct_banned} " + ) + print(f"#battles: {len(battles)}, #anony: {ct_anony}") + print(f"#models: {len(all_models)}, {all_models}") + print(f"last-updated: {last_updated_datetime}") + + if ban_ip_list is not None: + for ban_ip in ban_ip_list: + if ban_ip in all_ips: + del all_ips[ban_ip] + print("Top 30 IPs:") + print(sorted(all_ips.values(), key=lambda x: x["count"], reverse=True)[:30]) + return battles + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--max-num-files", type=int) + parser.add_argument( + "--mode", type=str, choices=["simple", "conv_release"], default="simple" + ) + parser.add_argument("--task_name", type=str, default="image_editing", choices=["image_editing", "t2i_generation"]) + parser.add_argument("--exclude-model-names", type=str, nargs="+") + parser.add_argument("--ban-ip-file", type=str) + parser.add_argument("--sanitize-ip", action="store_true", default=False) + args = parser.parse_args() + + log_files = get_log_files(args.max_num_files) + ban_ip_list = json.load(open(args.ban_ip_file)) if args.ban_ip_file else None + + battles = clean_battle_data( + log_files, args.exclude_model_names or [], ban_ip_list, args.sanitize_ip, args.mode, args.task_name + ) + last_updated_tstamp = battles[-1]["tstamp"] + cutoff_date = datetime.datetime.fromtimestamp( + last_updated_tstamp, tz=timezone("US/Pacific") + ).strftime("%Y%m%d") + + if args.mode == "simple": + for x in battles: + for key in [ + "conversation_a", + "conversation_b", + "question_id", + ]: + if key in x: + del x[key] + print("Samples:") + for i in range(min(4, len(battles))): + print(battles[i]) + output = f"clean_battle_{args.task_name}_{cutoff_date}.json" + elif args.mode == "conv_release": + # new_battles = [] + # for x in battles: + # if not x["anony"]: + # continue + # for key in []: + # del x[key] + # new_battles.append(x) + # battles = new_battles + output = f"clean_battle_{args.task_name}_conv_{cutoff_date}.json" + + with open(output, "w") as fout: + json.dump(battles, fout, indent=2, ensure_ascii=False) + print(f"Write cleaned data to {output}") + + with open("cut_off_date.txt", "w") as fout: + fout.write(cutoff_date) \ No newline at end of file diff --git a/arena_elo/elo_rating/elo_analysis.py b/arena_elo/elo_rating/elo_analysis.py new file mode 100644 index 0000000000000000000000000000000000000000..4c5365cc8d9c84c1b0745adf226a3c682719fedd --- /dev/null +++ b/arena_elo/elo_rating/elo_analysis.py @@ -0,0 +1,379 @@ +import argparse +from collections import defaultdict +import datetime +import json +import math +import pickle +from pytz import timezone + +import numpy as np +import pandas as pd +import plotly.express as px +from tqdm import tqdm + +from .model_registry import get_model_info +from .basic_stats import get_log_files +from .clean_battle_data import clean_battle_data + +pd.options.display.float_format = "{:.2f}".format + + +def compute_elo(battles, K=4, SCALE=400, BASE=10, INIT_RATING=1000): + rating = defaultdict(lambda: INIT_RATING) + + for rd, model_a, model_b, winner in battles[ + ["model_a", "model_b", "winner"] + ].itertuples(): + ra = rating[model_a] + rb = rating[model_b] + ea = 1 / (1 + BASE ** ((rb - ra) / SCALE)) + eb = 1 / (1 + BASE ** ((ra - rb) / SCALE)) + if winner == "model_a": + sa = 1 + elif winner == "model_b": + sa = 0 + elif winner == "tie" or winner == "tie (bothbad)": + sa = 0.5 + else: + raise Exception(f"unexpected vote {winner}") + rating[model_a] += K * (sa - ea) + rating[model_b] += K * (1 - sa - eb) + + return dict(rating) + + +def get_bootstrap_result(battles, func_compute_elo, num_round=1000): + rows = [] + for i in tqdm(range(num_round), desc="bootstrap"): + tmp_battles = battles.sample(frac=1.0, replace=True) + rows.append(func_compute_elo(tmp_battles)) + df = pd.DataFrame(rows) + return df[df.median().sort_values(ascending=False).index] + + +def compute_elo_mle_with_tie(df, SCALE=400, BASE=10, INIT_RATING=1000): + from sklearn.linear_model import LogisticRegression + + models = pd.concat([df["model_a"], df["model_b"]]).unique() + models = pd.Series(np.arange(len(models)), index=models) + + # duplicate battles + df = pd.concat([df, df], ignore_index=True) + p = len(models.index) + n = df.shape[0] + + X = np.zeros([n, p]) + X[np.arange(n), models[df["model_a"]]] = +math.log(BASE) + X[np.arange(n), models[df["model_b"]]] = -math.log(BASE) + + # one A win => two A win + Y = np.zeros(n) + Y[df["winner"] == "model_a"] = 1.0 + + # one tie => one A win + one B win + # find tie + tie (both bad) index + tie_idx = (df["winner"] == "tie") | (df["winner"] == "tie (bothbad)") + tie_idx[len(tie_idx) // 2 :] = False + Y[tie_idx] = 1.0 + + lr = LogisticRegression(fit_intercept=False) + lr.fit(X, Y) + + elo_scores = SCALE * lr.coef_[0] + INIT_RATING + # calibrate llama-13b to 800 if applicable + if "llama-13b" in models.index: + elo_scores += 800 - elo_scores[models["llama-13b"]] + return pd.Series(elo_scores, index=models.index).sort_values(ascending=False) + + +def get_median_elo_from_bootstrap(bootstrap_df): + median = dict(bootstrap_df.quantile(0.5)) + median = {k: int(v + 0.5) for k, v in median.items()} + return median + + +def compute_pairwise_win_fraction(battles, model_order, limit_show_number=None): + # Times each model wins as Model A + a_win_ptbl = pd.pivot_table( + battles[battles["winner"] == "model_a"], + index="model_a", + columns="model_b", + aggfunc="size", + fill_value=0, + ) + + # Table counting times each model wins as Model B + b_win_ptbl = pd.pivot_table( + battles[battles["winner"] == "model_b"], + index="model_a", + columns="model_b", + aggfunc="size", + fill_value=0, + ) + + # Table counting number of A-B pairs + num_battles_ptbl = pd.pivot_table( + battles, index="model_a", columns="model_b", aggfunc="size", fill_value=0 + ) + + # Computing the proportion of wins for each model as A and as B + # against all other models + row_beats_col_freq = (a_win_ptbl + b_win_ptbl.T) / ( + num_battles_ptbl + num_battles_ptbl.T + ) + + if model_order is None: + prop_wins = row_beats_col_freq.mean(axis=1).sort_values(ascending=False) + model_order = list(prop_wins.keys()) + + if limit_show_number is not None: + model_order = model_order[:limit_show_number] + + # Arrange ordering according to proprition of wins + row_beats_col = row_beats_col_freq.loc[model_order, model_order] + return row_beats_col + + +def visualize_leaderboard_table(rating): + models = list(rating.keys()) + models.sort(key=lambda k: -rating[k]) + + emoji_dict = { + 1: "🥇", + 2: "🥈", + 3: "🥉", + } + + md = "" + md += "| Rank | Model | Elo Rating | Description |\n" + md += "| --- | --- | --- | --- |\n" + for i, model in enumerate(models): + rank = i + 1 + minfo = get_model_info(model) + emoji = emoji_dict.get(rank, "") + md += f"| {rank} | {emoji} [{model}]({minfo.link}) | {rating[model]:.0f} | {minfo.description} |\n" + + return md + + +def visualize_pairwise_win_fraction(battles, model_order): + row_beats_col = compute_pairwise_win_fraction(battles, model_order) + fig = px.imshow( + row_beats_col, + color_continuous_scale="RdBu", + text_auto=".2f", + height=700, + width=700, + ) + fig.update_layout( + xaxis_title="Model B", + yaxis_title="Model A", + xaxis_side="top", + title_y=0.07, + title_x=0.5, + ) + fig.update_traces( + hovertemplate="Model A: %{y}
Model B: %{x}
Fraction of A Wins: %{z}" + ) + + return fig + + +def visualize_battle_count(battles, model_order): + ptbl = pd.pivot_table( + battles, index="model_a", columns="model_b", aggfunc="size", fill_value=0 + ) + battle_counts = ptbl + ptbl.T + fig = px.imshow( + battle_counts.loc[model_order, model_order], + text_auto=True, + height=700, + width=700, + ) + fig.update_layout( + xaxis_title="Model B", + yaxis_title="Model A", + xaxis_side="top", + title_y=0.07, + title_x=0.5, + ) + fig.update_traces( + hovertemplate="Model A: %{y}
Model B: %{x}
Count: %{z}" + ) + return fig + + +def visualize_average_win_rate(battles, limit_show_number): + row_beats_col_freq = compute_pairwise_win_fraction( + battles, None, limit_show_number=limit_show_number + ) + fig = px.bar( + row_beats_col_freq.mean(axis=1).sort_values(ascending=False), + text_auto=".2f", + height=500, + width=700, + ) + fig.update_layout( + yaxis_title="Average Win Rate", xaxis_title="Model", showlegend=False + ) + return fig + + +def visualize_bootstrap_elo_rating(df, df_final, limit_show_number): + bars = ( + pd.DataFrame( + dict( + lower=df.quantile(0.025), + rating=df_final, + upper=df.quantile(0.975), + ) + ) + .reset_index(names="model") + .sort_values("rating", ascending=False) + ) + bars = bars[:limit_show_number] + bars["error_y"] = bars["upper"] - bars["rating"] + bars["error_y_minus"] = bars["rating"] - bars["lower"] + bars["rating_rounded"] = np.round(bars["rating"], 2) + fig = px.scatter( + bars, + x="model", + y="rating", + error_y="error_y", + error_y_minus="error_y_minus", + text="rating_rounded", + height=500, + width=700, + ) + fig.update_layout(xaxis_title="Model", yaxis_title="Rating") + return fig + + +def report_elo_analysis_results(battles_json, rating_system="bt", num_bootstrap=100, anony_only=True): + battles = pd.DataFrame(battles_json) + battles = battles.sort_values(ascending=True, by=["tstamp"]) + # Only use anonymous votes + if anony_only: + battles = battles[battles["anony"]].reset_index(drop=True) + battles_no_ties = battles[~battles["winner"].str.contains("tie")] + + # Online update + elo_rating_online = compute_elo(battles) + + if rating_system == "bt": + bootstrap_df = get_bootstrap_result( + battles, compute_elo_mle_with_tie, num_round=num_bootstrap + ) + elo_rating_final = compute_elo_mle_with_tie(battles) + elif rating_system == "elo": + bootstrap_df = get_bootstrap_result( + battles, compute_elo, num_round=num_bootstrap + ) + elo_rating_median = get_median_elo_from_bootstrap(bootstrap_df) + elo_rating_final = elo_rating_median + + model_order = list(elo_rating_final.keys()) + model_order.sort(key=lambda k: -elo_rating_final[k]) + + limit_show_number = 25 # limit show number to make plots smaller + model_order = model_order[:limit_show_number] + + # leaderboard_table_df: elo rating, variance, 95% interval, number of battles + leaderboard_table_df = pd.DataFrame( + { + "rating": elo_rating_final, + "variance": bootstrap_df.var(), + "rating_q975": bootstrap_df.quantile(0.975), + "rating_q025": bootstrap_df.quantile(0.025), + "num_battles": battles["model_a"].value_counts() + + battles["model_b"].value_counts(), + } + ) + + # Plots + leaderboard_table = visualize_leaderboard_table(elo_rating_final) + win_fraction_heatmap = visualize_pairwise_win_fraction(battles_no_ties, model_order) + battle_count_heatmap = visualize_battle_count(battles_no_ties, model_order) + average_win_rate_bar = visualize_average_win_rate( + battles_no_ties, limit_show_number + ) + bootstrap_elo_rating = visualize_bootstrap_elo_rating( + bootstrap_df, elo_rating_final, limit_show_number + ) + + last_updated_tstamp = battles["tstamp"].max() + last_updated_datetime = datetime.datetime.fromtimestamp( + last_updated_tstamp, tz=timezone("US/Pacific") + ).strftime("%Y-%m-%d %H:%M:%S %Z") + + return { + "rating_system": rating_system, + "elo_rating_online": elo_rating_online, + "elo_rating_final": elo_rating_final, + "leaderboard_table": leaderboard_table, + "win_fraction_heatmap": win_fraction_heatmap, + "battle_count_heatmap": battle_count_heatmap, + "average_win_rate_bar": average_win_rate_bar, + "bootstrap_elo_rating": bootstrap_elo_rating, + "last_updated_datetime": last_updated_datetime, + "last_updated_tstamp": last_updated_tstamp, + "bootstrap_df": bootstrap_df, + "leaderboard_table_df": leaderboard_table_df, + } + + +def pretty_print_elo_rating(rating): + model_order = list(rating.keys()) + model_order.sort(key=lambda k: -rating[k]) + for i, model in enumerate(model_order): + print(f"{i+1:2d}, {model:25s}, {rating[model]:.0f}") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--clean-battle-file", type=str) + parser.add_argument("--max-num-files", type=int) + parser.add_argument("--num-bootstrap", type=int, default=100) + parser.add_argument( + "--rating-system", type=str, choices=["bt", "elo"], default="bt" + ) + parser.add_argument("--exclude-tie", action="store_true", default=False) + args = parser.parse_args() + + np.random.seed(42) + + if args.clean_battle_file: + # Read data from a cleaned battle files + battles = pd.read_json(args.clean_battle_file) + else: + # Read data from all log files + log_files = get_log_files(args.max_num_files) + battles = clean_battle_data(log_files) + + anony_results = report_elo_analysis_results( + battles, rating_system=args.rating_system, num_bootstrap=args.num_bootstrap, anony_only=True + ) + full_results = report_elo_analysis_results( + battles, rating_system=args.rating_system, num_bootstrap=args.num_bootstrap, anony_only=False + ) + + + print("# Online Elo") + pretty_print_elo_rating(anony_results["elo_rating_online"]) + print("# Median") + pretty_print_elo_rating(anony_results["elo_rating_final"]) + print(f"Annoy last update : {anony_results['last_updated_datetime']}") + print(f"Full last update : {full_results['last_updated_datetime']}") + + last_updated_tstamp = full_results["last_updated_tstamp"] + cutoff_date = datetime.datetime.fromtimestamp( + last_updated_tstamp, tz=timezone("US/Pacific") + ).strftime("%Y%m%d") + + + results = { + "anony": anony_results, + "full": full_results, + } + with open(f"elo_results_{cutoff_date}.pkl", "wb") as fout: + pickle.dump(results, fout) diff --git a/arena_elo/elo_rating/generate_leaderboard.py b/arena_elo/elo_rating/generate_leaderboard.py new file mode 100644 index 0000000000000000000000000000000000000000..a9f438d5d1664e921d48a57bede92aa071b96b91 --- /dev/null +++ b/arena_elo/elo_rating/generate_leaderboard.py @@ -0,0 +1,72 @@ +import fire +import json +import pandas as pd +import pickle + + +def main( + model_info_file: str, + elo_rating_pkl: str, + output_csv: str +): + model_info = json.load(open(model_info_file)) + + with open(elo_rating_pkl, "rb") as fin: + elo_rating_results = pickle.load(fin) + + anony_elo_rating_results = elo_rating_results["anony"] + full_elo_rating_results = elo_rating_results["full"] + anony_leaderboard_data = anony_elo_rating_results["leaderboard_table_df"] + full_leaderboard_data = full_elo_rating_results["leaderboard_table_df"] + + # Model,MT-bench (score),Arena Elo rating,MMLU,License,Link + fields = ["key", "Model", "Arena Elo rating (anony)", "Arena Elo rating (full)", "License", "Organization", "Link"] + # set Organization and license to empty for now + all_models = anony_leaderboard_data.index.tolist() + + for model in all_models: + if not model in model_info: + model_info[model] = {} + model_info[model]["License"] = "N/A" + model_info[model]["Organization"] = "N/A" + model_info[model]["Link"] = "N/A" + print(f"Model {model} not found in model_info.json") + model_info[model]["Model"] = model + model_info[model]["key"] = model + + if model in anony_leaderboard_data.index: + model_info[model]["Arena Elo rating (anony)"] = anony_leaderboard_data.loc[model, "rating"] + else: + model_info[model]["Arena Elo rating (anony)"] = 0 + + if model in full_elo_rating_results["leaderboard_table_df"].index: + model_info[model]["Arena Elo rating (full)"] = full_leaderboard_data.loc[model, "rating"] + else: + model_info[model]["Arena Elo rating (full)"] = 0 + # if model in anony_leaderboard_data.index: + # model_info[model]["Arena Elo rating"] = anony_leaderboard_data.loc[model, "rating"] + # else: + # model_info[model]["Arena Elo rating"] = 0 + + final_model_info = {} + for model in model_info: + if "Model" in model_info[model]: + final_model_info[model] = model_info[model] + model_info = final_model_info + + exclude_keys = ['starting_from'] + for key in exclude_keys: + for model in model_info: + if key in model_info[model]: + del model_info[model][key] + df = pd.DataFrame(model_info).T + df = df[fields] + # sort by anony rating + df = df.sort_values(by=["Arena Elo rating (anony)"], ascending=False) + df.to_csv(output_csv, index=False) + print("Leaderboard data saved to", output_csv) + print(df) + + +if __name__ == "__main__": + fire.Fire(main) \ No newline at end of file diff --git a/arena_elo/elo_rating/inspect_conv_rating.py b/arena_elo/elo_rating/inspect_conv_rating.py new file mode 100644 index 0000000000000000000000000000000000000000..7a69f0b0d2042112f0cc2323deee89b225663079 --- /dev/null +++ b/arena_elo/elo_rating/inspect_conv_rating.py @@ -0,0 +1,234 @@ +import argparse +import code +import datetime +import json +import os +from pytz import timezone +import time + +import pandas as pd +from tqdm import tqdm +import csv + +import base64 +from icecream import ic +from openai import OpenAI + +# Function to encode the image +def encode_image(image_path): + with open(image_path, "rb") as image_file: + return base64.b64encode(image_file.read()).decode('utf-8') + +def get_log_files(max_num_files=None): + dates = [] + for month in [2, 3]: + for day in range(1, 32): + dates.append(f"2024-{month:02d}-{day:02d}") + + num_servers = 1 + filenames = [] + for d in dates: + for i in range(num_servers): + # name = os.path.expanduser(f"~/fastchat_logs/server{i}/{d}-conv.json") + name = os.path.expanduser(f"vision-arena-logs/{d}-conv.json") + if os.path.exists(name): + filenames.append(name) + max_num_files = max_num_files or len(filenames) + filenames = filenames[-max_num_files:] + return filenames + + +def pretty_print_conversation(messages): + for role, msg in messages: + print(f"[[{role}]]: {msg}") + + +def get_gpt4v_response(client, img_bs64=None, text_prompt="", use_vision=False): + if use_vision: + response = client.chat.completions.create( + model="gpt-4-vision-preview", + messages=[ + { + "role": "user", + "content": [ + {"type": "text", "text": text_prompt}, + { + "type": "image_url", + "image_url": { + "url": f"data:image/jpeg;base64,{img_bs64}" + } + }, + ], + } + ], + max_tokens=100, + ) + else: + response = client.chat.completions.create( + model="gpt-4-vision-preview", + messages=[ + { + "role": "user", + "content": [ + {"type": "text", "text": text_prompt}, + ], + } + ], + max_tokens=100, + ) + return response.choices[0].message.content + +task_template_map = { + "image_caption": "Give me the semantic alignment score between the given image and the given caption: \"{generated_sentence}\" on a scale of 0-100. Only reply the score value.", + "vqa": "Rate the answer correctness regarding the question within the context of the given image on a scale of 0-100. Only reply the score value.", + "pair_rate_old": "[Instruction]\n\"{instruction}\"\n\n\"{generated_sentence}\"\n\n[System]\nGiven the instruction and the image, please compare the correctness of responses A and B. Reply with \"leftvote\" if you find A better, \"rightvote\" if B is better, \"bothbad_vote\" if both responses are wrong, and \"tievote\" if both responses are equally satisfactory. If you are unable to make a decision, please reply with \"NA\".", + "pair_rate_wexplanation": "[Instruction]\n\"{instruction}\"\n\n\"{generated_sentence}\"[System]\nPlease act as an impartial judge and evaluate the quality of the responses provided by two AI assistants to the user question displayed below. You should choose the assistant that follows the user’s instructions and answers the user’s question better. Your evaluation should consider factors such as the helpfulness, relevance, accuracy, depth, creativity, and level of detail of their responses. Begin your evaluation by comparing the two responses and provide a short explanation. Avoid any positional biases and ensure that the order in which the responses were presented does not influence your decision. Do not allow the length of the responses to influence your evaluation. Do not favor certain names of the assistants. Be as objective as possible. After providing your explanation, output your final verdict by strictly following this format: \"[[A]]\" if assistant A is better, \"[[B]]\" if assistant B is better, and \"[[C]]\" for a tie.", + "pair_rate": "[Instruction]\n\"{instruction}\"\n\n\"{generated_sentence}\"\n\n[System]\nPlease act as an impartial judge and evaluate the quality of the responses provided by two AI assistants to the user question displayed below. You should choose the assistant that follows the user’s instructions and answers the user’s question better. Your evaluation should consider factors such as the helpfulness, relevance, accuracy, depth, creativity, and level of detail of their responses. Begin your evaluation by comparing the two responses and provide a short explanation. Avoid any positional biases and ensure that the order in which the responses were presented does not influence your decision. Do not allow the length of the responses to influence your evaluation. Do not favor certain names of the assistants. Be as objective as possible. Reply with \"leftvote\" if you find assistant A better, \"rightvote\" if assistant B is better, \"bothbad_vote\" if both responses are wrong, and \"tievote\" if both assistants provide equally satisfactory answers. If you are unable to make a decision, please reply with \"NA\"." +} + +def inspect_convs(log_files): + ic(log_files) + data = [] + total_vote = 0 + correct_vote = 0 + + client = OpenAI() + with open('all_pairvote_log_wgpt_prtchatbot.csv', 'w', newline='') as csvfile: + # fieldnames = ['tstamp', 'type', 'model_1', 'model_2', 'template_name_1', 'template_name_2', 'system_message_1', 'system_message_2', 'role_1', 'role_2', 'instruction_1', 'instruction_2', 'message_1', 'message_2', 'offset_1', 'offset_2', 'conv_id_1', 'conv_id_2', 'model_name_1', 'model_name_2', 'ip'] + fieldnames = ['tstamp', 'type', 'models', 'states', 'ip', 'gpt_vote'] + writer = csv.DictWriter(csvfile, fieldnames=fieldnames) + + # Write the header + writer.writeheader() + + for filename in tqdm(log_files, desc="read files"): + for retry in range(5): + try: + lines = open(filename).readlines() + break + except FileNotFoundError: + time.sleep(2) + + for l in lines: + row = json.loads(l) + + if "states" not in row: + continue + if row["type"] not in ["leftvote", "rightvote", "bothbad_vote", "tievote"]: + continue + + model_names = row["states"][0]["model_name"], row["states"][1]["model_name"] + + + # Iterate through each state and write the relevant information + if not len(row["states"][0]['messages']): continue + # ic(row["states"][0]['messages'][1][1]) + + if row["states"][0]['messages'][1][1] is None or row["states"][1]['messages'][1][1] is None or "NETWORK ERROR" in row["states"][0]['messages'][1][1] or "NETWORK ERROR" in row["states"][1]['messages'][1][1]: continue + total_vote += 1 + # row = { + # 'tstamp': row['tstamp'], + # 'type': row['type'], + # 'model_1': row['models'][0], + # 'model_2': row['models'][1], + # 'template_name_1': row["states"][0]['template_name'], + # 'system_message_1': row["states"][0]['system_message'], + # 'template_name_2': row["states"][1]['template_name'], + # 'system_message_2': row["states"][1]['system_message'], + # 'role_1': row["states"][0]['roles'], + # 'role_2': row["states"][1]['roles'], + # 'instruction_1': row["states"][0]['messages'][0][1], + # 'instruction_2': row["states"][1]['messages'][0][1], + # 'message_1': row["states"][0]['messages'][1][1], + # 'message_2': row["states"][1]['messages'][1][1], + # 'offset_1': row["states"][0]['offset'], + # 'offset_2': row["states"][1]['offset'], + # 'conv_id_1': row["states"][0]['conv_id'], + # 'conv_id_2': row["states"][1]['conv_id'], + # 'model_name_1': row["states"][0]['model_name'], + # 'model_name_2': row["states"][1]['model_name'], + # 'ip': row['ip'] + # } + # writer.writerow(row) + # Convert complex objects to JSON strings + # TODO: check two image are the same + conv_id = row["states"][0]['conv_id'] + image_path = os.path.join("/local/home/yujielu/project/Arena-Elo/vision-arena-logs", os.path.basename(filename)[:-5]+"input_images", f"input_image_{conv_id}.png") + if not os.path.exists(image_path): + response = "NA" + ic(image_path) + else: + base64_image = encode_image(image_path) + left_response = row["states"][0]['messages'][1][1] + right_response = row["states"][1]['messages'][1][1] + sep = "-" * 20 + instruction = row["states"][0]['messages'][0][1] + generated_sentence = f"[The Start of Assistant A’s Answer]\n{left_response}\n[The End of Assistant A’s Answer]\n\n[The Start of Assistant B’s Answer]\n{right_response}\n[The End of Assistant B’s Answer]" + text_prompt = task_template_map["pair_rate"].format(instruction=instruction, generated_sentence=generated_sentence) + # ic(text_prompt) + try: + response = get_gpt4v_response(client, img_bs64=base64_image, text_prompt=text_prompt, use_vision=True) + except: + ic(">>> skip") + response = "NA" + + # response = get_gpt4v_response(client, img_bs64=base64_image, text_prompt=text_prompt, use_vision=True) + ic(row['type'], response) + if response.strip() not in ["leftvote", "rightvote", "bothbad_vote", "tievote"]: + response = "NA" + # ic(generated_sentence) + + # if row['type'] == "leftvote": + # row['type'] = "A" + # elif row['type'] == "rightvote": + # row['type'] = "B" + # elif row['type'] in ["bothbad_vote", "tievote"]: + # row['type'] = "C" + if row['type'] == response.strip(): + correct_vote += 1 + row['models'] = json.dumps(row['models']) + row['states'] = json.dumps(row['states'], ensure_ascii=False) + row['gpt_vote'] = response + + # Write the modified row to the CSV file + writer.writerow(row) + # if row["type"] == "leftvote": + # winner, loser = model_names[0], model_names[1] + # winner_conv, loser_conv = row["states"][0], row["states"][1] + # elif row["type"] == "rightvote": + # loser, winner = model_names[0], model_names[1] + # loser_conv, winner_conv = row["states"][0], row["states"][1] + + # if loser == "llava-v1.5-13b" and winner == "llava-v1.5-13b": + # print("=" * 20) + # print(f"Winner: {winner}") + # pretty_print_conversation(winner_conv["messages"]) + # print(f"Loser: {loser}") + # pretty_print_conversation(loser_conv["messages"]) + # print("=" * 20) + # input() + # if row['type'] == 'bothbad_vote': + # from icecream import ic + # ic(model_names) + # if row["type"] == "bothbad_vote" and "gpt-4-vision-preview" in model_names: + # print("=" * 20) + # print(f"Model A: {model_names[0]}") + # pretty_print_conversation(row["states"][0]["messages"]) + # print(f"Model B: {model_names[1]}") + # pretty_print_conversation(row["states"][1]["messages"]) + # print("=" * 20) + # input() + # if correct_vote >= 300: break + ic(total_vote, correct_vote) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--max-num-files", type=int) + args = parser.parse_args() + + log_files = get_log_files(args.max_num_files) + + + + inspect_convs(log_files) diff --git a/arena_elo/elo_rating/inspect_cost.py b/arena_elo/elo_rating/inspect_cost.py new file mode 100644 index 0000000000000000000000000000000000000000..d071ca3ac4e9d7eb8e0559bb7e8fa50b1799e6cf --- /dev/null +++ b/arena_elo/elo_rating/inspect_cost.py @@ -0,0 +1,177 @@ +import fire +import time +import json +from collections import defaultdict +from .basic_stats import get_log_files, NUM_SERVERS, LOG_ROOT_DIR +from .utils import detect_language, get_time_stamp_from_date, get_input_image_path, load_image_from_path +from tqdm import tqdm +VOTES = ["tievote", "leftvote", "rightvote", "bothbad_vote", "chat"] + + +def remove_html(raw): + if raw.startswith("

"): + return raw[raw.find(": ") + 2 : -len("

\n")] + if raw.startswith("### Model A: ") or raw.startswith("### Model B: "): + return raw[13:] + return raw + + +def read_file(filename): + data = [] + for retry in range(5): + try: + # lines = open(filename).readlines() + for l in open(filename): + row = json.loads(l) + if row["type"] in VOTES: + data.append(row) + break + except FileNotFoundError: + time.sleep(2) + return data + + +def read_file_parallel(log_files, num_threads=16): + data_all = [] + from multiprocessing import Pool + + with Pool(num_threads) as p: + ret_all = list(tqdm(p.imap(read_file, log_files), total=len(log_files))) + for ret in ret_all: + data_all.extend(ret) + return data_all + +def num_tokens(s:str): + if s is None: + return 0 + return len(s) / 4 + +def main( +): + log_files = get_log_files() + data = read_file_parallel(log_files) + + all_model_counts = defaultdict(int) + all_model_input_tokens_counts = defaultdict(list) + all_model_output_tokens_counts = defaultdict(list) + all_model_image_sizes = defaultdict(list) + chat_battle_counts = defaultdict(int) + for row in tqdm(data, desc="counting"): + if row['type'] == "chat": + chat_battle_counts["chat"] += 1 + all_model_counts[row['model']] += 1 + tstamp = row["tstamp"] + conv_id = row["state"]["conv_id"] + + image = load_image_from_path(get_input_image_path(tstamp, conv_id)) + if image is None: + image_size = None + else: + image_size = load_image_from_path(get_input_image_path(tstamp, conv_id)).size + all_model_image_sizes[row['model']].append(image_size) + try: + for message in row["state"]["messages"][row["state"]["offset"] :: 2]: + all_model_input_tokens_counts[row['model']].append(num_tokens(message[1])) + for message in row["state"]["messages"][row["state"]["offset"] + 1 :: 2]: + all_model_output_tokens_counts[row['model']].append(num_tokens(message[1])) + except Exception as e: + print(row) + raise e + + else: + chat_battle_counts[row['type']] += 1 + if row["models"][0] is None or row["models"][1] is None: + continue + + # Resolve model names + models_public = [remove_html(row["models"][0]), remove_html(row["models"][1])] + if "model_name" in row["states"][0]: + models_hidden = [ + row["states"][0]["model_name"], + row["states"][1]["model_name"], + ] + if models_hidden[0] is None: + models_hidden = models_public + else: + models_hidden = models_public + + if (models_public[0] == "" and models_public[1] != "") or ( + models_public[1] == "" and models_public[0] != "" + ): + continue + + if models_public[0] == "" or models_public[0] == "Model A": + anony = True + models = models_hidden + else: + anony = False + models = models_public + if not models_public == models_hidden: + continue + + all_model_counts[models[0]] += 1 + all_model_counts[models[1]] += 1 + tstamp = row["tstamp"] + conv_id1 = row["states"][0]["conv_id"] + conv_id2 = row["states"][1]["conv_id"] + + image1 = load_image_from_path(get_input_image_path(tstamp, conv_id1)) + image2 = load_image_from_path(get_input_image_path(tstamp, conv_id2)) + all_model_image_sizes[models[0]].append(None if image1 is None else image1.size) + all_model_image_sizes[models[1]].append(None if image2 is None else image2.size) + + for message in row["states"][0]["messages"][row["states"][0]["offset"] :: 2]: + all_model_input_tokens_counts[models[0]].append(num_tokens(message[1])) + for message in row["states"][0]["messages"][row["states"][0]["offset"] + 1 :: 2]: + all_model_output_tokens_counts[models[0]].append(num_tokens(message[1])) + for message in row["states"][1]["messages"][row["states"][1]["offset"] :: 2]: + all_model_input_tokens_counts[models[1]].append(num_tokens(message[1])) + for message in row["states"][1]["messages"][row["states"][1]["offset"] + 1 :: 2]: + all_model_output_tokens_counts[models[1]].append(num_tokens(message[1])) + + print("### Chat battle counts (requests)") + print(json.dumps(chat_battle_counts, indent=4)) + + print("### Model counts (requests)") + print(json.dumps(all_model_counts, indent=4)) + + print("### Model Avg input tokens counts (tokens)") + average_input_tokens_counts = {} + for model, counts in all_model_input_tokens_counts.items(): + average_input_tokens_counts[model] = sum(counts) / len(counts) + print(json.dumps(average_input_tokens_counts, indent=4)) + + print("### Model AVg output tokens counts (tokens)") + average_output_tokens_counts = {} + for model, counts in all_model_output_tokens_counts.items(): + average_output_tokens_counts[model] = sum(counts) / len(counts) + print(json.dumps(average_output_tokens_counts, indent=4)) + + print("### Model Avg image sizes (height, width)") + average_image_sizes = {} + for model, sizes in all_model_image_sizes.items(): + avg_height = sum([size[0] for size in sizes if size is not None]) / len(sizes) + avg_width = sum([size[1] for size in sizes if size is not None]) / len(sizes) + average_image_sizes[model] = (avg_height, avg_width) + print(json.dumps(average_image_sizes, indent=4)) + + print("### GPT-4V estimated cost (USD)") + gpt_4v_name = "gpt-4-vision-preview" + gpt_4v_cost = {} + gpt_4v_cost['input'] = sum(all_model_input_tokens_counts[gpt_4v_name]) / 1000 * 0.01 + gpt_4v_cost['output'] = sum(all_model_output_tokens_counts[gpt_4v_name]) / 1000 * 0.03 + + all_image_cost = 0 + for size in all_model_image_sizes[gpt_4v_name]: + if size is None: + continue + all_image_tokens = (size[0] // 512 + 1) * (size[1] // 512 + 1) * 170 + 85 + all_image_cost += all_image_tokens / 1000 * 0.01 + gpt_4v_cost['image'] = all_image_cost + print(json.dumps(gpt_4v_cost, indent=4)) + + + + +if __name__ == "__main__": + fire.Fire(main) \ No newline at end of file diff --git a/arena_elo/elo_rating/inspect_elo_rating_pkl.py b/arena_elo/elo_rating/inspect_elo_rating_pkl.py new file mode 100644 index 0000000000000000000000000000000000000000..b6eda95f9a330338dee8108ba7d0a1a459035f6f --- /dev/null +++ b/arena_elo/elo_rating/inspect_elo_rating_pkl.py @@ -0,0 +1,33 @@ +import pickle +import plotly.graph_objects as go + +def output_figure(data, figure_name="battle_count_heatmap", label="annoy"): + fig = data[label][figure_name] + fig.update_layout( + height=700, + width=700, + title={'text': f'{figure_name}', 'x': 0.5, 'y': 0.07}, + xaxis_title="Model B", + yaxis_title="Model A", + # coloraxis_colorscale=[[0.0, '#0d0887'], [1.0, '#f0f921']], + margin={'t': 60} + ) + fig.write_image(f"{figure_name}.png") + +with open("./results/latest/elo_results.pkl",'rb') as f: + data = pickle.load(f) + print() + df = data["anony"]["leaderboard_table_df"] + # sort by rating + print(data["anony"].keys()) + + for figure_name in [ 'win_fraction_heatmap', 'battle_count_heatmap',]: + output_figure(data, figure_name, "anony") + + df = df.sort_values(by=["rating"], ascending=False) + print(df) + df = data["full"]["leaderboard_table_df"] + # sort by rating + df = df.sort_values(by=["rating"], ascending=False) + print(df) + print('done') diff --git a/arena_elo/elo_rating/model_registry.py b/arena_elo/elo_rating/model_registry.py new file mode 100644 index 0000000000000000000000000000000000000000..7635ba884847f95ccebd0f7af688a2ca25c37695 --- /dev/null +++ b/arena_elo/elo_rating/model_registry.py @@ -0,0 +1,578 @@ +"""Additional information of the models.""" +from collections import namedtuple, OrderedDict +from typing import List + + +ModelInfo = namedtuple("ModelInfo", ["simple_name", "link", "description"]) + + +model_info = OrderedDict() + + +def register_model_info( + full_names: List[str], simple_name: str, link: str, description: str +): + info = ModelInfo(simple_name, link, description) + + for full_name in full_names: + model_info[full_name] = info + + +def get_model_info(name: str) -> ModelInfo: + if name in model_info: + return model_info[name] + else: + # To fix this, please use `register_model_info` to register your model + return ModelInfo( + name, "", "Register the description at arena.model/model_registry.py" + ) + + +register_model_info( + [ + "IEITYuan/Yuan2-2B-Janus-hf", + "IEITYuan/Yuan2-2B-hf", + "IEITYuan/Yuan2-51B-hf", + "IEITYuan/Yuan2-102B-hf", + ], + "IEIT-Yuan2", + "https://github.com/IEIT-Yuan/Yuan-2.0", + "Yuan2.0 is a new generation Fundamental Large Language Model developed by IEIT System.", +) + +register_model_info( + ["mixtral-8x7b-instruct-v0.1", "mistral-7b-instruct"], + "Mixtral of experts", + "https://mistral.ai/news/mixtral-of-experts/", + "A Mixture-of-Experts model by Mistral AI", +) + +register_model_info( + ["gemini-pro"], + "Gemini", + "https://blog.google/technology/ai/google-gemini-pro-imagen-duet-ai-update/", + "Gemini by Google", +) + +register_model_info( + ["gemini-pro-vision"], + "Gemini", + "https://blog.google/technology/ai/google-gemini-pro-imagen-duet-ai-update/", + "Gemini by Google", +) + +register_model_info( + ["solar-10.7b-instruct-v1.0"], + "SOLAR-10.7B-Instruct", + "https://huggingface.co/upstage/SOLAR-10.7B-Instruct-v1.0", + "A model trained using depth up-scaling by Upstage AI", +) + +register_model_info( + ["gpt-4-turbo"], + "GPT-4-Turbo", + "https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo", + "GPT-4-Turbo by OpenAI", +) + +register_model_info( + ["gpt-4-vision-preview"], + "gpt-4-vision-preview", + "https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo", + "GPT-4(V) by OpenAI", +) + +register_model_info( + ["gpt-3.5-turbo", "gpt-3.5-turbo-0314", "gpt-3.5-turbo-0613", "gpt-3.5-turbo-1106"], + "GPT-3.5", + "https://platform.openai.com/docs/models/gpt-3-5", + "GPT-3.5-Turbo by OpenAI", +) + +register_model_info( + ["gpt-4", "gpt-4-0314", "gpt-4-0613"], + "GPT-4", + "https://openai.com/research/gpt-4", + "GPT-4 by OpenAI", +) + +register_model_info( + ["claude-2.1", "claude-2.0"], + "Claude", + "https://www.anthropic.com/index/claude-2", + "Claude 2 by Anthropic", +) + +register_model_info( + ["claude-1"], + "Claude", + "https://www.anthropic.com/index/introducing-claude", + "Claude 1 by Anthropic", +) + +register_model_info( + ["claude-instant-1", "claude-instant-1.2"], + "Claude Instant", + "https://www.anthropic.com/index/introducing-claude", + "Claude Instant by Anthropic", +) + +register_model_info( + ["pplx-70b-online", "pplx-7b-online"], + "pplx-online-llms", + "https://blog.perplexity.ai/blog/introducing-pplx-online-llms", + "Online LLM API by Perplexity AI", +) + +register_model_info( + ["openhermes-2.5-mistral-7b"], + "OpenHermes-2.5-Mistral-7B", + "https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B", + "a mistral-based model fine-tuned on 1M GPT-4 outputs", +) + +register_model_info( + ["starling-lm-7b-alpha"], + "Starling-LM-7B-alpha", + "https://huggingface.co/berkeley-nest/Starling-LM-7B-alpha", + "an open model trained using RLAIF by Berkeley", +) + +register_model_info( + ["tulu-2-dpo-70b"], + "Tulu 2", + "https://huggingface.co/allenai/tulu-2-dpo-70b", + "an instruction and RLHF model by UW/AllenAI", +) + +register_model_info( + ["yi-34b-chat", "yi-6b-chat"], + "Yi-Chat", + "https://huggingface.co/01-ai/Yi-34B-Chat", + "A large language model by 01 AI", +) + +register_model_info( + ["llama-2-70b-chat", "llama-2-34b-chat", "llama-2-13b-chat", "llama-2-7b-chat"], + "Llama 2", + "https://ai.meta.com/llama/", + "open foundation and fine-tuned chat models by Meta", +) + +register_model_info( + [ + "vicuna-33b", + "vicuna-33b-v1.3", + "vicuna-13b", + "vicuna-13b-v1.3", + "vicuna-7b", + "vicuna-7b-v1.3", + ], + "Vicuna", + "https://lmsys.org/blog/2023-03-30-vicuna/", + "a chat assistant fine-tuned on user-shared conversations by LMSYS", +) + +register_model_info( + ["chatglm3-6b", "chatglm2-6b", "chatglm-6b"], + "ChatGLM", + "https://chatglm.cn/blog", + "an open bilingual dialogue language model by Tsinghua University", +) + +register_model_info( + ["openchat-3.5"], + "OpenChat 3.5", + "https://github.com/imoneoi/openchat", + "an open model fine-tuned on Mistral-7B using C-RLFT", +) + +register_model_info( + ["tenyxchat-7b-v1"], + "TenyxChat-7B", + "https://huggingface.co/tenyx/TenyxChat-7B-v1", + "an open model DPO trained on top of OpenChat-3.5 using Tenyx fine-tuning", +) + +register_model_info( + ["zephyr-7b-beta", "zephyr-7b-alpha"], + "Zephyr", + "https://huggingface.co/HuggingFaceH4/zephyr-7b-alpha", + "a chatbot fine-tuned from Mistral by Hugging Face", +) + +register_model_info( + ["notus-7b-v1"], + "Notus", + "https://huggingface.co/argilla/notus-7b-v1", + "a chatbot fine-tuned from Zephyr SFT by Argilla", +) + +register_model_info( + ["catppt"], + "CatPPT", + "https://huggingface.co/rishiraj/CatPPT", + "a chatbot fine-tuned from a SLERP merged model by Rishiraj Acharya", +) + +register_model_info( + ["TinyLlama"], + "TinyLlama", + "https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0", + "The TinyLlama project is an open endeavor to pretrain a 1.1B Llama model on 3 trillion tokens.", +) + +register_model_info( + ["qwen-14b-chat"], + "Qwen", + "https://huggingface.co/Qwen/Qwen-14B-Chat", + "a large language model by Alibaba Cloud", +) + +register_model_info( + ["codellama-34b-instruct", "codellama-13b-instruct", "codellama-7b-instruct"], + "Code Llama", + "https://ai.meta.com/blog/code-llama-large-language-model-coding/", + "open foundation models for code by Meta", +) + +register_model_info( + ["wizardlm-70b", "wizardlm-30b", "wizardlm-13b"], + "WizardLM", + "https://github.com/nlpxucan/WizardLM", + "an instruction-following LLM using evol-instruct by Microsoft", +) + +register_model_info( + ["wizardcoder-15b-v1.0"], + "WizardLM", + "https://github.com/nlpxucan/WizardLM/tree/main/WizardCoder", + "Empowering Code Large Language Models with Evol-Instruct", +) + +register_model_info( + ["mpt-7b-chat", "mpt-30b-chat"], + "MPT-Chat", + "https://www.mosaicml.com/blog/mpt-30b", + "a chatbot fine-tuned from MPT by MosaicML", +) + +register_model_info( + ["guanaco-33b", "guanaco-65b"], + "Guanaco", + "https://github.com/artidoro/qlora", + "a model fine-tuned with QLoRA by UW", +) + +register_model_info( + ["gpt4all-13b-snoozy"], + "GPT4All-Snoozy", + "https://github.com/nomic-ai/gpt4all", + "a finetuned LLaMA model on assistant style data by Nomic AI", +) + +register_model_info( + ["koala-13b"], + "Koala", + "https://bair.berkeley.edu/blog/2023/04/03/koala", + "a dialogue model for academic research by BAIR", +) + +register_model_info( + ["RWKV-4-Raven-14B"], + "RWKV-4-Raven", + "https://huggingface.co/BlinkDL/rwkv-4-raven", + "an RNN with transformer-level LLM performance", +) + +register_model_info( + ["alpaca-13b"], + "Alpaca", + "https://crfm.stanford.edu/2023/03/13/alpaca.html", + "a model fine-tuned from LLaMA on instruction-following demonstrations by Stanford", +) + +register_model_info( + ["oasst-pythia-12b"], + "OpenAssistant (oasst)", + "https://open-assistant.io", + "an Open Assistant for everyone by LAION", +) + +register_model_info( + ["oasst-sft-7-llama-30b"], + "OpenAssistant (oasst)", + "https://open-assistant.io", + "an Open Assistant for everyone by LAION", +) + +register_model_info( + ["palm-2"], + "PaLM 2 Chat", + "https://cloud.google.com/vertex-ai/docs/release-notes#May_10_2023", + "PaLM 2 for Chat (chat-bison@001) by Google", +) + +register_model_info( + ["llama-7b", "llama-13b"], + "LLaMA", + "https://arxiv.org/abs/2302.13971", + "open and efficient foundation language models by Meta", +) + +register_model_info( + ["open-llama-7b-v2-open-instruct", "open-llama-7b-open-instruct"], + "Open LLaMa (Open Instruct)", + "https://medium.com/vmware-data-ml-blog/starter-llm-for-the-enterprise-instruction-tuning-openllama-7b-d05fc3bbaccc", + "Open LLaMa fine-tuned on instruction-following data by VMware", +) + +register_model_info( + ["dolly-v2-12b"], + "Dolly", + "https://www.databricks.com/blog/2023/04/12/dolly-first-open-commercially-viable-instruction-tuned-llm", + "an instruction-tuned open large language model by Databricks", +) + +register_model_info( + ["stablelm-tuned-alpha-7b"], + "StableLM", + "https://github.com/stability-AI/stableLM", + "Stability AI language models", +) + +register_model_info( + ["codet5p-6b"], + "CodeT5p-6b", + "https://huggingface.co/Salesforce/codet5p-6b", + "Code completion model released by Salesforce", +) + +register_model_info( + ["fastchat-t5-3b", "fastchat-t5-3b-v1.0"], + "FastChat-T5", + "https://huggingface.co/lmsys/fastchat-t5-3b-v1.0", + "a chat assistant fine-tuned from FLAN-T5 by LMSYS", +) + +register_model_info( + ["phoenix-inst-chat-7b"], + "Phoenix-7B", + "https://huggingface.co/FreedomIntelligence/phoenix-inst-chat-7b", + "a multilingual chat assistant fine-tuned from Bloomz to democratize ChatGPT across languages by CUHK(SZ)", +) + +register_model_info( + ["realm-7b-v1"], + "ReaLM", + "https://github.com/FreedomIntelligence/ReaLM", + "A chatbot fine-tuned from LLaMA2 with data generated via iterative calls to UserGPT and ChatGPT by CUHK(SZ) and SRIBD.", +) + +register_model_info( + ["billa-7b-sft"], + "BiLLa-7B-SFT", + "https://huggingface.co/Neutralzz/BiLLa-7B-SFT", + "an instruction-tuned bilingual LLaMA with enhanced reasoning ability by an independent researcher", +) + +register_model_info( + ["h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt-v2"], + "h2oGPT-GM-7b", + "https://huggingface.co/h2oai/h2ogpt-gm-oasst1-en-2048-open-llama-7b-preview-300bt-v2", + "an instruction-tuned OpenLLaMA with enhanced conversational ability by H2O.ai", +) + +register_model_info( + ["baize-v2-7b", "baize-v2-13b"], + "Baize v2", + "https://github.com/project-baize/baize-chatbot#v2", + "A chatbot fine-tuned from LLaMA with ChatGPT self-chat data and Self-Disillation with Feedback (SDF) by UCSD and SYSU.", +) + +register_model_info( + [ + "airoboros-l2-7b-2.1", + "airoboros-l2-13b-2.1", + "airoboros-c34b-2.1", + "airoboros-l2-70b-2.1", + ], + "airoboros", + "https://huggingface.co/jondurbin/airoboros-l2-70b-2.1", + "an instruction-tuned LlaMa model tuned with 100% synthetic instruction-response pairs from GPT4", +) + +register_model_info( + [ + "spicyboros-7b-2.2", + "spicyboros-13b-2.2", + "spicyboros-70b-2.2", + ], + "spicyboros", + "https://huggingface.co/jondurbin/spicyboros-70b-2.2", + "de-aligned versions of the airoboros models", +) + +register_model_info( + ["Robin-7b-v2", "Robin-13b-v2", "Robin-33b-v2"], + "Robin-v2", + "https://huggingface.co/OptimalScale/robin-7b-v2-delta", + "A chatbot fine-tuned from LLaMA-7b, achieving competitive performance on chitchat, commonsense reasoning and instruction-following tasks, by OptimalScale, HKUST.", +) + +register_model_info( + ["manticore-13b-chat"], + "Manticore 13B Chat", + "https://huggingface.co/openaccess-ai-collective/manticore-13b-chat-pyg", + "A chatbot fine-tuned from LlaMa across several CoT and chat datasets.", +) + +register_model_info( + ["redpajama-incite-7b-chat"], + "RedPajama-INCITE-7B-Chat", + "https://huggingface.co/togethercomputer/RedPajama-INCITE-7B-Chat", + "A chatbot fine-tuned from RedPajama-INCITE-7B-Base by Together", +) + +register_model_info( + [ + "falcon-7b", + "falcon-7b-instruct", + "falcon-40b", + "falcon-40b-instruct", + "falcon-180b", + "falcon-180b-chat", + ], + "Falcon", + "https://huggingface.co/tiiuae/falcon-180B", + "TII's flagship series of large language models", +) + +register_model_info( + ["tigerbot-7b-sft"], + "Tigerbot", + "https://huggingface.co/TigerResearch/tigerbot-7b-sft", + "TigerBot is a large-scale language model (LLM) with multiple languages and tasks.", +) + +register_model_info( + ["internlm-chat-7b", "internlm-chat-7b-8k"], + "InternLM", + "https://huggingface.co/internlm/internlm-chat-7b", + "InternLM is a multi-language large-scale language model (LLM), developed by SHLAB.", +) + +register_model_info( + ["Qwen-7B-Chat"], + "Qwen", + "https://huggingface.co/Qwen/Qwen-7B-Chat", + "Qwen is a multi-language large-scale language model (LLM), developed by Damo Academy.", +) + +register_model_info( + ["Llama2-Chinese-13b-Chat", "LLama2-Chinese-13B"], + "Llama2-Chinese", + "https://huggingface.co/FlagAlpha/Llama2-Chinese-13b-Chat", + "Llama2-Chinese is a multi-language large-scale language model (LLM), developed by FlagAlpha.", +) + +register_model_info( + ["Chinese-Alpaca-2-7B", "Chinese-Alpaca-2-13B"], + "Chinese-Alpaca", + "https://huggingface.co/hfl/chinese-alpaca-2-13b", + "New extended Chinese vocabulary beyond Llama-2, open-sourcing the Chinese LLaMA-2 and Alpaca-2 LLMs.", +) + +register_model_info( + ["Vigogne-2-7B-Instruct", "Vigogne-2-13B-Instruct"], + "Vigogne-Instruct", + "https://huggingface.co/bofenghuang/vigogne-2-7b-instruct", + "Vigogne-Instruct is a French large language model (LLM) optimized for instruction-following, developed by Bofeng Huang", +) + +register_model_info( + ["Vigogne-2-7B-Chat", "Vigogne-2-13B-Chat"], + "Vigogne-Chat", + "https://huggingface.co/bofenghuang/vigogne-2-7b-chat", + "Vigogne-Chat is a French large language model (LLM) optimized for instruction-following and multi-turn dialogues, developed by Bofeng Huang", +) + +register_model_info( + ["stable-vicuna-13B-HF"], + "stable-vicuna", + "https://huggingface.co/TheBloke/stable-vicuna-13B-HF", + "StableVicuna is a Vicuna model fine-tuned using RLHF via PPO on various conversational and instructional datasets.", +) + +register_model_info( + ["deluxe-chat-v1", "deluxe-chat-v1.1", "deluxe-chat-v1.2"], + "DeluxeChat", + "", + "Deluxe Chat", +) + +register_model_info( + [ + "Xwin-LM-7B-V0.1", + "Xwin-LM-13B-V0.1", + "Xwin-LM-70B-V0.1", + "Xwin-LM-7B-V0.2", + "Xwin-LM-13B-V0.2", + ], + "Xwin-LM", + "https://github.com/Xwin-LM/Xwin-LM", + "Chat models developed by Xwin-LM team", +) + +register_model_info( + ["lemur-70b-chat"], + "Lemur-Chat", + "https://huggingface.co/OpenLemur/lemur-70b-chat-v1", + "an openly accessible language model optimized for both natural language and coding capabilities ", +) + +register_model_info( + ["Mistral-7B-OpenOrca"], + "Open-Orca", + "https://huggingface.co/Open-Orca/Mistral-7B-OpenOrca", + "A fine-tune of [Mistral 7B](https://huggingface.co/mistralai/Mistral-7B-v0.1) using [OpenOrca dataset](https://huggingface.co/datasets/Open-Orca/OpenOrca)", +) + +register_model_info( + ["dolphin-2.2.1-mistral-7b"], + "dolphin-mistral", + "https://huggingface.co/ehartford/dolphin-2.2.1-mistral-7b", + "An uncensored fine-tuned Mistral 7B", +) + +register_model_info( + [ + "AquilaChat-7B", + "AquilaChat2-7B", + "AquilaChat2-34B", + ], + "Aquila-Chat", + "https://huggingface.co/BAAI/AquilaChat2-34B", + "Chat models developed by BAAI team", +) + +register_model_info( + ["xDAN-L1-Chat-RL-v1"], + "xDAN-L1-Chat", + "https://huggingface.co/xDAN-AI/xDAN-L1-Chat-RL-v1", + "A large language chat model created by xDAN-AI.", +) + +register_model_info( + ["MetaMath-70B-V1.0", "MetaMath-7B-V1.0"], + "MetaMath", + "https://huggingface.co/meta-math", + "MetaMath is a finetune of Llama2 on [MetaMathQA](https://huggingface.co/datasets/meta-math/MetaMathQA) that specializes in mathematical reasoning.", +) + +register_model_info( + ["Yuan2-2B-hf", "Yuan2-51B-hf", "Yuan2-102B-hf"], + "IEIYuan", + "https://huggingface.co/IEITYuan", + "Yuan2 is a Basemodel developed by IEI.", +) diff --git a/arena_elo/elo_rating/upload_battle_data.py b/arena_elo/elo_rating/upload_battle_data.py new file mode 100644 index 0000000000000000000000000000000000000000..2ca5f242eea33bf5e266b26a8c40a91db1106e02 --- /dev/null +++ b/arena_elo/elo_rating/upload_battle_data.py @@ -0,0 +1,193 @@ +import fire +import json +import os +import datasets +import datetime +from pathlib import Path +from datetime import datetime +from PIL import Image + +datasets.config.DEFAULT_MAX_BATCH_SIZE = 500 +def create_hf_dataset(data_file: str, split="test"): + hf_dataset = datasets.Dataset.from_list( + data_file, + features=datasets.Features( + { + "question_id": datasets.Value("string"), + "model": datasets.Value("string"), + "conversation": [ + { + "role": datasets.Value("string"), + "content": datasets.Value("string"), + } + ], + "language": datasets.Value("string"), + "image": datasets.Image(), + "turn": datasets.Value("int32"), + } + ), + split=split, + ) + return hf_dataset + +def create_hf_battle_dataset(data_file: str, split="test"): + hf_dataset = datasets.Dataset.from_list( + data_file, + features=datasets.Features( + { + "question_id": datasets.Value("string"), + "model_a": datasets.Value("string"), + "model_b": datasets.Value("string"), + "conversation_a": [ + { + "role": datasets.Value("string"), + "content": datasets.Value("string"), + } + ], + "conversation_b": [ + { + "role": datasets.Value("string"), + "content": datasets.Value("string"), + } + ], + "language": datasets.Value("string"), + "image": datasets.Image(), + "turn": datasets.Value("int32"), + "anony": datasets.Value("bool"), + } + ), + split=split, + ) + return hf_dataset + + + + +def load_image(path:str): + try: + return Image.open(path) + except Exception as e: + print(f"Error loading image {path}: {e}") + return None + +def get_date_from_time_stamp(unix_timestamp: int): + # Create a datetime object from the Unix timestamp + dt = datetime.fromtimestamp(unix_timestamp) + + # Convert the datetime object to a string with the desired format + date_str = dt.strftime("%Y-%m-%d") + return date_str + +def load_battle_image(battle, log_dir): + image_path = Path(log_dir) / f"{get_date_from_time_stamp(battle['tstamp'])}-convinput_images" / f"input_image_{battle['question_id']}.png" + return load_image(image_path) + + +def main( + data_file: str = "./results/latest/clean_battle_conv.json", + repo_id: str = "DongfuTingle/wildvision-bench", + log_dir: str = os.getenv("LOGDIR", "./vision-arena-logs/"), + mode="battle", + token = os.environ.get("HUGGINGFACE_TOKEN", None) +): + with open(data_file, "r") as f: + data = json.load(f) + + + + has_image_stats = { + "has_image": 0, + "no_image": 0, + } + if mode == "keep_bad_only": + # anony only + data = [d for d in data if d["anony"]] + + new_data = [] + for battle in data: + image = load_battle_image(battle, log_dir) + if image is None: + has_image_stats["no_image"] += 1 + # we don't keep the data without image + continue + has_image_stats["has_image"] += 1 + + if battle["winner"] in ["model_a", "model_b"]: + if battle["winner"] == "model_a": + worse_model = "model_b" + worse_conv = "conversation_b" + if battle["winner"] == "model_b": + worse_model = "model_a" + worse_conv = "conversation_a" + + new_data.append({ + "question_id": battle["question_id"], + "model": battle[worse_model], + "conversation": battle[worse_conv], + "language": battle["language"], + "image": image, + "turn": battle["turn"], + }) + elif battle["winner"] == "tie (bothbad)": + + new_data.append({ + "question_id": battle["question_id"], + "model": battle["model_a"], + "conversation": battle["conversation_a"], + "language": battle["language"], + "image": image, + "turn": battle["turn"], + }) + + new_data.append({ + "question_id": battle["question_id"], + "model": battle["model_b"], + "conversation": battle["conversation_b"], + "language": battle["language"], + "image": image, + "turn": battle["turn"], + }) + + split = "test" + hf_dataset = create_hf_dataset(new_data, "test") + + elif mode == "battle": + new_data = [] + for battle in data: + image = load_battle_image(battle, log_dir) + if image is None: + has_image_stats["no_image"] += 1 + continue + has_image_stats["has_image"] += 1 + new_data.append({ + "question_id": battle["question_id"], + "model_a": battle["model_a"], + "model_b": battle["model_b"], + "conversation_a": battle["conversation_a"], + "conversation_b": battle["conversation_b"], + "language": battle["language"], + "image": image, + "turn": battle["turn"], + "anony": battle["anony"], + }) + split = "test" + hf_dataset = create_hf_battle_dataset(new_data, "test") + else: + raise ValueError(f"Invalid mode: {mode}") + + print(f"Stats: {has_image_stats}") + print(hf_dataset) + print(f"Uploading to part {repo_id}:{split}...") + hf_dataset.push_to_hub( + repo_id=repo_id, + config_name=mode, + split=split, + token=token, + commit_message=f"Add vision-arena {split} dataset", + ) + + print("Done!") + + +if __name__ == "__main__": + fire.Fire(main) \ No newline at end of file diff --git a/arena_elo/elo_rating/utils.py b/arena_elo/elo_rating/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..250a1d97bcc5f7ba175e4e57a4b7becafb06ad4b --- /dev/null +++ b/arena_elo/elo_rating/utils.py @@ -0,0 +1,83 @@ +from datetime import datetime +import pytz +import PIL +import os + +def detect_language(text: str) -> str: + """Detect the langauge of a string.""" + import polyglot # pip3 install polyglot pyicu pycld2 + from polyglot.detect import Detector + from polyglot.detect.base import logger as polyglot_logger + import pycld2 + + polyglot_logger.setLevel("ERROR") + + try: + lang_code = Detector(text).language.name + except (pycld2.error, polyglot.detect.base.UnknownLanguage): + lang_code = "unknown" + return lang_code + + +def get_time_stamp_from_date(date_str:str): + """ + Convert a date string to a Unix timestamp + Args: + date_str (str): The input date string in the format 'YYYY-MM-DD-HH:MM-TZ', e.g. '2024-02-10-14:00-PT' + """ + + # Convert the date string into a format that Python's datetime can understand + # and specify the correct timezone for PT, which is 'US/Pacific' + date_format = "%Y-%m-%d-%H:%M-%Z" + + # Parse the date string into a datetime object + # Note: PT is not directly recognized by pytz, so we manually map it to 'US/Pacific' + timezone_map = { + "PT": "US/Pacific", + } + + # Extract the timezone abbreviation + tz_abbr = date_str.split("-")[-1] + # Map the abbreviation to a pytz timezone + tz_info = pytz.timezone(timezone_map[tz_abbr]) + + # Remove the timezone abbreviation for parsing + date_str_parsed = date_str.rsplit("-", 1)[0] + + # Create a datetime object with the corresponding timezone + dt = datetime.strptime(date_str_parsed, "%Y-%m-%d-%H:%M").replace(tzinfo=tz_info) + + # Convert the datetime object to a Unix timestamp + unix_timestamp = dt.timestamp() + return unix_timestamp + +def get_date_from_time_stamp(unix_timestamp: int): + # Create a datetime object from the Unix timestamp + dt = datetime.fromtimestamp(unix_timestamp) + + # Convert the datetime object to a string with the desired format + date_str = dt.strftime("%Y-%m-%d %H:%M:%S %Z") + return date_str + + +def get_input_image_path(tstamp, conv_id): + # from tstamp to date e.g. 2024-02-10 + date_str = datetime.fromtimestamp(tstamp, tz=pytz.timezone("US/Pacific")).strftime("%Y-%m-%d") + LOGDIR = os.getenv("LOGDIR") + return f"{LOGDIR}/{date_str}-convinput_images/input_image_{conv_id}.png" + +def load_image_from_path(image_path): + # Load the image from the specified + # path using the Python Imaging Library (PIL) + try: + image = PIL.Image.open(image_path) + return image + except FileNotFoundError: + print(f"Image not found at path: {image_path}") + return None + except PIL.UnidentifiedImageError: + print(f"Unidentified image format at path: {image_path}") + return None + + + \ No newline at end of file diff --git a/arena_elo/evaluator/convert_to_evaluator_data.py b/arena_elo/evaluator/convert_to_evaluator_data.py new file mode 100644 index 0000000000000000000000000000000000000000..83b04b2ad962b5e63cc682c20378bd1d1ea68e8a --- /dev/null +++ b/arena_elo/evaluator/convert_to_evaluator_data.py @@ -0,0 +1,134 @@ +import argparse +import json +import os +import time +from pytz import timezone +from tqdm import tqdm +import base64 +from icecream import ic +from PIL import Image + + +# Function to encode the image +def encode_image(image_path): + with open(image_path, "rb") as image_file: + return base64.b64encode(image_file.read()).decode('utf-8') + +def get_log_files(max_num_files=None): + dates = [] + for month in [2, 3]: + for day in range(1, 32): + dates.append(f"2024-{month:02d}-{day:02d}") + + num_servers = 1 + filenames = [] + for d in dates: + for i in range(num_servers): + # name = os.path.expanduser(f"~/fastchat_logs/server{i}/{d}-conv.json") + name = os.path.expanduser(f"vision-arena-logs/{d}-conv.json") + if os.path.exists(name): + filenames.append(name) + max_num_files = max_num_files or len(filenames) + filenames = filenames[-max_num_files:] + return filenames + + +def pretty_print_conversation(messages): + for role, msg in messages: + print(f"[[{role}]]: {msg}") + +task_template_map = { + "image_caption": "Give me the semantic alignment score between the given image and the given caption: \"{generated_sentence}\" on a scale of 0-100. Only reply the score value.", + "vqa": "Rate the answer correctness regarding the question within the context of the given image on a scale of 0-100. Only reply the score value.", + "pair_rate_old": "[Instruction]\n\"{instruction}\"\n\n\"{generated_sentence}\"\n\n[System]\nGiven the instruction and the image, please compare the correctness of responses A and B. Reply with \"leftvote\" if you find A better, \"rightvote\" if B is better, \"bothbad_vote\" if both responses are wrong, and \"tievote\" if both responses are equally satisfactory. If you are unable to make a decision, please reply with \"NA\".", + "pair_rate_wexplanation": "[Instruction]\n\"{instruction}\"\n\n\"{generated_sentence}\"[System]\nPlease act as an impartial judge and evaluate the quality of the responses provided by two AI assistants to the user question displayed below. You should choose the assistant that follows the user’s instructions and answers the user’s question better. Your evaluation should consider factors such as the helpfulness, relevance, accuracy, depth, creativity, and level of detail of their responses. Begin your evaluation by comparing the two responses and provide a short explanation. Avoid any positional biases and ensure that the order in which the responses were presented does not influence your decision. Do not allow the length of the responses to influence your evaluation. Do not favor certain names of the assistants. Be as objective as possible. After providing your explanation, output your final verdict by strictly following this format: \"[[A]]\" if assistant A is better, \"[[B]]\" if assistant B is better, and \"[[C]]\" for a tie.", + "pair_rate": "[Instruction]\n\"{instruction}\"\n\n\"{generated_sentence}\"\n\n[System]\nPlease act as an impartial judge and evaluate the quality of the responses provided by two AI assistants to the user question displayed below. You should choose the assistant that follows the user’s instructions and answers the user’s question better. Your evaluation should consider factors such as the helpfulness, relevance, accuracy, depth, creativity, and level of detail of their responses. Begin your evaluation by comparing the two responses and provide a short explanation. Avoid any positional biases and ensure that the order in which the responses were presented does not influence your decision. Do not allow the length of the responses to influence your evaluation. Do not favor certain names of the assistants. Be as objective as possible. Reply with \"leftvote\" if you find assistant A better, \"rightvote\" if assistant B is better, \"bothbad_vote\" if both responses are wrong, and \"tievote\" if both assistants provide equally satisfactory answers. If you are unable to make a decision, please reply with \"NA\"." +} + +def inspect_convs(log_files): + json_data = [] + + ic(log_files) + total_vote = 0 + + for filename in tqdm(log_files, desc="read files"): + for retry in range(5): + try: + lines = open(filename).readlines() + break + except FileNotFoundError: + time.sleep(2) + + for l in lines: + row = json.loads(l) + + if "states" not in row: + continue + if row["type"] not in ["leftvote", "rightvote", "bothbad_vote", "tievote"]: + continue + + model_names = row["states"][0]["model_name"], row["states"][1]["model_name"] + + + # Iterate through each state and write the relevant information + if not len(row["states"][0]['messages']): continue + # ic(row["states"][0]['messages'][1][1]) + + if row["states"][0]['messages'][1][1] is None or row["states"][1]['messages'][1][1] is None or "NETWORK ERROR" in row["states"][0]['messages'][1][1] or "NETWORK ERROR" in row["states"][1]['messages'][1][1]: continue + total_vote += 1 + + conv_id = row["states"][0]['conv_id'] + image_path = os.path.join("/local/home/yujielu/project/Arena-Elo/vision-arena-logs", os.path.basename(filename)[:-5]+"input_images", f"input_image_{conv_id}.png") + if not os.path.exists(image_path) : + continue + try: + image = Image.open(image_path).convert("RGB") + except: + continue + + left_response = row["states"][0]['messages'][1][1] + right_response = row["states"][1]['messages'][1][1] + instruction = row["states"][0]['messages'][0][1] + generated_sentence = f"[The Start of Assistant A’s Answer]\n{left_response}\n[The End of Assistant A’s Answer]\n\n[The Start of Assistant B’s Answer]\n{right_response}\n[The End of Assistant B’s Answer]" + text_prompt = task_template_map["pair_rate"].format(instruction=instruction, generated_sentence=generated_sentence) + + user_input = text_prompt + # Create the conversation structure + conversation = [ + { + "from": "human", + "value": user_input + }, + { + "from": "gpt", + "value": row["type"] + } + ] + + # Create the JSON object for each row + json_obj = { + "id": conv_id, + "image": image_path, + "conversations": conversation + } + + # Append the JSON object to the list + json_data.append(json_obj) + + # Write the JSON data to a file + with open('output_evaluator_data.json', 'w') as json_file: + json.dump(json_data, json_file, indent=2) + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("--max-num-files", type=int) + args = parser.parse_args() + + log_files = get_log_files(args.max_num_files) + + + + inspect_convs(log_files) + + + diff --git a/arena_elo/evaluator/rating_analysis.ipynb b/arena_elo/evaluator/rating_analysis.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..e1d574c04ee5e4896929e933ff35b1c02a309d8f --- /dev/null +++ b/arena_elo/evaluator/rating_analysis.ipynb @@ -0,0 +1,321 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1338\n", + "1044\n" + ] + } + ], + "source": [ + "\n", + "import pandas as pd\n", + "import json\n", + "\n", + "# Replace 'your_file_name.csv' with the path to your CSV file\n", + "file_name = 'all_pairvote_log_wgpt.csv'\n", + "\n", + "# Load the CSV file into a DataFrame\n", + "df = pd.read_csv(file_name)\n", + "\n", + "# Define a function to parse JSON data\n", + "def parse_json(data):\n", + " try:\n", + " # Parse the JSON data\n", + " return json.loads(data)\n", + " except ValueError as e:\n", + " # Return None or an empty dictionary if the data cannot be parsed\n", + " return None\n", + "\n", + "# Apply the parse_json function to the 'models' and 'states' columns\n", + "df['models'] = df['models'].apply(parse_json)\n", + "df['states'] = df['states'].apply(parse_json)\n", + "# row[\"states\"][0]['messages'][0][1]\n", + "\n", + "# Now df contains the parsed JSON data in the 'models' and 'states' columns\n", + "# print(df.head())\n", + "print(len(df))\n", + "# filter_vote_df = df[df[\"gpt_vote\"].isin([\"leftvote\", \"rightvote\"])]#, \"tievote\", \"bothbad_vote\"\n", + "# \\#1\n", + "filter_vote_df = df[df[\"gpt_vote\"].isin([\"leftvote\", \"rightvote\", \"tievote\", \"bothbad_vote\"])]\n", + "# \\#2\n", + "# filter_vote_df = df\n", + "filter_vote_df.loc[~filter_vote_df[\"gpt_vote\"].isin([\"leftvote\", \"rightvote\"]), \"gpt_vote\"] = \"tie\"\n", + "filter_vote_df.loc[~filter_vote_df[\"type\"].isin([\"leftvote\", \"rightvote\"]), \"type\"] = \"tie\"\n", + "# \\#3\n", + "#[df[\"gpt_vote\"].isin([\"leftvote\", \"rightvote\"]) & df[\"type\"].isin([\"leftvote\", \"rightvote\"])]\n", + "filtered_df = filter_vote_df[filter_vote_df[\"states\"].apply(lambda x: len(x[0]['messages'][0][1]) > 10)]\n", + "print(len(filtered_df))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Confusion Matrix:\n", + "[[300 61 34]\n", + " [102 269 27]\n", + " [ 99 111 41]]\n", + "\n", + "Accuracy: 0.5842911877394636\n" + ] + } + ], + "source": [ + "import warnings\n", + "warnings.filterwarnings('ignore')\n", + "\n", + "from sklearn.metrics import confusion_matrix, accuracy_score\n", + "import pandas as pd\n", + "\n", + "# Assuming df is your DataFrame\n", + "\n", + "# True labels\n", + "y_true = filtered_df[\"type\"]\n", + "\n", + "# Predictions\n", + "y_pred = filtered_df[\"gpt_vote\"]\n", + "\n", + "# Compute the confusion matrix\n", + "# conf_matrix = confusion_matrix(y_true, y_pred, labels=[\"leftvote\", \"rightvote\", \"tievote\", \"bothbad_vote\"])\n", + "conf_matrix = confusion_matrix(y_true, y_pred, labels=[\"leftvote\", \"rightvote\", \"tie\"])\n", + "\n", + "# Compute the accuracy\n", + "accuracy = accuracy_score(y_true, y_pred)\n", + "\n", + "print(\"Confusion Matrix:\")\n", + "print(conf_matrix)\n", + "\n", + "print(\"\\nAccuracy:\", accuracy)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0YAAAJwCAYAAACtcHEcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAB0yUlEQVR4nO3deZyN5f/H8feZfcaYMZaxMwyGkTWJURSKKFshS/YtREQoe4oKaVFpsaRBZUlRUrLLUtYsk2VkaYSxjGEYZq7fH37O12ksc8aMM+N+PR+P83jMXPd9X+dzxrnHec913ddtM8YYAQAAAICFubm6AAAAAABwNYIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAWsWTJElWsWFE+Pj6y2Ww6c+ZMuvY/ffp02Ww2HTx4MF37zcpsNptGjhzp6jIApALBCECafPjhh7LZbHrwwQddXcodu/Zh7vfff7/h9kceeUT33XffXa7q3hQdHa3evXurVKlS8vPzk5+fn8LDw9WrVy9t377dYd+RI0fKZrPZH9f2HTp0qOLi4iTJYfutHitWrLhtbZcvX1Z4eLhsNpvGjx9vb+/Tp49sNpv27dt302NfffVV2Wy2FK/hRlasWKFmzZopX7588vLyUnBwsJ566inNnz//tsfeidjYWLVo0UK+vr6aPHmyZs6cqWzZsmXoc95NISEhstlsqlu37g23f/rpp/b3w83O9VtZt26dRo4cme5hEkDm4eHqAgBkTZGRkQoJCdHGjRu1b98+lShRwtUlIZNbtGiRWrZsKQ8PD7Vp00YVKlSQm5ub9uzZo/nz5+ujjz5SdHS0ihYt6nDcRx99JH9/f8XHx2vp0qV6/fXX9euvv2rt2rWaOXOmw75ffPGFfv755xTtZcqUuW1977//vg4dOpSivU2bNnr//fc1a9YsDR8+/IbHzp49W+XKlVP58uVv+RwjRozQ6NGjVbJkSXXv3l1FixZVbGysfvjhBz399NOKjIxU69atb1trWmzatEnnzp3Ta6+9dtPwcKeee+45Pfvss/L29s6Q/m/Hx8dHy5cv17Fjx5QvXz6HbZGRkfLx8dHFixfT1Pe6des0atQodejQQTly5Ej1cQkJCfLw4OMWkCUYAHDSgQMHjCQzf/58kydPHjNy5MhUHXf58mVz6dKlDK7OedOmTTOSzKZNm264vVatWqZs2bJ3uap7y759+0y2bNlMmTJlzD///JNi++XLl827775rDh06ZG8bMWKEkWROnDjhsG+zZs2MJLNu3boU/fTq1cuk5b+2f//91wQGBprRo0cbSebtt9922F6iRAlTunTpGx67bt06I8mMGzfuls/xzTffGEnmmWeeMYmJiSm2L1myxHz//fdO155aM2bMuOX7PKsrWrSoqVOnjgkICDCTJk1y2Hb48GHj5uZmnn766TT/DN5++20jyURHR99236SkJJOQkOD0cwBwLabSAXBaZGSkgoKC1LBhQz3zzDOKjIxMsc/BgwftU5ImTZqk0NBQeXt7a9euXZKkPXv26JlnnlHOnDnl4+OjKlWq6LvvvnPo49oUt7Vr16p///7KkyePsmXLpqZNm+rEiRMO+y5cuFANGzZUgQIF5O3trdDQUL322mtKSkpK99d/7bVNnz49xbb/Xk9wbTrYX3/9pbZt2yowMFB58uTRsGHDZIzR4cOH1bhxYwUEBChfvnyaMGGCQ3+JiYkaPny47r//fgUGBipbtmx6+OGHtXz58hvWNH78eH3yySf2n/cDDzygTZs23fL1/P7777LZbJoxY0aKbT/99JNsNpsWLVokSTp37pxefPFFhYSEyNvbW8HBwXrssce0efPmWz7HW2+9pfPnz2vatGnKnz9/iu0eHh7q06ePChcufMt+JKl27dqSrk7LSy+DBw9WWFiY2rZte8Ptbdq00Z49e274OmfNmiWbzaZWrVrd8jmGDRumnDlzaurUqfL09EyxvV69enryySft3x8/flydO3dW3rx55ePjowoVKqT4N0rtv/sjjzyi9u3bS5IeeOAB2Ww2dejQQdLVKWjXvr7eI488okceecSh7f3331fZsmXl5+enoKAgValSRbNmzbJvv9k1Rh9++KHKli0rb29vFShQQL169UoxJe3alNVdu3bp0UcflZ+fnwoWLKi33nrrZj/SFHx8fNSsWTOHmqSrI3pBQUGqV69eimO2b9+uDh06qHjx4vLx8VG+fPnUqVMnxcbG2vcZOXKkBg4cKEkqVqyYfUretddps9nUu3dvRUZG2l/nkiVL7Nuu/U5ISEhQ6dKlVbp0aSUkJNj7P3XqlPLnz6+IiIgM+Z0FIHUY2wXgtMjISDVr1kxeXl5q1aqVPvroI23atEkPPPBAin2nTZumixcvqlu3bvL29lbOnDm1c+dO1ahRQwULFtTgwYOVLVs2ff3112rSpInmzZunpk2bOvTxwgsvKCgoSCNGjNDBgwc1adIk9e7dW1999ZV9n+nTp8vf31/9+/eXv7+/fv31Vw0fPlxxcXF6++23U/W6zp49q5MnT6Zov3z5spM/oZRatmypMmXKaNy4cVq8eLHGjBmjnDlzasqUKapdu7befPNNRUZGasCAAXrggQdUs2ZNSVJcXJw+++wztWrVSl27dtW5c+f0+eefq169etq4caMqVqzo8DyzZs3SuXPn1L17d9lsNr311ltq1qyZDhw4cMMP45JUpUoVFS9eXF9//bX9w/M1X331lcMHyh49emju3Lnq3bu3wsPDFRsbqzVr1mj37t2qXLnyTV//okWLVKJEiXS5Jm3//v2SpFy5ct1xX5K0ceNGzZgxQ2vWrJHNZrvhPm3atNGoUaM0a9Ysh9eZlJSkr7/+Wg8//LCKFCly0+fYu3ev9uzZo06dOil79uy3rSkhIUGPPPKI9u3bp969e6tYsWL65ptv1KFDB505c0Z9+/Z12P92/+6vvvqqwsLC9Mknn2j06NEqVqyYQkNDU/kTuurTTz9Vnz599Mwzz6hv3766ePGitm/frg0bNtxy+t/IkSM1atQo1a1bV88//7yioqLsvzPWrl3r8L48ffq06tevr2bNmqlFixaaO3euBg0apHLlyumJJ55IVZ2tW7fW448/rv3799tf46xZs/TMM8/c8Bz4+eefdeDAAXXs2FH58uXTzp079cknn2jnzp1av369bDabmjVrpr/++kuzZ8/WO++8o9y5c0uS8uTJY+/n119/1ddff63evXsrd+7cCgkJSfFcvr6+mjFjhmrUqKFXX31VEydOlCT16tVLZ8+e1fTp0+Xu7p6q1wkgA7h6yApA1vL7778bSebnn382xhiTnJxsChUqZPr27euwX3R0tJFkAgICzPHjxx221alTx5QrV85cvHjR3pacnGwiIiJMyZIl7W3XprjVrVvXJCcn29v79etn3N3dzZkzZ+xtFy5cSFFr9+7djZ+fn8Pz3Mi157nV4/qpdNde27Rp01L0JcmMGDHC/v216WDdunWzt125csUUKlTI2Gw2h+lXp0+fNr6+vqZ9+/YO+/53+uHp06dN3rx5TadOnVLUlCtXLnPq1Cl7+8KFC42k207RGjJkiPH09HQ49tKlSyZHjhwOzxMYGGh69ep1y77+6+zZs0aSadKkSYptp0+fNidOnLA/rv93vPazi4qKMidOnDDR0dFmypQpxtvb2+TNm9ecP38+RX/OTqVLTk42VatWNa1atTLG/O/n+N+pdMYY88ADD5hChQqZpKQke9uSJUuMJDNlypRbPs+1f4d33nknVXVNmjTJSDJffvmlvS0xMdFUr17d+Pv7m7i4OId6U/PvfrMpo0WLFnV4z11Tq1YtU6tWLfv3jRs3vu2U0mvPcW262fHjx42Xl5d5/PHHHX5uH3zwgZFkpk6d6vB8kswXX3xhb7t06ZLJly+fefrpp2/5vNdeR8OGDc2VK1dMvnz5zGuvvWaMMWbXrl1Gklm5cuUNfwY3+t0xe/ZsI8msWrXK3narqXSSjJubm9m5c+cNt13/O8GYq+ebm5ubWbVqlX2K5X+n/wG4+5hKB8ApkZGRyps3rx599FFJV6eJtGzZUnPmzLnhFJCnn37a4a+qp06d0q+//qoWLVro3LlzOnnypE6ePKnY2FjVq1dPe/fu1dGjRx366Natm8Nf8h9++GElJSXp77//trf5+vrav77W78MPP6wLFy5oz549qXptkydP1s8//5zicbsL6lOjS5cu9q/d3d1VpUoVGWPUuXNne3uOHDkUFhamAwcOOOzr5eUlSUpOTtapU6d05coVValS5YbTulq2bKmgoCD79w8//LAkOfR5Iy1bttTly5cdVkZbunSpzpw5o5YtWzrUuGHDBv3zzz+pfen2FeT8/f1TbHvkkUeUJ08e+2Py5Mkp9gkLC1OePHlUrFgxde/eXSVKlNDixYvl5+eX6hpuZvr06dqxY4fefPPN2+7btm1bHTlyRKtWrbK3zZo1S15eXmrevPktj732M0jNaJEk/fDDD8qXL5/D9DxPT0/16dNH8fHxWrlypcP+af13d0aOHDl05MiR207NvN4vv/yixMREvfjii3Jz+99Hjq5duyogIECLFy922N/f399hOqOXl5eqVq3q1Otwd3dXixYtNHv2bElXf2cVLlzY/jP5r+t/d1y8eFEnT55UtWrVJOm2U0SvV6tWLYWHh6dq35EjR6ps2bJq3769evbsqVq1aqlPnz6pfi4AGYNgBCDVkpKSNGfOHD366KOKjo7Wvn37tG/fPj344IP6999/tWzZshTHFCtWzOH7ffv2yRijYcOGOXwgzpMnj0aMGCHp6rUV1/vvFKVrHwBPnz5tb9u5c6eaNm2qwMBABQQEKE+ePPYPWGfPnk3V66tatarq1q2b4nH9B860+u9rCAwMlI+Pj31KzvXt178uSZoxY4bKly8vHx8f5cqVS3ny5NHixYtv+LpS87O6kQoVKqh06dIO0xO/+uor5c6d235Nj3T1WqE///xThQsXVtWqVTVy5Mjbfmi9Fgbi4+NTbJsyZYp+/vlnffnllzc9ft68efr555+1YsUK7du3T3/++afuv//+Wz7n9eLj43Xs2DH749r1aXFxcRoyZIgGDhyYqmubnn32Wbm7u9uvX7l48aIWLFigJ5544rbvkYCAAElXQ3tq/P333ypZsqRDmJD+t7re9X8UkNL+7+6MQYMGyd/fX1WrVlXJkiXVq1cvrV279pbHXKszLCzMod3Ly0vFixdP8ToKFSqUYjpjUFCQ06+jdevW2rVrl7Zt26ZZs2bp2Wefvek0yVOnTqlv377KmzevfH197SFcSv3vDinl77pb8fLy0tSpUxUdHa1z585p2rRpN60PwN3DNUYAUu3XX39VTEyM5syZozlz5qTYHhkZqccff9yh7fq/xkpXRz0kacCAATe8EFpSiqW/bzbn3hgjSTpz5oxq1aqlgIAAjR49WqGhofLx8dHmzZs1aNAg+3Oml5t9gLnVRdM3eg23e12S9OWXX6pDhw5q0qSJBg4cqODgYLm7u2vs2LH2a22c7fNmWrZsqddff10nT55U9uzZ9d1336lVq1YOSw23aNFCDz/8sBYsWKClS5fq7bff1ptvvqn58+ff9BqQwMBA5c+fX3/++WeKbdeuObrVDUFr1qyZIkA6Y/z48Ro1apT9+6JFi+rgwYMaP368EhMT1bJlS/vzHzlyRNLVQHHw4EEVKFDAPmJ3baGJefPmafLkyfr+++917tw5tWnT5rY1lC5dWpK0Y8eONL+OW7mTf/dbvZ+v77dMmTKKiorSokWLtGTJEs2bN08ffvihhg8f7vDzvRN38jqu9+CDDyo0NFQvvviioqOjb3kNVIsWLbRu3ToNHDhQFStWlL+/v5KTk1W/fn2nfnf893fd7fz000+SrgbsvXv3OhWsAGQMghGAVIuMjFRwcPANpzvNnz9fCxYs0Mcff3zLDwjFixeXdHVaUHrdS2XFihWKjY3V/Pnz7YsWSOm7atn1rv01/r+rav33r9/pYe7cuSpevLjmz5/v8AH22uhaemrZsqVGjRqlefPmKW/evIqLi9Ozzz6bYr/8+fOrZ8+e6tmzp44fP67KlSvr9ddfv+XF8Q0bNtRnn32mjRs3qmrVqule+620a9dODz30kP37a+/PQ4cO6fTp0ypbtmyKY9544w298cYb2rJli8MCF23atNGSJUv0448/atasWQoICNBTTz112xpKlSqlsLAwLVy4UO++++4NpxVer2jRotq+fbuSk5MdRo2uTQv9772e7kRQUNANb1r6999/28/Xa7Jly6aWLVuqZcuWSkxMVLNmzfT6669ryJAh8vHxueHrkKSoqCiHvhITExUdHZ1h91OSpFatWmnMmDEqU6ZMikVKrjl9+rSWLVumUaNGOdyjau/evSn2Tc8Rne3bt2v06NHq2LGjtm7dqi5dumjHjh0KDAxMt+cA4Dym0gFIlYSEBM2fP19PPvmknnnmmRSP3r1769y5cymW3P6v4OBgPfLII5oyZYpiYmJSbP/vMtypce2vzNf/VTkxMVEffvih032lRkBAgHLnzu1wrYmkDHm+G722DRs26Lfffkv35ypTpozKlSunr776Sl999ZXy58/vEDSTkpJSTC0KDg5WgQIFdOnSpVv2/fLLL8vPz0+dOnXSv//+m2K7syMCzihevLjD1MgaNWpIkvr06aMFCxY4PKZMmSJJ6tChgxYsWJDir/hNmjSRn5+fPvzwQ/34449q1qzZDQPBjYwaNUqxsbHq0qWLrly5kmL70qVL7cuiN2jQQMeOHXOY2njlyhW9//778vf3V61atdL0s7iR0NBQrV+/XomJifa2RYsW6fDhww77Xb98tXR1Olh4eLiMMTddubFu3bry8vLSe++95/Bv/Pnnn+vs2bNq2LBhur2O/+rSpYtGjBiRYgn8693o/JKkSZMmpdg3W7ZsklL+QcRZly9fVocOHVSgQAG9++67mj59uv7991/169fvjvoFcOcYMQKQKt99953OnTunRo0a3XB7tWrVlCdPHkVGRjpcrH8jkydP1kMPPaRy5cqpa9euKl68uP7991/99ttvOnLkiLZt2+ZUbREREQoKClL79u3Vp08f2Ww2zZw5M0M/bHfp0kXjxo1Tly5dVKVKFa1atUp//fVXuj/Pk08+qfnz56tp06Zq2LChoqOj9fHHHys8PPyG1+zcqZYtW2r48OHy8fFR586dHUYrzp07p0KFCumZZ55RhQoV5O/vr19++UWbNm265YdPSSpZsqRmzZqlVq1aKSwsTG3atFGFChVkjFF0dLRmzZolNzc3FSpUKN1f081Urlw5xRLj16bUlS1bVk2aNElxjL+/v5o0aWK/zig10+iuadmypXbs2KHXX39dW7ZsUatWrVS0aFHFxsZqyZIlWrZsmb3fbt26acqUKerQoYP++OMPhYSEaO7cuVq7dq0mTZqU6kUcUqNLly6aO3eu6tevrxYtWmj//v368ssvUyzn/fjjjytfvnyqUaOG8ubNq927d+uDDz5Qw4YNb1pPnjx5NGTIEI0aNUr169dXo0aNFBUVpQ8//FAPPPDATe8blR6KFi3qcE+xGwkICFDNmjX11ltv6fLlyypYsKCWLl16w9Hma9e1vfrqq3r22Wfl6empp556yh6YUmvMmDHaunWrli1bpuzZs6t8+fIaPny4hg4dqmeeeUYNGjRwqj8A6YdgBCBVIiMj5ePjo8cee+yG293c3NSwYUNFRkam+Mvyf4WHh+v333/XqFGjNH36dMXGxio4OFiVKlVymM6SWrly5dKiRYv00ksvaejQoQoKClLbtm1Vp06dm17HdKeGDx+uEydOaO7cufr666/1xBNP6Mcff1RwcHC6Pk+HDh107NgxTZkyRT/99JPCw8P15Zdf6ptvvtGKFSvS9bmkqx/ehw4dqgsXLqQIuH5+furZs6eWLl2q+fPnKzk5WSVKlNCHH36o559//rZ9N27cWDt27NCECRO0dOlSTZ06VTabTUWLFlXDhg3Vo0cPVahQId1fU3pr06aNZs2apfz58zssTJEaY8aMUe3atfXee+/po48+0qlTpxQUFKRq1app4cKF9j88+Pr6asWKFRo8eLBmzJihuLg4hYWFadq0aTe8GeudqFevniZMmKCJEyfqxRdfVJUqVezn0/W6d++uyMhITZw4UfHx8SpUqJD69OmjoUOH3rL/kSNHKk+ePPrggw/Ur18/5cyZU926ddMbb7xx03tr3U2zZs3SCy+8oMmTJ8sYo8cff1w//vijChQo4LDfAw88oNdee00ff/yxlixZouTkZEVHRzsVjDZv3qw33nhDvXv3tq/sKV29wfDChQvVtWtX7dy5Uzly5EivlwfACTaTkX9SBQAAAIAsgGuMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFjePXmDV99KvV1dAuByvy0c6+oSAJcrXSC7q0sAALiYTyoTDyNGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACwv0wSj/fv3a+jQoWrVqpWOHz8uSfrxxx+1c+dOF1cGAAAA4F6XKYLRypUrVa5cOW3YsEHz589XfHy8JGnbtm0aMWKEi6sDAAAAcK/LFMFo8ODBGjNmjH7++Wd5eXnZ22vXrq3169e7sDIAAAAAVpApgtGOHTvUtGnTFO3BwcE6efKkCyoCAAAAYCWZIhjlyJFDMTExKdq3bNmiggULuqAiAAAAAFaSKYLRs88+q0GDBunYsWOy2WxKTk7W2rVrNWDAALVr187V5QEAAAC4x2WKYPTGG2+odOnSKly4sOLj4xUeHq6aNWsqIiJCQ4cOdXV5AAAAAO5xNmOMcXUR1xw+fFg7duxQfHy8KlWqpJIlS6apH99KvdO5MiDr+W3hWFeXALhc6QLZXV0CAMDFfDxSt1+mGDEaPXq0Lly4oMKFC6tBgwZq0aKFSpYsqYSEBI0ePdrV5QEAAAC4x2WKESN3d3fFxMQoODjYoT02NlbBwcFKSkpyqj9GjABGjACJESMAQBYbMTLGyGazpWjftm2bcubM6YKKAAAAAFhJKvNTxggKCpLNZpPNZlOpUqUcwlFSUpLi4+PVo0cPF1YIAAAAwApcGowmTZokY4w6deqkUaNGKTAw0L7Ny8tLISEhql69ugsrBAAAAGAFLg1G7du3lyQVK1ZMERER8vT0dGU5AAAAACzKpcHomlq1aikpKUnz5s3T7t27JUlly5ZVo0aN5O7u7uLqAAAAANzrMkUw2rdvnxo0aKCjR48qLCxMkjR27FgVLlxYixcvVmhoqIsrBAAAAHAvyxSr0vXp00ehoaE6fPiwNm/erM2bN+vQoUMqVqyY+vTp4+ryAAAAANzjMsWI0cqVK7V+/XqHpblz5cqlcePGqUaNGi6sDAAAAIAVZIpg5O3trXPnzqVoj4+Pl5eXlwsqwn91bf6Quj7zsIoWuBpedx84pjc++VFL1+6SJHl7eWhc/2ZqXu9+eXt56JffdqvvG1/p+Kn//bsWzhekd19pqVpVSik+4ZIiv9+gYe9/p6SkZJe8JiA9nDp5XJGfva+tG9fp0qWLylegkJ4fMEKhYeGSpA2rf9Uvi+bpwN49ij93Vm9+FKmQEmEurhrIeHNmRWrGtM918uQJlQorrcGvDFO58uVdXRZwV3EeZC2ZYirdk08+qW7dumnDhg0yxsgYo/Xr16tHjx5q1KiRq8uDpKP/ntGw9xcqos1bqtHmba3Y+Je+eaebyhTPJ0l6a8DTaljzPrV5+XM93mWS8ucJ1JwJXezHu7nZNP+95+Xl6aFHO0xQ1+Ez1bbRgxr+fENXvSTgjsWfi9PwFzvL3d1DQ954VxM/+1rPde+nbNkD7PtcupigsPsqqnWXF1xYKXB3LfnxB41/a6y69+ylOd8sUFhYaT3fvbNiY2NdXRpw13AeZD2ZIhi99957Cg0NVfXq1eXj4yMfHx/VqFFDJUqU0Lvvvuvq8iDph1V/6qc1u7T/0AntO3RcIyd/r/gLl1S1fDEF+PuoQ5PqGjRxvlZu+ktbdh9WtxFfqnrFUFUtFyJJqlu9jMoUz6dOr87Q9r+OaunaXRr94WJ1b1FTnh6sPIis6buvZihXnrzqOXCESpS+T8H5C6pClWrKV6CQfZ+ajzXUM891VbnKVV1YKXB3zZwxTc2eaaEmTZ9WaIkSGjpilHx8fPTt/HmuLg24azgPsp5MEYxy5MihhQsXKioqSnPnztXcuXMVFRWlBQsWONz0FZmDm5tNzevdr2y+XtqwPVqVyhSRl6eHfl0fZd/nr4P/6lDMKT1Yvpgk6cHyxfTnvn8cptb9vG63ArP7Kjw0/11/DUB6+P23VSpeqowmjh6krs0f06AerbXshwWuLgtwqcuJidq9a6eqVY+wt7m5ualatQht37bFhZUBdw/nQdaUKa4xWrNmjR566CGVLFlSJUuWdOrYS5cu6dKlSw5tJjlJNjdGIdJb2RIFtGLGS/Lx8lB8wiW1fOlT7TlwTBVKFdKlxMs6G5/gsP/x2DjlzXV1SlHeXAE6Hut4HdnxU3FXt+UOkKIEZDnHY47q5+/nqeHTbdS0dUftj9qlaZPHy8PDU7Uef9LV5QEucfrMaSUlJSlXrlwO7bly5VJ09AEXVQXcXZwHWVOmGDGqXbu2ihUrpldeeUW7du1y6tixY8cqMDDQ4XHl3z8yqFJr++vgv3rw2bGq2W68Pv1mjT4d/ZxK//81RoAVJZtkFStZWq0691KxEqVVt2Ez1WnQRD8vYpoEAABZTaYIRv/8849eeuklrVy5Uvfdd58qVqyot99+W0eOHLntsUOGDNHZs2cdHh55778LVVvP5StJOnD4pLbsPqzh73+nHX8dVa9Wj+hYbJy8vTwV6O/rsH9wrgD9G3t1VOjf2DgF58ruuD3n1dGkf0/G3Z0XAKSzoJy5VbBIMYe2gkWK6eTxYy6qCHC9oBxBcnd3T3GBeWxsrHLnzu2iqoC7i/Mga8oUwSh37tzq3bu31q5dq/3796t58+aaMWOGQkJCVLt27Vse6+3trYCAAIcH0+juDjebTd5eHtqy+5ASL1/Row/+bwnikkWDVSR/Tm3YHi1J2rA9WveVKKA8Qf72fepUK62z5xK0+wAfIpE1hZWtoJgjfzu0xRz5W3nyct0crMvTy0tlwstqw/rf7G3JycnasOE3la9QyYWVAXcP50HWlCmuMbpesWLFNHjwYFWoUEHDhg3TypUrXV0SJI1+oZF+WrtTh2NOK3s2H7V8oopqVimpp3p+qLj4i5r+7W9686VmOnX2vM6dv6iJg5pr/bYD2rjjoCTpl992a/eBY/p8THu9+u63ypsrQCN6PakpX69S4uUrrn1xQBo1eLq1hvftpAWzpqp6rce0L2qnlv2wQF1ffNW+T3zcWZ08fkynY09Ikv75/yCVI2cu5cjJXw1xb3qufUcNe2WQypa9T/eVK68vZ85QQkKCmjRt5urSgLuG8yDrsRljjKuLuGbt2rWKjIzU3LlzdfHiRTVu3Fht2rRR/fr1nerHt1LvDKrQuj4a0VqPVg1TvtwBOht/UX/uPaoJ037Rrxv2SPrfDV5b1P//G7yu262+Y7/Sv9ctuFAkf5DefeVZ1by/pM5fvKTI7zdq6HsLucFrBvlt4VhXl2AJf6xfrdmff6BjRw8rT74CevKZNqrToKl9+4qfvtdH40elOO6Z57qqebvud7NUSypdIPvtd0KGmB35pf3GlmGly2jQK0NVvnwFV5cF3FWcB5mDTyqHgjJFMBoyZIjmzJmjf/75R4899pjatGmjxo0by8/PL039EYwAghEgEYwAAKkPRpliKt2qVas0cOBAtWjRggvSAAAAANx1mSIYjR07VhEREfLwcCznypUrWrdunWrWrOmiygAAAABYQaZYle7RRx/VqVOnUrSfPXtWjz76qAsqAgAAAGAlmSIYGWNks9lStMfGxipbtmwuqAgAAACAlbh0Kl2zZleXK7TZbOrQoYO8vb3t25KSkrR9+3ZFRES4qjwAAAAAFuHSYBQYGCjp6ohR9uzZ5evra9/m5eWlatWqqWvXrq4qDwAAAIBFuCwY9e/fXx988IGyZcumgwcP6rPPPpO/v7+rygEAAABgYS67xuj9999XfHy8pKvLdV+4cMFVpQAAAACwOJeNGIWEhOi9997T448/LmOMfvvtNwUFBd1wX5brBgAAAJCRbMYY44on/vbbb9WjRw8dP35cNptNNyvDZrMpKSnJqb59K/VOjxKBLO23hWNdXQLgcqULZHd1CQAAF/NJ5VCQy0aMmjRpoiZNmig+Pl4BAQGKiopScHCwq8oBAAAAYGEuXZVOkvz9/bV8+XIVK1ZMHh4uLwcAAACABWWKG7zWqlVLf//9t4YOHapWrVrp+PHjkqQff/xRO3fudHF1AAAAAO51mSIYrVy5UuXKldOGDRs0f/58+2p127Zt04gRI1xcHQAAAIB7XaYIRoMHD9aYMWP0888/y8vLy95eu3ZtrV+/3oWVAQAAALCCTBGMduzYoaZNm6ZoDw4O1smTJ11QEQAAAAAryRTBKEeOHIqJiUnRvmXLFhUsWNAFFQEAAACwkkwRjJ599lkNGjRIx44dk81mU3JystauXasBAwaoXbt2ri4PAAAAwD0uUwSjN954Q6VLl1bhwoUVHx+v8PBwPfzww4qIiNDQoUNdXR4AAACAe5zNGGNcXcQ1hw8f1o4dOxQfH69KlSqpZMmSaerHt1LvdK4MyHp+WzjW1SUALle6QHZXlwAAcDGfVN4q1WV3VO3fv/8tt1+/Gt3EiRMzuhwAAAAAFuayYLRly5ZU7Wez2TK4EgAAAABW57JgtHz5clc9NQAAAAA4yBSLLwAAAACAKxGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFiezRhjXF1Eevt66z+uLgFwufZD57u6BMDlTn/b29UlAABczMcjdfsxYgQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8ghGAAAAACyPYAQAAADA8jJNMFq9erXatm2r6tWr6+jRo5KkmTNnas2aNS6uDAAAAMC9LlMEo3nz5qlevXry9fXVli1bdOnSJUnS2bNn9cYbb7i4OgAAAAD3ukwRjMaMGaOPP/5Yn376qTw9Pe3tNWrU0ObNm11YGQAAAAAryBTBKCoqSjVr1kzRHhgYqDNnztz9ggAAAABYSqYIRvny5dO+fftStK9Zs0bFixd3QUUAAAAArCRTBKOuXbuqb9++2rBhg2w2m/755x9FRkZqwIABev75511dHgAAAIB7nIerC5CkwYMHKzk5WXXq1NGFCxdUs2ZNeXt7a8CAAXrhhRdcXR4AAACAe5zNGGNcXcQ1iYmJ2rdvn+Lj4xUeHi5/f/809fP11n/SuTIg62k/dL6rSwBc7vS3vV1dAgDAxXxSORSUKabSderUSefOnZOXl5fCw8NVtWpV+fv76/z58+rUqZOrywMAAABwj8sUwWjGjBlKSEhI0Z6QkKAvvvjCBRUBAAAAsBKXXmMUFxcnY4yMMTp37px8fHzs25KSkvTDDz8oODjYhRUCAAAAsAKXBqMcOXLIZrPJZrOpVKlSKbbbbDaNGjXKBZUBAAAAsBKXBqPly5fLGKPatWtr3rx5ypkzp32bl5eXihYtqgIFCriwQgAAAABW4NJgVKtWLUlSdHS0ChcuLDe3THHJEwAAAACLyRT3MSpatKjOnDmjzz//XLt375YklS1bVp06dVJgYKCLqwMAAABwr8sUQzS///67QkND9c477+jUqVM6deqUJk6cqNDQUG3evNnV5QEAAAC4x2WKEaN+/fqpUaNG+vTTT+XhcbWkK1euqEuXLnrxxRe1atUqF1cIAAAA4F6WKYLR77//7hCKJMnDw0Mvv/yyqlSp4sLKAAAAAFhBpphKFxAQoEOHDqVoP3z4sLJnz+6CigAAAABYSaYIRi1btlTnzp311Vdf6fDhwzp8+LDmzJmjLl26qFWrVq4uDwAAAMA9LlNMpRs/frxsNpvatWunK1euSJI8PT31/PPPa9y4cS6uDgAAAMC9zmaMMa4u4poLFy5o//79kqTQ0FD5+fmlqZ+vt/6TnmUBWVL7ofNdXQLgcqe/7e3qEgAALuaTyqGgTDFi9OWXX6pZs2by8/NTuXLlXF0ObuLgrm1a8/1X+if6L507HatWA15T+AMP2bcbY/TrN9P0+7LFung+XkXC7lOjLv2UK38hSdLp48e0Yv4XOvDnFsWfOaXsOXOrwkN1VatZW3l4eLrqZQGpNqD5/WpSvbhKFQpSQuIVbdh9TK9OX6e9R8847Pdg6Xwa+Vw1PRCWV0nJRtsPnNBTw7/TxcQkSVLF0Dwa06G67i95dfu36/Zr0GdrdP7iZRe8KiBjzJkVqRnTPtfJkydUKqy0Br8yTOXKl3d1WcBdxXmQtWSKa4z69eun4OBgtW7dWj/88IOSkpJcXRJuIPHSReUrGqonO/W94fbV383R+h/nq1GXfur++ofy8vHRjDde1uXEREnSyX8OySQbNe7aXy9MmKYn2vXUpl++1y+zP7ubLwNIs4fvK6CPF+9QrQFz9eSwhfLwcNOi1xrJz/t/f2N6sHQ+LRz1lJZtOaSH+3+jh/p9rY8X7VBy8tXB+fw5s2nxmMbaH3NWNV/6Ro1HfKfwIjn1ab86rnpZQLpb8uMPGv/WWHXv2UtzvlmgsLDSer57Z8XGxrq6NOCu4TzIejJFMIqJidGcOXNks9nUokUL5c+fX7169dK6detcXRquU6rSg6r7bGeFV304xTZjjH77Ya5qNXtOZR54SPmKhurpXkN07vRJ7d60RpJUsmJVNes5SCUqPKCceQuoTJUaeujJFtq1cfXdfilAmjQe8b2+XLZHuw+d0o7oWHV75xcVCQ5QpRLB9n3e6vKQPvx+u8bP3azdh05p79EzmrdmnxKvJEuSnnggRJevJOvFj1Zq79Ez+mPvcb0weYWa1iih4vkDXfXSgHQ1c8Y0NXumhZo0fVqhJUpo6IhR8vHx0bfz57m6NOCu4TzIejJFMPLw8NCTTz6pyMhIHT9+XO+8844OHjyoRx99VKGhoa4uD6lw+niM4s+cUmi5++1tPn7+KlSijA7v3XnT4y5eOC9ff5ZkR9YUkM1bknQ6/qIkKU+gr6qWzqcTZxK0/O2ndXBmJy0d21QR4fntx3h7uuvylSRdf3VnQuLVRWeu3w/Iqi4nJmr3rp2qVj3C3ubm5qZq1SK0fdsWF1YG3D2cB1lTpghG1/Pz81O9evX0xBNPqGTJkjp48KCrS0IqxJ85JUnyDwxyaM8WGGTf9l+xx45q/ZIFeqDuUxleH5DebDbp7a4Pa93Of7Tr76vv8WL5AiRJr7auqqk/7VLjEd9p6/4T+uH1JgotcHU0aMX2I8ob5Kd+zSrJ08NNObJ5a0yH6pKkfDmzuebFAOno9JnTSkpKUq5cuRzac+XKpZMnT7qoKuDu4jzImjJNMLpw4YIiIyPVoEEDFSxYUJMmTVLTpk21c+fNRxsk6dKlS4qLi3N4XE68dJeqRlrFnTqhL954WfdVq6UqdZ50dTmA0yY9X0tli+ZUu7d+sre52WySpM+X/KmZv+zWtgMn9fJna/TXkdNq/1i4JGn3oVPq+s4y9WlaUafm9dDBLzvp4LE4HTt9XiY50ywSCgCA5WSKVemeffZZLVq0SH5+fmrRooWGDRum6tWrp+rYsWPHatSoUQ5tz3Tvr+Y9XsqIUnET/jlySpLiz55W9qD//XXk/NnTyhdSwmHfuFMnNXV0fxUuVVaNuvHvhKznnR411eCBENUdPF9HY8/b22NOX/169yHHUdKow6dVOI+//fuvVv6lr1b+peAcvjp/8YqMMerTpKKij529Oy8AyEBBOYLk7u6e4gLz2NhY5c6d20VVAXcX50HWlClGjNzd3fX1118rJiZGH3zwQapDkSQNGTJEZ8+edXg06cR9K+62oOD88s+RUwd2bLa3XbxwXkf27VbhkmXtbXGnTmjq6H4qUKyUmvUcJDe3TPEWBFLtnR411ah6cdV/9Vv9/e85h21//3tO/8TGq1QhxymlJQrm0KHjjvtK0vEzCTp/8bKeqVlSFy8nadnWwxlaO3A3eHp5qUx4WW1Y/5u9LTk5WRs2/KbyFSq5sDLg7uE8yJoyxYhRvXr1VKdOHbm7uzu0JyYmas6cOWrXrt1Nj/X29pa3t7dDm6dXfIbUaXWXLibo1LGj9u/PHI9RzMF98vXPrhy586p6g2e0YsFM5cxfUEHB+bXsq6nKHpRbZf7/Xkdxp07o81H9lCN3XtV/rofOx/3vr+PZ/3/ECcjMJj1fSy1rlVLzMYsVf+Gy8ua4ehPqsxcu2e9R9M68LRrapqp2RJ/UtgMn1bZOaYUVClLrsT/a++nxZDmt331M8QmXVadSYb3RMULDZvyms+cTXfK6gPT2XPuOGvbKIJUte5/uK1deX86coYSEBDVp2szVpQF3DedB1mMzxrh8Uru7u7tiYmIUHBzs0B4bG6vg4GCn72v09dZ/0rM8/L/onVs1dXS/FO2VatVTs56D/3eD118W6eKFeBUJK6enOr+o3AUKS5I2r1iiBR+9ecO+X/tqeYbWbkXth853dQn3nIRFNx6N7vrOL/py2R779wOeqazuDcspKLuPdkSf1KvT1mndrhj79s/611X9KiHy9/VU1JHTmjR/i2Yvj8rw+q3o9LfMIHCV2ZFf2m9sGVa6jAa9MlTly1dwdVnAXcV5kDn4pHIoKE3BaPXq1ZoyZYr279+vuXPnqmDBgpo5c6aKFSumhx56yNnu5Obmpn///Vd58uRxaN+2bZseffRRnTp141XNboZgBBCMAIlgBABIfTByeirdvHnz9Nxzz6lNmzbasmWLLl26ugLc2bNn9cYbb+iHH35IdV+VKlWSzWaTzWZTnTp15OHxv3KSkpIUHR2t+vXrO1siAAAAADjF6WA0ZswYffzxx2rXrp3mzJljb69Ro4bGjBnjVF9NmjSRJG3dulX16tWTv///Vm3y8vJSSEiInn76aWdLBAAAAACnOB2MoqKiVLNmzRTtgYGBOnPmjFN9jRgxQpIUEhKili1bysfHx9lyAAAAAOCOOR2M8uXLp3379ikkJMShfc2aNSpevHiaimjfvr2kq6vQHT9+XMnJyQ7bixQpkqZ+AQAAACA1nA5GXbt2Vd++fTV16lTZbDb9888/+u233zRgwAANGzYsTUXs3btXnTp10rp16xzajTGy2WxOr0oHAAAAAM5wOhgNHjxYycnJqlOnji5cuKCaNWvK29tbAwYM0AsvvJCmIjp06CAPDw8tWrRI+fPnl81mS1M/AAAAAJAWab6PUWJiovbt26f4+HiFh4c7LJzgrGzZsumPP/5Q6dKl09zH9ViuG2C5bkBiuW4AQOqX63ZztuNOnTrp3Llz8vLyUnh4uKpWrSp/f3+dP39enTp1crY7SVJ4eLhOnjyZpmMBAAAA4E45HYxmzJihhISEFO0JCQn64osvUt1PXFyc/fHmm2/q5Zdf1ooVKxQbG+uwLS4uztkSAQAAAMApqb7GKC4uTsYYGWN07tw5h6W1k5KS9MMPPyg4ODjVT5wjRw6Ha4mMMapTp47DPiy+AAAAAOBuSHUwuhZkbDabSpUqlWK7zWbTqFGjUv3Ey5cvT/W+AAAAAJCRUh2Mli9fLmOMateurXnz5ilnzpz2bV5eXipatKgKFCiQ6ieuVauWc5UCAAAAQAZJdTC6FmSio6NVuHBhubk5fXnSTW3fvv2G7TabTT4+PipSpIi8vb3T7fkAAAAA4HpO38eoaNGiOnPmjD7//HPt3r1bklS2bFl16tRJgYGBaSqiYsWKt7x3kaenp1q2bKkpU6Y4XNsEAAAAAOnB6WGf33//XaGhoXrnnXd06tQpnTp1ShMnTlRoaKg2b96cpiIWLFigkiVL6pNPPtHWrVu1detWffLJJwoLC9OsWbP0+eef69dff9XQoUPT1D8AAAAA3IrTN3h9+OGHVaJECX366afy8Lg64HTlyhV16dJFBw4c0KpVq5wuomrVqnrttddUr149h/affvpJw4YN08aNG/Xtt9/qpZde0v79+2/bHzd4BbjBKyBxg1cAQOpv8Or0VLrff//dIRRJkoeHh15++WVVqVLF2e4kSTt27FDRokVTtBctWlQ7duyQdHW6XUxMTJr6BwAAAIBbcXoqXUBAgA4dOpSi/fDhw8qePXuaiihdurTGjRunxMREe9vly5c1btw4lS5dWpJ09OhR5c2bN039AwAAAMCtOD1i1LJlS3Xu3Fnjx49XRESEJGnt2rUaOHCgWrVqlaYiJk+erEaNGqlQoUIqX768pKujSElJSVq0aJEk6cCBA+rZs2ea+gcAAACAW3E6GI0fP142m03t2rXTlStXJF1dNe7555/XuHHj0lRERESEoqOjFRkZqb/++kuS1Lx5c7Vu3do+CvXcc8+lqW8AAAAAuJ1UL75QpUoVdenSRa1bt1ZAQIAuXLhgXwghNDRUfn5+GVqoM1h8AWDxBUBi8QUAQAYsvlChQgW9/PLLeumll/T000+rU6dOeuSRR9JYnvTdd9/piSeekKenp7777rtb7tuoUaM0Pw8AAAAA3I5Ty3VfuHBBX3/9taZPn67Vq1erWLFi6tSpk9q3b6+CBQs69cRubm46duyYgoOD5eZ28zUgbDabkpKSnOqbESOAESNAYsQIAJD6ESOnVqXz8/NThw4dtGLFCv3111969tlnNWXKFIWEhKhhw4aaPz/1H8SSk5MVHBysy5cv65FHHtGePXuUnJyc4uFsKAIAAAAAZzm9XPc1oaGhGjNmjA4ePKjZs2dr/fr1at68udP9eHp6aseOHbccNQIAAACAjHRHaWTFihXq0KGDOnTooKSkJHXt2jVN/bRt21afffbZnZQCAAAAAGnm9HLdR44c0fTp0zV9+nQdOHBADz/8sD788EM1b95cvr6+aSriypUrmjp1qn755Rfdf//9ypYtm8P2iRMnpqlfAAAAAEiNVAejr7/+WlOnTtWyZcsUHBys9u3bq1OnTipRosQdF/Hnn3+qcuXKkmS/j9E1NpvtjvsHAAAAgFtJdTBq27atGjZsqAULFqhBgwbpek3Q8uXL060vAAAAAHBWqoPRkSNHFBwcnJG1AAAAAIBLpHrYh1AEAAAA4F7FGtkAAAAALI9gBAAAAMDyCEYAAAAALM/p+xhdk5iYqOPHjys5OdmhvUiRIndcFAAAAADcTU4Ho71796pTp05at26dQ7sxRjabTUlJSelWHAAAAADcDU4How4dOsjDw0OLFi1S/vz5uQErAAAAgCzP6WC0detW/fHHHypdunRG1AMAAAAAd53Tiy+Eh4fr5MmTGVELAAAAALiE08HozTff1Msvv6wVK1YoNjZWcXFxDg8AAAAAyGqcnkpXt25dSVKdOnUc2ll8AQAAAEBW5XQwWr58eUbUAQAAAAAu43QwqlWrVkbUAQAAAAAuk+YbvF64cEGHDh1SYmKiQ3v58uXvuCgAAAAAuJucDkYnTpxQx44d9eOPP95wO9cYAQAAAMhqnF6V7sUXX9SZM2e0YcMG+fr6asmSJZoxY4ZKliyp7777LiNqBAAAAIAM5fSI0a+//qqFCxeqSpUqcnNzU9GiRfXYY48pICBAY8eOVcOGDTOiTgAAAADIME6PGJ0/f17BwcGSpKCgIJ04cUKSVK5cOW3evDl9qwMAAACAu8DpYBQWFqaoqChJUoUKFTRlyhQdPXpUH3/8sfLnz5/uBQIAAABARnN6Kl3fvn0VExMjSRoxYoTq16+vyMhIeXl5afr06eldHwAAAABkOKeDUdu2be1f33///fr777+1Z88eFSlSRLlz507X4gAAAADgbkjzfYyu8fPzU+XKldOjFgAAAABwCaeDkTFGc+fO1fLly3X8+HElJyc7bJ8/f366FQcAAAAAd4PTwejFF1/UlClT9Oijjypv3ryy2WwZURcAAAAA3DVOB6OZM2dq/vz5atCgQUbUAwAAAAB3ndPLdQcGBqp48eIZUQsAAAAAuITTwWjkyJEaNWqUEhISMqIeAAAAALjrnJ5K16JFC82ePVvBwcEKCQmRp6enw/bNmzenW3EAAAAAcDc4HYzat2+vP/74Q23btmXxBQAAAAD3BKeD0eLFi/XTTz/poYceyoh6AAAAAOCuc/oao8KFCysgICAjagEAAAAAl3A6GE2YMEEvv/yyDh48mAHlAAAAAMDdZzPGGGcOCAoK0oULF3TlyhX5+fmlWHzh1KlT6VpgWly84uoKAAAAAGQGPqm8eMjpa4wmTZrk7CEAAAAAkKk5PWKUFTBiBAAAAEDKwBGjQ4cO3XJ7kSJFnO0SAAAAAFzK6REjNze3W967KCkp6Y6LulOMGAEAAACQMnDEaMuWLQ7fX758WVu2bNHEiRP1+uuvO9sdAAAAALhcul1jtHjxYr399ttasWJFenR3RxgxAgAAACClfsTI6fsY3UxYWJg2bdqUXt0BAAAAwF3j9FS6uLg4h++NMYqJidHIkSNVsmTJdCsMAAAAAO4Wp4NRjhw5Uiy+YIxR4cKFNWfOnHQrDAAAAADuFqeD0fLlyx2+d3NzU548eVSiRAl5eDjdHQAAAAC4HDd4BQAAAHDPSvflur/77rtU7deoUaPUdgkAAAAAmUKqR4zc3BwXsLPZbPrvoTabjRu8AgAAAMg00n257uTkZIeHn5+f9u3b59CWGUIRAAAAADgr3e5jBAAAAABZFcEIAAAAgOURjAAAAABYXpqDkc1mS3GjVwAAAADIilK9Kl1QUJBDEDpz5owCAgJSrFZ36tSp9K0wDViVDgAAAICUAfcxmjRpUhpLAQAAAIDMLdUjRlkJI0YAAAAApAy4jxEAAAAA3KsIRgAAAAAsj2AEAAAAwPIIRgAAAAAsj2AEAAAAwPJSvVz39Y4cOaLvvvtOhw4dUmJiosO2iRMnpkthAAAAAHC3OB2Mli1bpkaNGql48eLas2eP7rvvPh08eFDGGFWuXDkjagQAAACADOX0VLohQ4ZowIAB2rFjh3x8fDRv3jwdPnxYtWrVUvPmzTOiRgAAAADIUE7f4DV79uzaunWrQkNDFRQUpDVr1qhs2bLatm2bGjdurIMHD2ZQqanHDV4BAAAASBl4g9ds2bLZryvKnz+/9u/fb9928uRJZ7sDAAAAAJdz+hqjatWqac2aNSpTpowaNGigl156STt27ND8+fNVrVq1jKgRAAAAADKU01PpDhw4oPj4eJUvX17nz5/XSy+9pHXr1qlkyZKaOHGiihYtmlG1phpT6QAAAABIqZ9K53QwygoIRgAAAACk1AejNN3HSJISExN1/PhxJScnO7QXKVIkrV0CAAAAgEs4HYz++usvde7cWevWrXNoN8bIZrMpKSkp3YoDAAAAgLvB6WDUsWNHeXh4aNGiRcqfP79sNltG1AUAAAAAd43T1xhly5ZNf/zxh0qXLp1RNd0xrjECAAAAIGXgfYzCw8O5XxEAAACAe4rTwejNN9/Uyy+/rBUrVig2NlZxcXEODwAAAADIapyeSufmdjVL/ffaosy0+AJT6QAAAABIGbhc9/Lly509BAAAAAAyNW7wCgAAAOCelWGLL0jS6tWr1bZtW0VEROjo0aOSpJkzZ2rNmjVp6Q4AAAAAXMrpYDRv3jzVq1dPvr6+2rx5sy5duiRJOnv2rN544410LxAAAAAAMprTwWjMmDH6+OOP9emnn8rT09PeXqNGDW3evDldiwMAAACAu8HpYBQVFaWaNWumaA8MDNSZM2fSVMTMmTNVo0YNFShQQH///bckadKkSVq4cGGa+gMAAAAAZzgdjPLly6d9+/alaF+zZo2KFy/udAEfffSR+vfvrwYNGujMmTP25b5z5MihSZMmOd0fAAAAADjL6WDUtWtX9e3bVxs2bJDNZtM///yjyMhIDRgwQM8//7zTBbz//vv69NNP9eqrr8rd3d3eXqVKFe3YscPp/gAAAADAWU7fx2jw4MFKTk5WnTp1dOHCBdWsWVPe3t4aMGCAXnjhBacLiI6OVqVKlVK0e3t76/z58073BwAAAADOcioYJSUlae3aterVq5cGDhyoffv2KT4+XuHh4fL3909TAcWKFdPWrVtVtGhRh/YlS5aoTJkyaeoTAAAAAJzhVDByd3fX448/rt27dytHjhwKDw+/4wL69++vXr166eLFizLGaOPGjZo9e7bGjh2rzz777I77BwAAAIDbcXoq3X333acDBw6oWLFi6VJAly5d5Ovrq6FDh+rChQtq3bq1ChQooHfffVfPPvtsujwHAAAAANyKzRhjnDlgyZIlGjJkiF577TXdf//9ypYtm8P2gICANBdz4cIFxcfHKzg4OM19SNLFK3d0OAAAAIB7hE8qh4KcDkZubv9byM5ms9m/NsbIZrPZl9tOrdq1a2v+/PnKkSOHQ3tcXJyaNGmiX3/91an+JIIRAAAAgKtSG4ycnkq3fPlyZw+5pRUrVigxMTFF+8WLF7V69ep0fS4AAAAAuBGng1GtWrVuuu3PP/9MdT/bt2+3f71r1y4dO3bM/n1SUpKWLFmiggULOlseAAAAADjN6al0/3Xu3DnNnj1bn332mf74449UT6Vzc3OzT8W7UQm+vr56//331alTJ6drYiodAAAAACkDp9Jds2rVKn3++eeaN2+eChQooGbNmmny5MmpPj46OlrGGBUvXlwbN25Unjx57Nu8vLwUHBwsd3f3tJYHAAAAAKnmVDA6duyYpk+frs8//1xxcXFq0aKFLl26pG+//dbpexpdu6FrcnKyU8cBAAAAQHpzu/0uVz311FMKCwvT9u3bNWnSJP3zzz96//3306WI/fv364UXXlDdunVVt25d9enTR/v370+XvgEAAADgdlIdjH788Ud17txZo0aNUsOGDdNtmttPP/2k8PBwbdy4UeXLl1f58uW1YcMGlS1bVj///HO6PAfurjmzIvXEY7X1QKVyavNsc+24bqENwCo4D2B1nAMA50FWk+pgtGbNGp07d07333+/HnzwQX3wwQc6efLkHRcwePBg9evXTxs2bNDEiRM1ceJEbdiwQS+++KIGDRp0x/3j7lry4w8a/9ZYde/ZS3O+WaCwsNJ6vntnxcbGuro04K7hPIDVcQ4AnAdZkdOr0p0/f15fffWVpk6dqo0bNyopKUkTJ05Up06dlD17dqcL8PHx0Y4dO1SyZEmH9r/++kvly5fXxYsXne6TVelcp82zzVX2vnJ6ZehwSVevIXu8Ti21av2cOnft5uLqgLuD8wBWxzkAcB5kJqldlS7VI0bXZMuWTZ06ddKaNWu0Y8cOvfTSSxo3bpyCg4PVqFEjZ7tTnjx5tHXr1hTtW7duVXBwsNP9wXUuJyZq966dqlY9wt7m5uamatUitH3bFhdWBtw9nAewOs4BgPMgq3I6GF0vLCxMb731lo4cOaLZs2enqY+uXbuqW7duevPNN7V69WqtXr1a48aNU/fu3dW1a9fbHn/p0iXFxcU5PC5dupSmWnBnTp85raSkJOXKlcuhPVeuXOky7RLICjgPYHWcAwDnQVaV5vsYXc/d3V1NmjRRkyZNnD522LBhyp49uyZMmKAhQ4ZIkgoUKKCRI0eqT58+tz1+7NixGjVqlEPbq8NGaOjwkU7XAgAAAMCa0iUY3QmbzaZ+/fqpX79+OnfunCQ5da3SkCFD1L9/f4c24+6drjUidYJyBMnd3T3FRYWxsbHKnTu3i6oC7i7OA1gd5wDAeZBV3dFUuvQwZswYRUdHS7oaiJxdwMHb21sBAQEOD29vgpEreHp5qUx4WW1Y/5u9LTk5WRs2/KbyFSq5sDLg7uE8gNVxDgCcB1mVy4PRN998oxIlSigiIkIffvgh8y6zuOfad9T8uV/ru28X6MD+/RozeqQSEhLUpGkzV5cG3DWcB7A6zgGA8yArcnq57oywc+dORUZGas6cOTpy5Igee+wxtWnTRk2aNJGfn5/T/bFct2vNjvxSM6Z9rpMnTyisdBkNemWoypev4OqygLuK8wBWxzkAcB5kFqldrjtTBKPrrV27VrNmzdI333yjixcvKi4uzuk+CEYAAAAApAy8j1FGy5Ytm3x9feXl5aXLly+7uhwAAAAAFpApglF0dLRef/11lS1bVlWqVNGWLVs0atQoHTt2zNWlAQAAALAAly/XXa1aNW3atEnly5dXx44d1apVKxUsWNDVZQEAAACwEJcHozp16mjq1KkKDw93dSkAAAAALCrTLL6QmJio6OhohYaGysPjzvIaiy8AAAAAkLLQ4gsJCQnq3Lmz/Pz8VLZsWR06dEiS9MILL2jcuHEurg4AAACAFbg8GA0ePFjbtm3TihUr5OPjY2+vW7euvvrqKxdWBgAAAMAqXH6N0bfffquvvvpK1apVk81ms7eXLVtW+/fvd2FlAAAAAKzC5SNGJ06cUHBwcIr28+fPOwQlAAAAAMgoLg9GVapU0eLFi+3fXwtDn332mapXr+6qsgAAAABYiMun0r3xxht64okntGvXLl25ckXvvvuudu3apXXr1mnlypWuLg8AAACABbh8xOihhx7S1q1bdeXKFZUrV05Lly5VcHCwfvvtN91///2uLg8AAACABWSa+xilJ+5jBAAAAEBK/X2MXDKVLi4uTgEBAfavb+XafgAAAACQUVwyYuTu7q6YmBgFBwfLzc3thqvPGWNks9mUlJTkdP+MGAEAAACQMvmI0a+//qqcOXNKkqZNm6bChQvL3d3dYZ/k5GQdOnTIFeUBAAAAsBiXX2N0/ejR9WJjYxUcHMyIEQAAAIA0S+2IkctXpbs2Ze6/4uPj5ePj44KKAAAAAFiNy+5j1L9/f0lXb+g6bNgw+fn52bclJSVpw4YNqlixoouqAwAAAGAlLgtGW7ZskXR1xGjHjh3y8vKyb/Py8lKFChU0YMAAV5UHAAAAwEJcfo1Rx44d9e6776brstxcYwQAAABASv01Ri4PRhmBYAQAAABAykKLLwAAAACAqxGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5RGMAAAAAFgewQgAAACA5WW6YHTx4kVXlwAAAADAYjJFMEpOTtZrr72mggULyt/fXwcOHJAkDRs2TJ9//rmLqwMAAABwr8sUwWjMmDGaPn263nrrLXl5ednb77vvPn322WcurAwAAACAFWSKYPTFF1/ok08+UZs2beTu7m5vr1Chgvbs2ePCygAAAABYQaYIRkePHlWJEiVStCcnJ+vy5csuqAgAAACAlWSKYBQeHq7Vq1enaJ87d64qVarkgooAAAAAWImHqwuQpOHDh6t9+/Y6evSokpOTNX/+fEVFRemLL77QokWLXF0eAAAAgHuczRhjXF2EJK1evVqjR4/Wtm3bFB8fr8qVK2v48OF6/PHHne7r4pUMKBAAAABAluOTyqGgTBOM0hPBCAAAAICU+mCUKa4xKl68uGJjY1O0nzlzRsWLF3dBRQAAAACsJFMEo4MHDyopKSlF+6VLl3T06FEXVAQAAADASly6+MJ3331n//qnn35SYGCg/fukpCQtW7ZMISEhLqgMAAAAgJW49BojN7erA1Y2m03/LcPT01MhISGaMGGCnnzySaf65RojAAAAAFLqrzFy6YhRcnKyJKlYsWLatGmTcufO7cpyAAAAAFgUq9IBAAAAuGdlqVXpJGnlypV66qmnVKJECZUoUUKNGjXS6tWrXV0WAAAAAAvIFMHoyy+/VN26deXn56c+ffqoT58+8vX1VZ06dTRr1ixXlwcAAADgHpcpptKVKVNG3bp1U79+/RzaJ06cqE8//VS7d+92qj+m0gEAAACQUj+VLlMEI29vb+3cuVMlSpRwaN+3b5/uu+8+Xbx40an+CEYAAAAApCx2jVHhwoW1bNmyFO2//PKLChcu7IKKAAAAAFiJS5frvuall15Snz59tHXrVkVEREiS1q5dq+nTp+vdd991cXUAAAAA7nWZYiqdJC1YsEATJkywX09UpkwZDRw4UI0bN3a6L6bSAQAAAJCy2DVG6Y1gBAAAAEDKYtcYdenSRStWrHB1GQAAAAAsKlMEoxMnTqh+/foqXLiwBg4cqK1bt7q6JAAAAAAWkmmm0p0+fVrffPONZs2apdWrV6t06dJq06aNWrdurZCQEKf6YiodAAAAACmLX2N05MgRzZ49W1OnTtXevXt15YpzSYdgBAAAAEDKYtcYXe/y5cv6/ffftWHDBh08eFB58+Z1dUkAAAAA7nGZJhgtX75cXbt2Vd68edWhQwcFBARo0aJFOnLkiKtLAwAAAHCPyxRT6QoWLKhTp06pfv36atOmjZ566il5e3unuT+m0gEAAACQstg1Rp9++qmaN2+uHDly3HK/I0eOqECBAnJzu/VAF8EIAAAAgJTFglFqBQQEaOvWrSpevPgt9yMYAQAAAJCy8OILt5KFMhwAAACALCRLBSMAAAAAyAgEIwAAAACWRzACAAAAYHlZKhjZbDZXlwAAAADgHpSlghGLLwAAAADICFlque7Dhw+rQIECcnd3v+V+LNcNAAAAQMoC9zFq1qxZqvedP3++U30TjFxrzqxIzZj2uU6ePKFSYaU1+JVhKle+vKvLAu4qzgNYHecAwHmQWWT6+xgFBgbaHwEBAVq2bJl+//13+/Y//vhDy5YtU2BgoKtKRBos+fEHjX9rrLr37KU53yxQWFhpPd+9s2JjY11dGnDXcB7A6jgHAM6DrChTTKUbNGiQTp06pY8//tg+TS4pKUk9e/ZUQECA3n77baf6Y8TIddo821xl7yunV4YOlyQlJyfr8Tq11Kr1c+rctZuLqwPuDs4DWB3nAMB5kJlk+hGj602dOlUDBgxwuHbI3d1d/fv319SpU11YGZxxOTFRu3ftVLXqEfY2Nzc3VasWoe3btriwMuDu4TyA1XEOAJwHWVWmCEZXrlzRnj17UrTv2bNHycnJtzz20qVLiouLc3hcunQpo0rFLZw+c1pJSUnKlSuXQ3uuXLl08uRJF1UF3F2cB7A6zgGA8yCryhTBqGPHjurcubMmTpyoNWvWaM2aNZowYYK6dOmijh073vLYsWPHOlyvFBgYqLffHHuXKgcAAABwL0jljLuMNX78eOXLl08TJkxQTEyMJCl//vwaOHCgXnrppVseO2TIEPXv39+hzbh7Z1ituLmgHEFyd3dPcVFhbGyscufO7aKqgLuL8wBWxzkAcB5kVZlixMjNzU0vv/yyjh49qjNnzujMmTM6evSoXn755dves8jb21sBAQEOD29vgpEreHp5qUx4WW1Y/5u9LTk5WRs2/KbyFSq5sDLg7uE8gNVxDgCcB1lVphgxul5AQICrS8AdeK59Rw17ZZDKlr1P95Urry9nzlBCQoKaNE39fauArI7zAFbHOQBwHmRFmSYYzZ07V19//bUOHTqkxMREh22bN292UVVwVv0nGuj0qVP68IP3dPLkCYWVLqMPp3ymXAwbw0I4D2B1nAMA50FWlCnuY/Tee+/p1VdfVYcOHfTJJ5+oY8eO2r9/vzZt2qRevXrp9ddfd6o/7mMEAAAAQEr9fYwyRTAqXbq0RowYoVatWil79uzatm2bihcvruHDh+vUqVP64IMPnOqPYAQAAABAymI3eD106JAiIq7eAMvX11fnzp2TJD333HOaPXu2K0sDAAAAYAGZIhjly5dPp06dkiQVKVJE69evlyRFR0crEwxoAQAAALjHZYpgVLt2bX333XeSrt7stV+/fnrsscfUsmVLNW3a1MXVAQAAALjXZYprjJKTk5WcnCwPj6sTAOfMmaN169apZMmS6t69u7y8vJzqj2uMAAAAAEhZbPGF9EYwAgAAACClPhhlmvsYnT59Wp9//rl2794tSQoPD1fHjh2VM2dOF1cGAAAA4F6XKUaMVq1apUaNGikgIEBVqlSRJP3xxx86c+aMvv/+e9WsWdOp/hgxAgAAACBlsal05cqVU/Xq1fXRRx/J3d1dkpSUlKSePXtq3bp12rFjh1P9EYwAAAAASFksGPn6+mrr1q0KCwtzaI+KilLFihWVkJDgVH8EIwAAAABSFrvBa+XKle3XFl1v9+7dqlChggsqAgAAAGAlLlt8Yfv27fav+/Tpo759+2rfvn2qVq2aJGn9+vWaPHmyxo0b56oSAQAAAFiEy6bSubm5yWaz6XZPb7PZlJSU5FTfTKUDAAAAIGWB5bqjo6Nd9dQAAAAA4CBTLL6Q3hgxAgAAACBlgRGj/9q7d6+WL1+u48ePKzk52WHb8OHDXVQVAAAAACvIFCNGn376qZ5//nnlzp1b+fLlk81ms2+z2WzavHmzU/0xYgQAAABAymL3MSpatKh69uypQYMGpUt/BCMAAAAAUha7j9Hp06fVvHlzV5cBAAAAwKIyRTBq3ry5li5d6uoyAAAAAFiUy6bSvffee/avz58/r4kTJ6phw4YqV66cPD09Hfbt06ePU30zlQ4AAACAlAWuMSpWrFiq9rPZbDpw4IBTfROMAAAAAEhZIBhlJIIRAAAAACmLLb4wevRoXbhwIUV7QkKCRo8e7YKKAAAAAFhJphgxcnd3V0xMjIKDgx3aY2NjFRwcrKSkJKf6Y8QIAAAAgJTFRoyMMQ43db1m27ZtypkzpwsqAgAAAGAlqcxPGSMoKEg2m002m02lSpVyCEdJSUmKj49Xjx49XFghAAAAACtw6VS6GTNmyBijTp06adKkSQoMDLRv8/LyUkhIiKpXr+50v0ylAwAAACBlsVXpVq5cqYiIiBT3L0orghEAAAAAKYsFI+nq1Llvv/1Wu3fvliSVLVtWjRo1kru7u9N9EYwAAAAASFksGO3bt08NGjTQ0aNHFRYWJkmKiopS4cKFtXjxYoWGhjrVH8EIAAAAgJTFglGDBg1kjFFkZKR9FbrY2Fi1bdtWbm5uWrx4sVP9EYwAAAAASFksGGXLlk3r169XuXLlHNq3bdumGjVqKD4+3qn+CEYAAAAApCx2HyNvb2+dO3cuRXt8fLy8vLxcUBEAAAAAK8kUwejJJ59Ut27dtGHDBhljZIzR+vXr1aNHDzVq1MjV5QEAAAC4x2WKqXRnzpxR+/bt9f3339uX7L58+bIaN26s6dOnO9zfKDWYSgcAAABAymLXGF2zb98+7dq1S5IUHh6uEiVKpKkfghEAAAAAKfXBKJW7ZbzPP/9c77zzjvbu3StJKlmypF588UV16dLFxZUBAAAAuNdlimA0fPhwTZw4US+88IKqV68uSfrtt9/Ur18/HTp0SKNHj3ZxhQAAAADuZZliKl2ePHn03nvvqVWrVg7ts2fP1gsvvKCTJ0861R9T6QAAAABIWWy57suXL6tKlSop2u+//35duULKAQAAAJCxMkUweu655/TRRx+laP/kk0/Upk0bF1QEAAAAwEpcdo1R//797V/bbDZ99tlnWrp0qapVqyZJ2rBhgw4dOqR27dq5qkQAAAAAFuGya4weffTRVO1ns9n066+/OtU31xgBAAAAkLLofYzSC8EIAAAAgJTFFl8AAAAAAFciGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMsjGAEAAACwPIIRAAAAAMuzGWOMq4vAveXSpUsaO3ashgwZIm9vb1eXA7gE5wHAeQBInAdZCcEI6S4uLk6BgYE6e/asAgICXF0O4BKcBwDnASBxHmQlTKUDAAAAYHkEIwAAAACWRzACAAAAYHkEI6Q7b29vjRgxggsMYWmcBwDnASBxHmQlLL4AAAAAwPIYMQIAAABgeQQjAAAAAJZHMAIAAABgeQQjC3rkkUf04osvpnr/b7/9ViVKlJC7u7tTxwGZmc1m07fffpvq/VesWCGbzaYzZ85kWE1AZsH7HZmRs59fUiskJESTJk266faDBw/KZrNp69at6f7cHTp0UJMmTdK9X6QNwQi31b17dz3zzDM6fPiwXnvttQw7iadPn64cOXKke7/AjcTExOiJJ55I1z5HjhypihUrpmufEh9SkfH++4EzIiJCMTExCgwMvGs1ZOSHT0Dic4bk/B8FrcbD1QUgc4uPj9fx48dVr149FShQwNXlAOkiMTFR+fLlc3UZQKbl5eXFOQLAchgxsrhLly5pwIABKliwoLJly6YHH3xQK1askHT1r9TZs2eXJNWuXVs2m02PPPKIZsyYoYULF8pms8lms2nFihWKiIjQoEGDHPo+ceKEPD09tWrVKknS6dOn1a5dOwUFBcnPz09PPPGE9u7da3+ujh076uzZs/Z+R44cedsagdR45JFH1Lt3b7344ovKnTu36tWrl+KvZuvWrVPFihXl4+OjKlWq6Ntvv73hX6//+OMPValSRX5+foqIiFBUVJSkq3+JHDVqlLZt22Z/D0+fPl2tW7dWy5YtHfq4fPmycufOrS+++ELS1fd4nz59FBwcLB8fHz300EPatGmTpKt/RX/00UclSUFBQbLZbOrQoYMkKTk5WWPHjlWxYsXk6+urChUqaO7cuRnwE8S9rEOHDlq5cqXeffddh/fuf0cp16xZo4cffli+vr4qXLiw+vTpo/Pnz0uSXnnlFT344IMp+q5QoYJGjx4t6er7dfTo0SpUqJC8vb1VsWJFLVmyxL5vsWLFJEmVKlWy/39zzWeffaYyZcrIx8dHpUuX1ocffpgBPwlkBVeuXFHv3r0VGBio3Llza9iwYbp255m0fs6QpAsXLqhTp07Knj27ihQpok8++STFc+/Zs0cRERHy8fHRfffdp5UrV9q3JSUlqXPnzvbfx2FhYXr33Xcdjk9KSlL//v2VI0cO5cqVSy+//LJSe9ecTz75RAUKFFBycrJDe+PGjdWpUyf79x999JFCQ0Pl5eWlsLAwzZw5074tJCREktS0aVPZbDb795K0cOFCVa5cWT4+PipevLhGjRqlK1eupKq2e4qB5dSqVcv07dvXGGNMly5dTEREhFm1apXZt2+fefvtt423t7f566+/zKVLl0xUVJSRZObNm2diYmLM2bNnTYsWLUz9+vVNTEyMiYmJMZcuXTIffPCBKVKkiElOTrY/z/vvv+/Q1qhRI1OmTBmzatUqs3XrVlOvXj1TokQJk5iYaC5dumQmTZpkAgIC7P2eO3futjUCqVGrVi3j7+9vBg4caPbs2WP27NljJJkFCxYYY4w5e/asyZkzp2nbtq3ZuXOn+eGHH0ypUqWMJLNlyxZjjDHLly83ksyDDz5oVqxYYXbu3GkefvhhExERYYwx5sKFC+all14yZcuWtb+HL1y4YBYtWmR8fX3t72djjPn++++Nr6+viYuLM8YY06dPH1OgQAHzww8/mJ07d5r27duboKAgExsba65cuWLmzZtnJJmoqCgTExNjzpw5Y4wxZsyYMaZ06dJmyZIlZv/+/WbatGnG29vbrFix4u79cJHlnTlzxlSvXt107drV/t795ZdfjCRz+vRpY4wx+/btM9myZTPvvPOO+euvv8zatWtNpUqVTIcOHYwxxvz5559Gktm3b5+932tte/fuNcYYM3HiRBMQEGBmz55t9uzZY15++WXj6elp/12+ceNGI8n88ssvJiYmxsTGxhpjjPnyyy9N/vz5zbx588yBAwfMvHnzTM6cOc306dPv4k8JmcG13+V9+/Y1e/bsMV9++aXx8/Mzn3zyiTEm7Z8zihYtanLmzGkmT55s9u7da8aOHWvc3NzMnj17jDHGREdHG0mmUKFCZu7cuWbXrl2mS5cuJnv27ObkyZPGGGMSExPN8OHDzaZNm8yBAwfstX311Vf2+t98800TFBRk5s2bZ3bt2mU6d+5ssmfPbho3bnzb137q1Cnj5eVlfvnlF3tbbGysQ9v8+fONp6enmTx5somKijITJkww7u7u5tdffzXGGHP8+HEjyUybNs3ExMSY48ePG2OMWbVqlQkICDDTp083+/fvN0uXLjUhISFm5MiRd/gvlvUQjCzoWjD6+++/jbu7uzl69KjD9jp16pghQ4YYY4w5ffq0kWSWL19u396+ffsUJ/Hx48eNh4eHWbVqlb2tevXqZtCgQcYYY/766y8jyaxdu9a+/eTJk8bX19d8/fXXxhhjpk2bZgIDAx36TU2NwO3UqlXLVKpUyaHt+mD00UcfmVy5cpmEhAT79k8//fSGwej6/5QWL15sJNmPGzFihKlQoYLD81y+fNnkzp3bfPHFF/a2Vq1amZYtWxpjjImPjzeenp4mMjLSvj0xMdEUKFDAvPXWWw7Pfe1DqjHGXLx40fj5+Zl169Y5PF/nzp1Nq1atnPjpAI5/MDMm5Xuuc+fOplu3bg7HrF692ri5udnf/xUqVDCjR4+2bx8yZIh58MEH7d8XKFDAvP766w59PPDAA6Znz57GmP99+Lx2zl0TGhpqZs2a5dD22muvmerVq6fptSLrqlWrlilTpozDH2EHDRpkypQpk+bPGcZcDUZt27a1f5+cnGyCg4PNRx99ZIz533tz3Lhx9n0uX75sChUqZN58882b1turVy/z9NNP27/Pnz+//ff69X2kJhgZY0zjxo1Np06d7N9PmTLFFChQwCQlJRljjImIiDBdu3Z1OKZ58+amQYMG9u+v/7/vmjp16pg33njDoW3mzJkmf/78qarrXsJUOgvbsWOHkpKSVKpUKfn7+9sfK1eu1P79+53qK0+ePHr88ccVGRkpSYqOjtZvv/2mNm3aSJJ2794tDw8Ph6kWuXLlUlhYmHbv3n1XaoS13X///TfdFhUVpfLly8vHx8feVrVq1RvuW758efvX+fPnlyQdP378pn17eHioRYsW9nPj/PnzWrhwof3c2L9/vy5fvqwaNWrYj/H09FTVqlVveW7s27dPFy5c0GOPPeZwbnzxxRecG0h327Zt0/Tp0x3ea/Xq1VNycrKio6MlSW3atNGsWbMkScYYzZ492/4+j4uL0z///OPwPpekGjVq3PJ9fv78ee3fv1+dO3d2eO4xY8bwPreoatWqyWaz2b+vXr269u7dq127dqXpc8Y11/9ut9lsypcvX4rf7dWrV7d/7eHhoSpVqjj0PXnyZN1///3KkyeP/P399cknn+jQoUOSpLNnzyomJsahvmt9pFabNm00b948Xbp0SZIUGRmpZ599Vm5uVz/O79692+lzTLp6fo8ePdrhHOvatatiYmJ04cKFVNd3L2DxBQuLj4+Xu7u7/vjjD7m7uzts8/f3d7q/Nm3aqE+fPnr//fc1a9YslStXTuXKlctUNcK6smXLli79eHp62r++9p/zf+d8/1ebNm1Uq1YtHT9+XD///LN8fX1Vv379O6ojPj5ekrR48WIVLFjQYZu3t/cd9Q38V3x8vLp3764+ffqk2FakSBFJUqtWrTRo0CBt3rxZCQkJOnz4cIrr69LyvJL06aefpriG6b//JwB34vrf7dLV3++3+91+vTlz5mjAgAGaMGGCqlevruzZs+vtt9/Whg0b0q3Gp556SsYYLV68WA888IBWr16td9555477jY+P16hRo9SsWbMU267/g6EVEIwsrFKlSkpKStLx48f18MMPp/o4Ly8vJSUlpWhv3LixunXrpiVLlmjWrFlq166dfVuZMmV05coVbdiwQREREZKk2NhYRUVFKTw8/Kb9prVGwBlhYWH68ssvdenSJXuouLb4gTNudm5ERESocOHC+uqrr/Tjjz+qefPm9v+Er10ku3btWhUtWlTS1cUZNm3aZF8+2cvLS5Ic+g4PD5e3t7cOHTqkWrVqOV0rcL2bvXevqVy5snbt2qUSJUrcdJ9ChQqpVq1aioyMVEJCgh577DEFBwdLkgICAlSgQAGtXbvW4f26du1a++jsjd7nefPmVYECBXTgwAH76BOs7b9BY/369SpZsqTCw8PT9DnDGevXr1fNmjUlXV0E4o8//lDv3r0lXX0vR0REqGfPnvb9rx/VDAwMVP78+bVhw4YUfVSuXDlVz+/j46NmzZopMjJS+/btU1hYmMOxZcqU0dq1a9W+fXt729q1a+2vX7oaAP/7M6hcubKioqJueX5bBcHIwkqVKqU2bdqoXbt2mjBhgipVqqQTJ05o2bJlKl++vBo2bHjD40JCQvTTTz8pKipKuXLlUmBgoDw9PZUtWzY1adJEw4YN0+7du9WqVSv7MSVLllTjxo3VtWtXTZkyRdmzZ9fgwYNVsGBBNW7c2N5vfHy8li1bpgoVKsjPzy/NNQLOaN26tV599VV169ZNgwcP1qFDhzR+/HhJcpiycTshISGKjo7W1q1bVahQIWXPnt0etFq3bq2PP/5Yf/31l5YvX24/Jlu2bHr++ec1cOBA5cyZU0WKFNFbb72lCxcuqHPnzpKkokWLymazadGiRWrQoIF8fX2VPXt2DRgwQP369VNycrIeeughnT17VmvXrlVAQIDDf4zA7YSEhGjDhg06ePCg/P39U/ylfNCgQapWrZp69+6tLl26KFu2bNq1a5d+/vlnffDBB/b92rRpoxEjRigxMTHFX7IHDhyoESNGKDQ0VBUrVtS0adO0detW+zTT4OBg+fr6asmSJSpUqJB8fHwUGBioUaNGqU+fPgoMDFT9+vV16dIl/f777zp9+rT69++f8T8cZCqHDh1S//791b17d23evFnvv/++JkyYkObPGX5+fql+7smTJ6tkyZIqU6aM3nnnHZ0+fdq+IlzJkiX1xRdf6KefflKxYsU0c+ZMbdq0yb7aoiT17dtX48aNU8mSJVW6dGlNnDjR6fvTtWnTRk8++aR27typtm3bOmwbOHCgWrRooUqVKqlu3br6/vvvNX/+fP3yyy/2fUJCQrRs2TLVqFFD3t7eCgoK0vDhw/Xkk0+qSJEieuaZZ+Tm5qZt27bpzz//1JgxY5yqL8tz9UVOuPuuv8j22ioqISEhxtPT0+TPn980bdrUbN++3Rhz48UXjh8/bh577DHj7++fYtsPP/xgJJmaNWumeN5Tp06Z5557zgQGBhpfX19Tr169FCvL9ejRw+TKlctIMiNGjEhVjcDt/PfCcmNSXoC6du1aU758eePl5WXuv/9+M2vWLCPJvirRjRZA2LJli5FkoqOjjTFXF0R4+umnTY4cOewr/1yza9cuI8kULVrU4cJhY4xJSEgwL7zwgsmdO7fx9vY2NWrUMBs3bnTYZ/To0SZfvnzGZrOZ9u3bG2OuXiA8adIkExYWZjw9PU2ePHlMvXr1zMqVK+/o5wXriYqKMtWqVTO+vr729+5/3+8bN260/+7Pli2bKV++fIrFFE6fPm28vb2Nn5+fw0qMxhiTlJRkRo4caQoWLGg8PT1NhQoVzI8//uiwz6effmoKFy5s3NzcTK1ateztkZGRpmLFisbLy8sEBQWZmjVrmvnz56f7zwGZW61atUzPnj1Njx49TEBAgAkKCjKvvPKK/XdqWj9nFC1a1LzzzjsO+1WoUMG+/driC7NmzTJVq1Y1Xl5eJjw83L7amzFXf/936NDBBAYGmhw5cpjnn3/eDB482GFBnsuXL5u+ffuagIAAkyNHDtO/f3/Trl27VC++YMzV8yh//vxGktm/f3+K7R9++KEpXry48fT0NKVKlXJY+McYY7777jtTokQJ4+HhYYoWLWpvX7JkiYmIiDC+vr4mICDAVK1a1b7an5XYjEnlAuoAYCGRkZH2e174+vq6uhwAAJDBmEoHAJK++OILFS9eXAULFtS2bds0aNAgtWjRglAEAIBFEIwAQNKxY8c0fPhwHTt2TPnz51fz5s31+uuvu7osAIAFHDp0yGGRhP/atWuXfQVIZBym0gEAAAAudOXKFR08ePCm20NCQuThwXhGRiMYAQAAALA8N1cXAAAAAACuRjACAAAAYHkEIwAAAACWRzACAAAAYHkEIwAAAACWRzACAKTZsWPH1LdvX5UoUUI+Pj7KmzevatSooY8++kgXLlyw7xcSEiKbzSabzaZs2bKpcuXK+uabb1Jsu9GjQ4cOt6xh7dq18vDwUMWKFe1tTz31lOrXr3/D/VevXi2bzabt27en2FauXDn16NHjhsfNnDlT3t7eOnny5G1+KpLNZtO333572/0AAJkHwQgAkCYHDhxQpUqVtHTpUr3xxhvasmWLfvvtN7388statGiRfvnlF4f9R48erZiYGG3ZskUPPPCAWrZsqXXr1mnTpk2KiYlRTEyM5s2bJ0mKioqyt7377rs3reHMmTNq166d6tSp49DeuXNn/fzzzzpy5EiKY6ZNm6YqVaqofPnyKbZ17txZc+bMUUJCwg2Pa9SokXLnzp2qnw8AIGshGAEA0qRnz57y8PDQ77//rhYtWqhMmTIqXry4GjdurMWLF+upp55y2D979uzKly+fSpUqpcmTJ8vX11fff/+98uTJo3z58ilfvnzKmTOnJCk4ONjeFhgYeNMaevToodatW6t69eoO7U8++aTy5Mmj6dOnO7THx8frm2++UefOnW/YX9u2bZWQkGAPaNdER0drxYoV9uM++ugjhYaGysvLS2FhYZo5c6Z935CQEElS06ZNZbPZ7N9L0sKFC1W5cmX5+PioePHiGjVqlK5cuXLT1wcAuHsIRgAAp8XGxmrp0qXq1auXsmXLdsN9bDbbTY/38PCQp6enEhMT01zDtGnTdODAAY0YMeKG/bdr107Tp0/X9fcx/+abb5SUlKRWrVrdsM/cuXOrcePGmjp1qkP79OnTVahQIT3++ONasGCB+vbtq5deekl//vmnunfvro4dO2r58uWSpE2bNtnri4mJsX+/evVqtWvXTn379tWuXbs0ZcoUTZ8+Xa+//nqafwYAgPRDMAIAOG3fvn0yxigsLMyhPXfu3PL395e/v78GDRp0w2MTExM1duxYnT17VrVr107T8+/du1eDBw/Wl19+KQ8Pjxvu06lTJ+3fv18rV660t02bNk1PP/30LUehOnfurBUrVig6OlqSZIzRjBkz1L59e7m5uWn8+PHq0KGDevbsqVKlSql///5q1qyZxo8fL0nKkyePJClHjhzKly+f/ftRo0Zp8ODBat++vYoXL67HHntMr732mqZMmZKmnwEAIH0RjAAA6Wbjxo3aunWrypYtq0uXLjlsGzRokPz9/eXn56c333xT48aNU8OGDW/b57Wg5e/vrx49eigpKUmtW7fWqFGjVKpUqZseV7p0aUVERNhHf/bt26fVq1ffdBrdNY899pgKFSqkadOmSZKWLVumQ4cOqWPHjpKk3bt3q0aNGg7H1KhRQ7t3775lv9u2bdPo0aMdXk/Xrl0VExPjsFAFAMA1bvxnNgAAbqFEiRKy2WyKiopyaC9evLgkydfXN8UxAwcOVIcOHeTv76+8efPecqrd9bZu3Wr/OiAgQOfOndPvv/+uLVu2qHfv3pKk5ORkGWPk4eGhpUuX2keiOnfurBdeeEGTJ0/WtGnTFBoaqlq1at3y+dzc3NShQwfNmDFDI0eO1LRp0/Too4/aX1taxcfHa9SoUWrWrFmKbT4+PnfUNwDgzjFiBABwWq5cufTYY4/pgw8+0Pnz51N1TO7cuVWiRAnly5cv1aFIuhrCrj2Cg4MVEBCgHTt2aOvWrfZHjx49FBYWpq1bt+rBBx+0H9uiRQu5ublp1qxZ+uKLL9SpU6dUPXfHjh11+PBhzZ8/XwsWLHAYZSpTpozWrl3rsP/atWsVHh5u/97T01NJSUkO+1SuXFlRUVEOr+faw82N/44BwNUYMQIApMmHH36oGjVqqEqVKho5cqTKly8vNzc3bdq0SXv27NH999+fIc/r5uam++67z6EtODhYPj4+Kdr9/f3VsmVLDRkyRHFxcbe9J9I1xYoVU+3atdWtWzd5e3s7jPIMHDhQLVq0UKVKlVS3bl19//33mj9/vsPy5CEhIVq2bJlq1Kghb29vBQUFafjw4XryySdVpEgRPfPMM3Jzc9O2bdv0559/asyYMWn/gQAA0gV/ogIApEloaKi2bNmiunXrasiQIapQoYKqVKmi999/XwMGDNBrr73m6hIlXZ1Od/r0adWrV08FChRw+rjWrVs7THVr0qSJ3n33XY0fP15ly5bVlClTNG3aND3yyCP2fSZMmKCff/5ZhQsXVqVKlSRJ9erV06JFi7R06VI98MADqlatmt555x0VLVo03V4rACDtbOb6dUwBAAAAwIIYMQIAAABgeQQjAAAAAJZHMAIAAABgeQQjAAAAAJZHMAIAAABgeQQjAAAAAJZHMAIAAABgeQQjAAAAAJZHMAIAAABgeQQjAAAAAJZHMAIAAABgef8HWA2Jk61Jt7wAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "from sklearn.metrics import confusion_matrix\n", + "import pandas as pd\n", + "\n", + "# Assuming df is your DataFrame\n", + "\n", + "# True labels and predictions\n", + "y_true = filtered_df[\"type\"]\n", + "y_pred = filtered_df[\"gpt_vote\"]\n", + "\n", + "# Compute the confusion matrix\n", + "conf_matrix = confusion_matrix(y_true, y_pred, labels=[\"leftvote\", \"rightvote\", \"tievote\", \"bothbad_vote\"])\n", + "\n", + "# Create a pandas DataFrame from the confusion matrix\n", + "conf_matrix_df = pd.DataFrame(conf_matrix, index=[\"leftvote\", \"rightvote\", \"tievote\", \"bothbad_vote\"], columns=[\"leftvote\", \"rightvote\", \"tievote\", \"bothbad_vote\"])\n", + "\n", + "# Plotting the heatmap\n", + "plt.figure(figsize=(10, 7))\n", + "sns.heatmap(conf_matrix_df, annot=True, fmt=\"d\", cmap=\"Blues\", cbar=False)\n", + "plt.title(\"Arena Human vs GPT-4V Confusion Matrix\")\n", + "plt.xlabel(\"GPT-4V Vote\")\n", + "plt.ylabel(\"Arena Human Vote\")\n", + "plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy: 0.5842911877394636\n", + "F1 Score (Macro): 0.514392348541452\n", + "F1 Score (Micro): 0.5842911877394636\n", + "F1 Score (Weighted): 0.5536668839130223\n" + ] + } + ], + "source": [ + "from sklearn.metrics import accuracy_score, f1_score\n", + "\n", + "# Assuming df is your DataFrame and it contains 'type' as true labels and 'gpt_vote' as predictions\n", + "y_true = filtered_df['type']\n", + "y_pred = filtered_df['gpt_vote']\n", + "\n", + "# Calculate accuracy\n", + "accuracy = accuracy_score(y_true, y_pred)\n", + "print(f'Accuracy: {accuracy}')\n", + "\n", + "# Calculate F1 score, here using 'macro' average to treat all classes equally\n", + "f1 = f1_score(y_true, y_pred, average='macro')\n", + "print(f'F1 Score (Macro): {f1}')\n", + "\n", + "# If you want to calculate F1 score with other averages, for example 'micro' or 'weighted', you can do:\n", + "f1_micro = f1_score(y_true, y_pred, average='micro')\n", + "print(f'F1 Score (Micro): {f1_micro}')\n", + "\n", + "f1_weighted = f1_score(y_true, y_pred, average='weighted')\n", + "print(f'F1 Score (Weighted): {f1_weighted}')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cohen's Kappa Score: 0.3442144615665177\n" + ] + } + ], + "source": [ + "from sklearn.metrics import cohen_kappa_score\n", + "\n", + "# Assuming df is your DataFrame and it contains 'type' as true labels and 'gpt_vote' as predictions\n", + "y_true = filtered_df['type']\n", + "y_pred = filtered_df['gpt_vote']\n", + "\n", + "# Calculate Cohen's Kappa score\n", + "kappa = cohen_kappa_score(y_true, y_pred)\n", + "print(f'Cohen\\'s Kappa Score: {kappa}')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy Score: 0.5842911877394636\n" + ] + } + ], + "source": [ + "from sklearn.metrics import accuracy_score\n", + "accuracy = accuracy_score(y_true, y_pred)\n", + "print(f'Accuracy Score: {accuracy}')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pearson Correlation Coefficient: 0.2880096104357029\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "# Assuming filtered_df is your DataFrame and it contains 'type' and 'gpt_vote' columns\n", + "# Convert 'type' and 'gpt_vote' to categorical codes\n", + "filtered_df['type_int'] = pd.factorize(filtered_df['type'])[0]\n", + "filtered_df['gpt_vote_int'] = pd.factorize(filtered_df['gpt_vote'])[0]\n", + "\n", + "# Now you can calculate Pearson correlation between these new integer columns\n", + "pearson_correlation = filtered_df['type_int'].corr(filtered_df['gpt_vote_int'])\n", + "print(f'Pearson Correlation Coefficient: {pearson_correlation}')\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "otask", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.13" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/arena_elo/generation_model_info.json b/arena_elo/generation_model_info.json new file mode 100644 index 0000000000000000000000000000000000000000..1c3e3775ac2e3c0985221d841a596c6e2137a556 --- /dev/null +++ b/arena_elo/generation_model_info.json @@ -0,0 +1,57 @@ +{ + "LCM": { + "Link": "https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7", + "License": "MIT License", + "Organization": "Tsinghua University" + }, + "PlayGround V2": { + "Link": "https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic", + "License": "Playground v2 Community License", + "Organization": "Playground" + }, + "PlayGround V2.5": { + "Link": "https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic", + "License": "Playground v2.5 Community License", + "Organization": "Playground" + }, + "OpenJourney": { + "Link": "https://huggingface.co/prompthero/openjourney", + "License": "creativeml-openrail-m", + "Organization": "PromptHero" + }, + "SDXLTurbo": { + "Link": "https://huggingface.co/stabilityai/sdxl-turbo", + "License": "sai-nc-community (other)", + "Organization": "Stability AI" + }, + "SDXL": { + "Link": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0", + "License": "openrail++", + "Organization": "Stability AI" + }, + "PixArtAlpha": { + "Link": "https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS", + "License": "openrail++", + "Organization": "PixArt-alpha" + }, + "SDXLLightning": { + "Link": "https://huggingface.co/ByteDance/SDXL-Lightning", + "License": "openrail++", + "Organization": "ByteDance" + }, + "StableCascade": { + "Link": "https://huggingface.co/stabilityai/stable-cascade", + "License": "stable-cascade-nc-community (other)", + "Organization": "Stability AI" + }, + "LCM(v1.5/XL)": { + "Link": "https://fal.ai/models/fal-ai/fast-lcm-diffusion/api", + "License": "openrail++", + "Organization": "Latent Consistency" + }, + "PixArtSigma": { + "Link": "https://fal.ai/models/fal-ai/pixart-sigma", + "License": "openrail++", + "Organization": "PixArt-alpha" + } +} diff --git a/arena_elo/get_latest_data.sh b/arena_elo/get_latest_data.sh new file mode 100644 index 0000000000000000000000000000000000000000..e1d9229b5267ac89d5dba442d78a3a04e7829547 --- /dev/null +++ b/arena_elo/get_latest_data.sh @@ -0,0 +1,17 @@ + +# set LOGDIR to default if not set before +if [ -z "$LOGDIR" ]; then + export LOGDIR="./vision-arena-logs" +fi +mkdir -p results + + +# # for battle data +python -m elo_rating.clean_battle_data --model_infos_file "./model_infos.json" --mode conv_release +battle_cutoff_date=`cat cut_off_date.txt` && rm cut_off_date.txt && echo "Battle data last updated on $battle_cutoff_date" + +mkdir -p ./results/latest +mkdir -p ./results/$battle_cutoff_date && mv ./clean_battle_conv_$battle_cutoff_date.json ./results/$battle_cutoff_date/clean_battle_conv.json +cp ./results/$battle_cutoff_date/clean_battle_conv.json ./results/latest/clean_battle_conv.json + +echo "Battle data last updated on $battle_cutoff_date" >> ./results/latest/latest_updated_date.txt diff --git a/arena_elo/pyproject.toml b/arena_elo/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..215c759e4659b366073cf278ee17b67e3960f181 --- /dev/null +++ b/arena_elo/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "arena_elo" +version = "0.2.35" +description = "Elo rating system for WildVision Bench Arena" +readme = "README.md" +requires-python = ">=3.9" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: Apache Software License", +] +dependencies = [ + "numpy", "prompt_toolkit>=3.0.0", "uvicorn","polyglot", "pyicu", "pycld2", "morfessor", "scikit-learn", + "pytz", "tqdm", "pandas", "plotly", "fire", "Pillow" +] + +[project.urls] +"Homepage" = "https://github.com/WildVision-Bench/Arena-Elo" +"Bug Tracker" = "https://github.com/WildVision-Bench/Arena-Elo/issues" + +[tool.setuptools.packages.find] +exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"] + +[tool.wheel] +exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"] \ No newline at end of file diff --git a/arena_elo/requirements.txt b/arena_elo/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..0b55ee1857cb4321f1d15bf82ac4d19d2f02fb9e --- /dev/null +++ b/arena_elo/requirements.txt @@ -0,0 +1,28 @@ +-e git+https://github.com/WildVision-Bench/Arena-Elo.git@9dc2fa8543a2e9eda3d5bc01c2212fdfcdd4bfb5#egg=arena_elo +click==8.1.7 +fire==0.5.0 +h11==0.14.0 +joblib==1.3.2 +Morfessor==2.0.6 +numpy==1.26.4 +packaging==23.2 +pandas==2.2.0 +pillow==10.2.0 +plotly==5.18.0 +polyglot==16.7.4 +prompt-toolkit==3.0.43 +pycld2==0.41 +PyICU==2.12 +python-dateutil==2.8.2 +pytz==2024.1 +scikit-learn==1.4.0 +scipy==1.12.0 +six==1.16.0 +tenacity==8.2.3 +termcolor==2.4.0 +threadpoolctl==3.2.0 +tqdm==4.66.2 +typing_extensions==4.9.0 +tzdata==2024.1 +uvicorn==0.27.1 +wcwidth==0.2.13 diff --git a/arena_elo/results/latest/clean_battle_image_editing.json b/arena_elo/results/latest/clean_battle_image_editing.json new file mode 100644 index 0000000000000000000000000000000000000000..532cb34d718ec89c761eb0f947f85bb1550cd040 --- /dev/null +++ b/arena_elo/results/latest/clean_battle_image_editing.json @@ -0,0 +1,1578 @@ +[ + { + "model_a": "CycleDiffusion", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707712630.872 + }, + { + "model_a": "CycleDiffusion", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707712699.668 + }, + { + "model_a": "Pix2PixZero", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707712896.0427 + }, + { + "model_a": "CycleDiffusion", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707712929.7061 + }, + { + "model_a": "CycleDiffusion", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707713147.0445 + }, + { + "model_a": "CycleDiffusion", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707713198.9284 + }, + { + "model_a": "CycleDiffusion", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707713210.1306 + }, + { + "model_a": "Prompt2prompt", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707713747.5115 + }, + { + "model_a": "PNP", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707715613.7226 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707765708.2644 + }, + { + "model_a": "PNP", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707765861.2742 + }, + { + "model_a": "PNP", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707765975.0206 + }, + { + "model_a": "PNP", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707768866.9065 + }, + { + "model_a": "SDEdit", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707771673.2989 + }, + { + "model_a": "SDEdit", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707784377.6617 + }, + { + "model_a": "SDEdit", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707784466.8915 + }, + { + "model_a": "CycleDiffusion", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707784983.9581 + }, + { + "model_a": "MagicBrush", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707785277.16 + }, + { + "model_a": "MagicBrush", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707795299.0619 + }, + { + "model_a": "MagicBrush", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707795798.752 + }, + { + "model_a": "SDEdit", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707796435.7996 + }, + { + "model_a": "SDEdit", + "model_b": "CycleDiffusion", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707797278.7369 + }, + { + "model_a": "SDEdit", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707797279.6004 + }, + { + "model_a": "SDEdit", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805086.9739 + }, + { + "model_a": "PNP", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805220.3253 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805332.6322 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805476.0509 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707818374.3438 + }, + { + "model_a": "PNP", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834631.9088 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834954.0147 + }, + { + "model_a": "Prompt2prompt", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835366.544 + }, + { + "model_a": "PNP", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835643.6178 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835789.25 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707836852.671 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707836952.6082 + }, + { + "model_a": "CycleDiffusion", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707837020.7148 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707837226.2259 + }, + { + "model_a": "Prompt2prompt", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707838166.1449 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707838405.0013 + }, + { + "model_a": "MagicBrush", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707839133.3126 + }, + { + "model_a": "Prompt2prompt", + "model_b": "InstructPix2Pix", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707839484.6824 + }, + { + "model_a": "PNP", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707850104.2499 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707851384.7689 + }, + { + "model_a": "PNP", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707851936.9466 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707852836.3291 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707852878.673 + }, + { + "model_a": "Prompt2prompt", + "model_b": "InstructPix2Pix", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707853008.1359 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707856807.6229 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707863740.3507 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707866312.1118 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707883083.3533 + }, + { + "model_a": "Pix2PixZero", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707883181.1397 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707883187.9173 + }, + { + "model_a": "PNP", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707883507.587 + }, + { + "model_a": "Prompt2prompt", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707883939.6125 + }, + { + "model_a": "Prompt2prompt", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707892689.4407 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908988.749 + }, + { + "model_a": "Prompt2prompt", + "model_b": "InstructPix2Pix", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912639.2701 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917685.9574 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707919429.336 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707932651.9192 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707932749.3107 + }, + { + "model_a": "Prompt2prompt", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933208.5797 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707945335.6341 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708031168.6838 + }, + { + "model_a": "Pix2PixZero", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708038931.5388 + }, + { + "model_a": "Pix2PixZero", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708057382.78 + }, + { + "model_a": "PNP", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708093689.8237 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708093910.4683 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708095090.8232 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708095305.4665 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140553.1694 + }, + { + "model_a": "MagicBrush", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708145512.3656 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708145724.4127 + }, + { + "model_a": "Pix2PixZero", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708146846.5098 + }, + { + "model_a": "PNP", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708189738.4864 + }, + { + "model_a": "Prompt2prompt", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708235874.9246 + }, + { + "model_a": "Pix2PixZero", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708257619.7115 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708341265.7655 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708350183.3086 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708399707.1681 + }, + { + "model_a": "PNP", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708441502.4707 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708441716.8195 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708546759.2009 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708546805.4892 + }, + { + "model_a": "Pix2PixZero", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708547082.7124 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708547166.9685 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708547293.7107 + }, + { + "model_a": "CycleDiffusion", + "model_b": "PNP", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708575046.0529 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708615466.9264 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708615516.3341 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709205399.0098 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709205767.8923 + }, + { + "model_a": "PNP", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709443700.05 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709702898.9291 + }, + { + "model_a": "CycleDiffusion", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710091925.1861 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710517781.1525 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710517859.2942 + }, + { + "model_a": "Pix2PixZero", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710535672.9791 + }, + { + "model_a": "InfEdit", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714359818.6646 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714363016.9972 + }, + { + "model_a": "InfEdit", + "model_b": "CosXLEdit", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714715956.3416 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714759928.3804 + }, + { + "model_a": "PNP", + "model_b": "InstructPix2Pix", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715246275.0118 + }, + { + "model_a": "SDEdit", + "model_b": "CosXLEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715247590.2235 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715406266.2562 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715406354.5284 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715406371.8227 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715406418.5066 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1715406449.9401 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715406466.5778 + }, + { + "model_a": "InfEdit", + "model_b": "CycleDiffusion", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715620708.6361 + }, + { + "model_a": "Prompt2prompt", + "model_b": "CosXLEdit", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715621013.5373 + }, + { + "model_a": "MagicBrush", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715661224.0507 + }, + { + "model_a": "SDEdit", + "model_b": "PNP", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661259.6143 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661288.6018 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715661310.3621 + }, + { + "model_a": "CosXLEdit", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715718742.1258 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715718773.1054 + }, + { + "model_a": "SDEdit", + "model_b": "CosXLEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715718785.2832 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715718804.143 + }, + { + "model_a": "InfEdit", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715718826.0248 + }, + { + "model_a": "InfEdit", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715718869.0041 + }, + { + "model_a": "InfEdit", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715718904.9307 + }, + { + "model_a": "Prompt2prompt", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715718933.1272 + }, + { + "model_a": "Pix2PixZero", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715718954.8497 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715718966.8633 + }, + { + "model_a": "CycleDiffusion", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719000.6673 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719019.5495 + }, + { + "model_a": "InfEdit", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719035.903 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719046.925 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719059.6291 + }, + { + "model_a": "Prompt2prompt", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715719076.6727 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719086.7836 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719109.8071 + }, + { + "model_a": "Prompt2prompt", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719122.8237 + }, + { + "model_a": "MagicBrush", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715719134.1345 + }, + { + "model_a": "SDEdit", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719153.4359 + }, + { + "model_a": "Pix2PixZero", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719160.5285 + }, + { + "model_a": "MagicBrush", + "model_b": "InstructPix2Pix", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715719171.4473 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719184.6227 + }, + { + "model_a": "CosXLEdit", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719210.0429 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719219.6447 + }, + { + "model_a": "PNP", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719237.7036 + }, + { + "model_a": "PNP", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719249.4321 + }, + { + "model_a": "Prompt2prompt", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719257.5877 + }, + { + "model_a": "CosXLEdit", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719273.7637 + }, + { + "model_a": "PNP", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719288.4629 + }, + { + "model_a": "Pix2PixZero", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719299.1712 + }, + { + "model_a": "PNP", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719306.5928 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "PNP", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715719356.0694 + }, + { + "model_a": "Prompt2prompt", + "model_b": "CosXLEdit", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719368.0491 + }, + { + "model_a": "Prompt2prompt", + "model_b": "CycleDiffusion", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719379.185 + }, + { + "model_a": "CycleDiffusion", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719389.0771 + }, + { + "model_a": "Pix2PixZero", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719397.7162 + }, + { + "model_a": "PNP", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719406.4165 + }, + { + "model_a": "Pix2PixZero", + "model_b": "PNP", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719429.1002 + }, + { + "model_a": "CosXLEdit", + "model_b": "MagicBrush", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719435.4694 + }, + { + "model_a": "PNP", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719454.4526 + }, + { + "model_a": "InfEdit", + "model_b": "PNP", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719470.154 + }, + { + "model_a": "MagicBrush", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719482.3114 + }, + { + "model_a": "SDEdit", + "model_b": "PNP", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719499.9643 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719513.7317 + }, + { + "model_a": "InfEdit", + "model_b": "PNP", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715719527.69 + }, + { + "model_a": "Prompt2prompt", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719542.751 + }, + { + "model_a": "Pix2PixZero", + "model_b": "InfEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715719560.9912 + }, + { + "model_a": "PNP", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719575.3291 + }, + { + "model_a": "PNP", + "model_b": "CosXLEdit", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719581.9552 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719591.9907 + }, + { + "model_a": "CosXLEdit", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719601.8819 + }, + { + "model_a": "InfEdit", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719612.1837 + }, + { + "model_a": "SDEdit", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719620.469 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "MagicBrush", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719627.34 + }, + { + "model_a": "MagicBrush", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719632.694 + }, + { + "model_a": "Prompt2prompt", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719652.2038 + }, + { + "model_a": "SDEdit", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719661.8855 + }, + { + "model_a": "CosXLEdit", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719677.2949 + }, + { + "model_a": "MagicBrush", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719687.3022 + }, + { + "model_a": "SDEdit", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719699.47 + }, + { + "model_a": "Pix2PixZero", + "model_b": "InfEdit", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719706.2375 + }, + { + "model_a": "CosXLEdit", + "model_b": "Prompt2prompt", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715719717.3564 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "CosXLEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715719722.5542 + }, + { + "model_a": "InfEdit", + "model_b": "InstructPix2Pix", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715719728.5417 + }, + { + "model_a": "MagicBrush", + "model_b": "SDEdit", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715719737.2385 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715815138.5243 + }, + { + "model_a": "CosXLEdit", + "model_b": "Prompt2prompt", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715815152.0033 + }, + { + "model_a": "Pix2PixZero", + "model_b": "Prompt2prompt", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715815169.0475 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "SDEdit", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715815187.1917 + }, + { + "model_a": "InstructPix2Pix", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815197.5233 + }, + { + "model_a": "Pix2PixZero", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815209.8285 + }, + { + "model_a": "CycleDiffusion", + "model_b": "MagicBrush", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815228.6736 + }, + { + "model_a": "InfEdit", + "model_b": "Pix2PixZero", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815236.3935 + }, + { + "model_a": "SDEdit", + "model_b": "PNP", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715815265.9705 + }, + { + "model_a": "MagicBrush", + "model_b": "SDEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715815278.5019 + }, + { + "model_a": "CycleDiffusion", + "model_b": "CosXLEdit", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715815294.5978 + }, + { + "model_a": "MagicBrush", + "model_b": "InfEdit", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715815325.4468 + }, + { + "model_a": "MagicBrush", + "model_b": "Pix2PixZero", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715913098.6617 + } +] \ No newline at end of file diff --git a/arena_elo/results/latest/clean_battle_t2i_generation.json b/arena_elo/results/latest/clean_battle_t2i_generation.json new file mode 100644 index 0000000000000000000000000000000000000000..aa70015940ec05b308506bc6488b598b5d3a1188 --- /dev/null +++ b/arena_elo/results/latest/clean_battle_t2i_generation.json @@ -0,0 +1,36810 @@ +[ + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707700514.3167 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707701110.2369 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707707434.9832 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707707467.1955 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707715202.5963 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707743517.6731 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707748092.0895 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707766084.3648 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707767434.9053 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707768049.9814 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707771506.9525 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707771618.8687 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707775417.8407 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707797986.5458 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707798121.0587 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707798585.0672 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707802112.022 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707802188.2116 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707802195.8893 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707803608.5079 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707803788.5758 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707803904.6801 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707803981.9232 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804176.6944 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804270.7927 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804297.8869 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804318.2703 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804334.1219 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804349.6842 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804364.5668 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804402.5063 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804439.225 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804479.6379 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804525.4779 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707804569.4346 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805195.1868 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805385.1199 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707805544.5954 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805719.6055 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707805892.4114 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806065.7944 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806165.7019 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806263.1867 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806323.9389 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806366.3154 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806417.7003 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806450.0813 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806488.8729 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707806686.917 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707807465.0362 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707807624.1859 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808070.8364 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808165.8424 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808223.4083 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808242.8483 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808305.2596 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808365.8652 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808516.9725 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707808592.0266 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707808776.6806 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707809207.6029 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707809528.5104 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707810829.8424 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707810888.7795 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707811836.4507 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812355.1994 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812463.5112 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812564.4237 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812633.8829 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812692.7422 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812731.7789 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707812790.8552 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707813196.5863 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707813385.0823 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707813688.5409 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707813789.2976 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707813801.8046 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707813968.2954 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814081.937 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814113.8281 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814208.3473 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814576.4902 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814587.9823 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814630.8904 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707814638.1626 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707814678.0675 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815069.0454 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815265.8876 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815309.9341 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815471.0053 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815496.1672 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815515.1383 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707815597.8351 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707816139.8542 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707816453.2139 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707816524.6134 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707816642.8445 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707817578.7496 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707818116.1249 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707818116.4886 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707818164.7455 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707818248.2875 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707818875.2918 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707819636.4627 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707820183.6769 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707820223.2706 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707821064.6519 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707821537.8837 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707821734.9105 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707821913.7658 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707822028.5932 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707822757.6234 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707824160.6135 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707824465.7056 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707824555.3203 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707825315.02 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707825427.9915 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707825465.0846 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707825513.2124 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707825892.4661 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707825936.2938 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707826004.6453 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707826621.1118 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707826696.6391 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707827607.6358 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707828504.1443 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707828598.2702 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707828650.1074 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829422.0774 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829424.1119 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829545.1677 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829558.9178 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829575.4002 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707829605.377 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829655.401 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829671.9346 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707829764.2277 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707830051.739 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707831907.61 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707832672.6529 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707833021.7755 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707833211.1736 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707833330.5156 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707833567.2266 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707833793.1294 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834070.3689 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834184.5449 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834553.1154 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834593.0783 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834668.474 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834707.0272 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834747.5192 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834769.6714 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834838.9968 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707834939.7331 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835013.9187 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835059.1088 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707835084.9734 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835143.1459 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835157.8035 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835271.8395 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835326.7352 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835390.8923 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835525.9638 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835615.8358 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835679.3932 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835717.0721 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835853.3267 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707835989.8838 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707836084.5509 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707836132.9464 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707836135.0599 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707836237.3436 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707836314.9641 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707836695.3278 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707837085.8896 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707839155.8114 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707840267.3024 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707840932.8884 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707841426.0637 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707841877.0338 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707841965.2778 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707842944.8061 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707843000.9465 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707843932.2112 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707844717.8943 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707845169.7825 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707846883.7945 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707847300.2803 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707847465.1349 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707847529.7859 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707847805.9735 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707847846.2293 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707848073.1447 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707848814.4383 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707849117.1598 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707850807.7058 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707850898.7895 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707851643.0572 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707852226.5775 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707852250.3298 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707852649.075 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707852658.3925 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707854112.6589 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707854223.7006 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707854439.3584 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707854467.9121 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707854493.356 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707854644.0324 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707854745.2094 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707854859.0911 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707855029.8798 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707855287.8118 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707855365.8721 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707855592.3744 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707855617.8623 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707855662.3148 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707855663.1059 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707855706.2598 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707855818.7279 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707857642.2074 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707857681.8972 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707858601.4616 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707859063.3978 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707859131.0729 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707859155.9948 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707859314.8579 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707861187.3856 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707861468.4384 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707861681.2523 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707861762.884 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707863154.0782 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707863220.9442 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707863276.7531 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707863359.6247 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707863562.8628 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707863623.6038 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707864470.9299 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707865527.8262 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707865559.346 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707866156.3368 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707866211.1115 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707867088.7165 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707867880.8468 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707869812.1567 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707870348.7079 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707870392.0767 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707870526.6392 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707870575.054 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707870639.4277 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871185.0523 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871233.4711 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871275.0108 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871354.9701 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871603.5439 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707871663.4536 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707871686.2102 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871840.7281 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707871909.9365 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707872099.4329 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707872920.9285 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707872977.5665 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707874406.8176 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707875417.714 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707875703.986 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707875827.46 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707876432.1059 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707876829.205 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707877060.6713 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707878629.8346 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707878669.1334 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707878754.5179 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707879902.0051 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707881075.7184 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707881126.4996 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707882647.3191 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707882792.5618 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707883779.6594 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707884893.6044 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707884977.6614 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707885031.1868 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707885083.3686 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707885959.1288 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707886120.659 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707886453.0044 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707887924.3075 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707888115.6326 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707888163.9161 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707888250.1088 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707888730.6572 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707888918.6905 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707889251.9249 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707889339.3417 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707889511.4789 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707889669.429 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707889749.9811 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707889822.2849 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707889889.5842 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707889977.4531 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707890036.0378 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707890352.6404 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707890503.3537 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707890577.6157 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707891026.6919 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707891203.8892 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707891238.0325 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707891817.495 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707891838.6998 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707891867.0386 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707892517.4853 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707892603.8426 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707892776.7545 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707892856.4175 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707893005.224 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707893730.3778 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707893776.5582 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707893845.3551 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707893914.9762 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707894034.0264 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707894096.279 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707895246.3966 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707895682.8333 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707896516.4099 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707897405.8243 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707897594.363 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707897777.4843 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707897851.2186 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707897859.3775 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707897981.0235 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707898245.577 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707898288.3873 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707898690.7825 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707899153.9213 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707899254.7719 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707899600.5993 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707899708.2314 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707900399.2522 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707901463.2114 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707901625.6262 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707901724.895 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707901805.2825 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707901851.0289 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707901919.5957 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707902655.3889 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707903934.1831 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707903976.2698 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707904071.9685 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707904602.7143 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707904819.7667 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905092.372 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905159.5688 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905200.2306 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905205.8817 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905273.4656 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905352.1535 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707905388.8247 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707905403.3113 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906463.3872 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906506.8365 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906531.5441 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906549.5815 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906674.4723 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906696.9843 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707906720.9523 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906789.0782 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707906831.6404 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707906871.5136 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707906901.3599 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907016.8681 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907048.7211 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907133.1481 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907147.7204 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707907185.1271 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907223.9358 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707907247.2444 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707907276.8843 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907327.1575 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907427.1745 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907625.4958 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907746.2735 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907788.1814 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907918.7149 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707907958.4932 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908048.9348 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908051.4076 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908075.9936 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908311.8685 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908325.8212 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908458.9354 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707908563.0142 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908632.1933 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908900.8127 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707908931.366 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707909339.6597 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707909562.0429 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707909679.8987 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707909685.0761 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707909778.3151 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707909998.5448 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910050.1127 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910100.9659 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910410.3087 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910587.4802 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910637.0556 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910755.6916 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910801.7684 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910811.2485 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910887.2329 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910896.9534 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707910900.8951 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707910905.4941 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910924.6707 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910982.6954 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707910991.9937 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911029.3976 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911127.9317 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707911174.7956 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911218.698 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911276.8502 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911291.0875 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911316.0308 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911331.0514 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911344.5667 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707911518.1543 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911665.1089 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707911758.3748 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912074.1765 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707912129.4306 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912176.8019 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912185.9448 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707912248.7648 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707912356.6732 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912462.9377 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912567.5438 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912649.0507 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912679.8891 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912837.4157 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912852.8909 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912910.5681 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912946.5205 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912959.2604 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707912999.2068 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707913018.0211 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913032.8311 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707913060.4585 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913061.8856 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913099.4482 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913118.919 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913119.8888 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913178.1121 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707913182.7231 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913186.2456 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913203.1502 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913208.3418 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913251.3096 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913271.6578 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707913275.4802 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913313.9229 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913357.2293 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913389.2412 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913395.0962 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913408.1319 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913445.1243 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913472.8458 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707913677.7619 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707914794.6501 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707914855.5524 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707914897.5771 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915023.9768 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915466.0448 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915532.6739 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915587.6978 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915672.2025 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915730.2925 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915777.2634 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915810.9608 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915839.1494 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915861.4564 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707915905.9859 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915915.5039 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707915916.0541 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915951.6873 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707915960.4007 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707915970.9477 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916012.5482 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916044.5465 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916065.8303 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916099.7404 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916119.8235 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916170.2499 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916184.2409 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916200.7999 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916218.6752 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916256.2347 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916277.5221 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916309.6548 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916346.9444 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916350.0651 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916386.9622 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916390.033 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916390.6858 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916446.0376 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916450.6489 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916469.5215 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916470.5667 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916505.2343 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916518.4975 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916624.0147 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916696.0474 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916735.8473 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916747.4191 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916792.382 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916810.7745 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916813.1735 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916887.1351 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707916898.5144 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707916982.3532 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917000.8087 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917036.4298 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917058.6626 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917060.2105 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917073.6256 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917085.2154 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917155.4275 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917191.3453 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917205.0975 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917235.0206 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917258.3194 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917342.1145 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917372.6977 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917385.7986 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917423.7412 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917424.2131 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917498.4327 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917531.0262 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917548.0715 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917596.2616 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917600.5537 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917655.0935 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917673.9615 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917719.7166 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707917729.4175 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917759.6363 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917804.9582 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917865.5889 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707917969.5961 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918011.8903 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918085.0867 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918131.4236 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918160.0215 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918163.8283 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918194.5629 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918221.8827 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918235.3786 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707918264.5256 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918277.8947 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918323.7305 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918332.564 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707918379.8486 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918434.8289 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707918734.8183 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919027.1236 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919054.4345 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707919144.3406 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919147.9338 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919230.7308 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919296.9083 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707919393.1404 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919478.9496 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919493.7021 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707919536.9567 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707919564.2367 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707919583.6984 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919740.9197 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707919883.6543 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707920419.1473 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707920434.6966 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707920509.1715 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707920594.0594 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707920645.8842 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707921077.823 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707921096.5352 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707921127.6203 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707921159.3097 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707921981.7617 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707922061.6904 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707922132.6713 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707922634.743 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707923032.4667 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707923073.1547 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707923142.4485 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707923251.1361 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707923992.1768 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707924165.4497 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707924275.8604 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707924316.0433 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707924413.8304 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707924458.3192 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707924738.1432 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707925003.1457 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707925076.2295 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707925129.2682 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707925550.0104 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707925615.8461 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707925642.6322 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707925766.1992 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707926618.0896 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707926694.5902 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707926790.021 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707927050.9478 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927126.2106 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707927208.069 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707927393.043 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927453.8706 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927496.8595 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927535.7321 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927615.331 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707927633.9045 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927650.8896 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927672.6334 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707927740.0537 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927758.1402 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927810.2906 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927846.7507 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927893.3725 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707927952.7473 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707928190.3431 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707928802.3991 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707929496.0313 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707929599.8263 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707930561.6607 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707931092.8987 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707931225.8171 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707931268.194 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707931887.2924 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707931888.75 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707932190.2759 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933068.2769 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933172.4871 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933217.1406 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933237.3513 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933268.7009 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933292.91 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933297.9225 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933369.0276 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933413.8632 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933431.0668 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933447.92 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933592.8238 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933643.523 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933686.1231 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933768.1406 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933803.0941 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933844.2358 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933880.1095 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707933884.089 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707933934.1742 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934023.9856 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934049.1471 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934128.2119 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934170.6913 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934267.1023 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934319.3214 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934374.2844 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934382.4736 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934500.6694 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934566.6378 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934598.3878 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934605.1143 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707934647.2204 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934695.2706 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934736.906 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707934850.4166 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707936241.0814 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707936291.0266 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707936385.9089 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707938013.3449 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707938180.4804 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707938613.6437 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707938841.3997 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707938951.4817 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707939017.3308 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939045.2476 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939335.1893 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707939380.646 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939541.333 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939641.082 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707939724.1214 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939841.1799 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707939863.0875 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939899.5396 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707939936.0293 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707940089.2411 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707940185.0653 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707940242.5355 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707940300.4272 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707940343.6813 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707940414.8563 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707940439.7377 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707941105.2771 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707941135.1485 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707941160.7901 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707941193.6775 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707941217.7381 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707941324.3807 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707941402.8543 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707941443.2223 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707941964.3088 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707942036.4955 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707942103.4557 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707942169.7327 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707942264.2183 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707942300.6322 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707942371.5746 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707942571.6778 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707942630.0493 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707943172.7209 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707944152.0658 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707944615.6625 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707945506.1476 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707948092.1905 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707949089.686 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707949135.1425 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707949281.598 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707949303.603 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707949494.8498 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707949543.3071 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707949599.1029 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707949657.3906 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707950176.7606 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707950429.6834 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707950620.6165 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707950881.5139 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707950909.097 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707950952.0049 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707951018.3882 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707951081.6152 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707951110.0858 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707951224.8171 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707951884.901 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707951962.3044 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707953806.744 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707954087.9998 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707955217.9239 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707955441.7822 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707955865.4022 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707956100.154 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707956171.0881 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707956489.8228 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707956816.0064 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707956983.108 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707957228.6115 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707957427.2669 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707957439.2736 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707957488.8019 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707957695.3719 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707957899.2597 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707958825.5013 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959005.2791 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959072.8789 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707959117.3202 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959283.7537 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707959517.4248 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959519.9556 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959602.5617 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959668.3561 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707959749.5751 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707959822.3033 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707959889.7336 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707959970.3128 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707959992.4392 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960066.9854 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960107.1791 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960257.2383 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707960280.0116 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960476.5261 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960552.5788 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960670.3518 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707960774.498 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707961245.9252 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707961439.0165 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707961551.5716 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707961628.4485 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707961785.4298 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707961956.6665 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962044.6912 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962086.5075 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962154.8799 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962229.5275 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962306.3355 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962403.6811 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962522.5521 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707962603.7058 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962763.9479 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962856.1898 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707962892.813 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707964125.4049 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707964169.0741 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707966705.091 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707966724.1749 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707966916.7014 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707967815.2925 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707968982.8117 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707969103.548 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969221.8545 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969259.4015 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969450.7528 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707969665.3351 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969670.5846 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969748.656 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969796.55 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707969932.4526 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707970385.7193 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707970425.3208 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707970472.9276 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707970503.8312 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707970525.255 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707972274.9415 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707972395.9 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707972462.121 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707972465.6562 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707972546.5605 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707972581.2215 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707974383.3476 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707974441.018 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707974600.5679 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707976631.6841 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707979936.4233 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707980270.8804 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707980272.3898 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707981908.5595 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707981954.3946 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707983689.7292 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707984025.2664 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707985171.0128 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707985495.8015 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707985600.1919 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707986326.9305 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707987318.5669 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707989144.9396 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707989216.3561 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707989423.3999 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707989478.1056 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707989604.5316 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707990265.1551 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707990333.7524 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707990374.8158 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707990391.696 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707990445.4444 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707990756.83 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707990757.2978 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707990932.9713 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707991096.1999 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707991162.0321 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707992030.5292 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707992073.6867 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707992136.65 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1707992209.4205 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707992310.9014 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707995128.8881 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707996569.4656 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707996881.5308 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707996925.6111 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707996970.7215 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707997020.0792 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707997022.6461 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707998799.4084 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1707999877.7348 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708000822.1476 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708002809.7539 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708003720.8431 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708003807.5267 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708003850.4119 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708003907.1458 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708005395.3762 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708005524.2485 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708005643.0993 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708005691.4589 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708006921.3169 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007031.2278 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007084.9317 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007169.3253 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708007215.3003 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007254.5339 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007292.3956 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007326.5783 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007411.6694 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007479.5755 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007559.7187 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007640.8531 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007824.5635 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708007911.4417 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708008022.0812 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708008304.3283 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708008493.171 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708008606.502 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708009363.8241 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708009519.9965 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708009605.0407 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708009855.0076 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708009925.4483 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708010303.5563 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708010563.9384 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708010909.8944 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708012564.8519 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708012593.424 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708012630.3344 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708012755.1099 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708012807.9212 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708014058.736 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708014155.9281 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708014995.8236 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708015893.8303 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708016214.6399 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708016573.8328 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708016674.2569 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708016711.8716 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708016843.4831 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708016913.4118 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708016917.5447 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708016967.5059 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708017618.3768 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708017680.9518 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708017789.0711 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708017830.1909 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708017879.2762 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708018045.6918 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708018332.9514 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708018608.3155 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708018705.3157 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708019436.3054 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708019484.8673 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708019600.7404 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708019667.5597 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708019734.1978 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708019952.4912 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708020007.0338 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708021280.5687 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708021364.4024 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708021396.0419 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708022277.8721 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708023219.4536 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708023736.4653 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708024331.3717 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708026562.9225 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708026693.4445 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708026800.3382 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708026862.5577 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708026938.8916 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708027019.5145 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708027078.7138 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708031098.3078 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708031341.1596 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708031374.8991 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708031417.0021 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708031538.3038 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708032188.7187 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708032342.5879 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708032420.9835 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708033022.7451 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708034090.3644 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708034113.0241 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708034291.5548 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708035819.7005 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708035875.1149 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708035917.9152 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708036289.7746 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708036362.6679 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708036453.317 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708036977.7648 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708037049.0098 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708037080.6835 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708037169.8772 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708037232.9368 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708037738.6347 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708037896.7138 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708037988.3194 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708038099.5572 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708038288.3241 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708038557.0852 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708039031.0195 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708039662.0893 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708042353.4358 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708044416.6951 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708044460.7379 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708044470.7821 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708044507.4909 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708044547.7829 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708044559.2364 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708046510.2161 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708046662.7907 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708046769.7022 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708046780.3516 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708047415.4947 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708048614.887 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708049331.8461 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708049392.378 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708049423.8199 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708049512.7601 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708049575.1588 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708050251.9377 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708050293.4472 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708050308.4985 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708050462.3975 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708050490.8809 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708050498.2108 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708051255.8866 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708053435.384 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708053546.2222 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708053599.0177 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708053966.9856 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708056214.2996 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708057229.1437 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708057322.8692 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708059311.1176 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708059391.5785 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708066612.8351 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708067096.0004 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708067136.5425 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708067232.3091 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708067415.799 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708067574.9226 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708067747.8749 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708068176.8901 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708068914.1969 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708068962.9907 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708069003.5298 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708069143.4702 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708069166.9656 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708069330.803 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708069568.027 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708069851.9453 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708070022.0949 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708072187.4975 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708073481.1461 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708073651.7052 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708073653.0893 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708073709.293 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708073728.9009 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708073806.5067 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708073960.942 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708074154.2882 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708074396.1484 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708074610.5856 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708074679.1138 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708075062.671 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708077280.5931 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708077322.0512 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708078267.7004 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708078294.7229 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708080014.8626 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708080718.6937 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708081723.1128 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708081849.7331 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708082357.1385 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708082676.9847 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708084071.5593 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708084233.6032 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708084272.1678 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708084306.2933 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708084329.5404 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708084422.5459 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708084448.0676 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708084545.8871 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708085031.092 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708086036.0558 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708087431.6381 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708087504.3381 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708087677.8589 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708088182.024 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708088281.2235 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708088922.5211 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708090426.5116 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708091236.8975 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708091413.819 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708091496.0926 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708091866.6917 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708092044.7034 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708092811.4154 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708093457.1153 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708093518.1758 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708093822.1669 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708093946.8994 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708094792.9638 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708094833.2447 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708094914.4639 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708094981.2979 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708094985.2131 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708095768.8978 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708095886.5269 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708095900.0872 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708095914.3337 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708095954.1028 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708095974.1364 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708096033.0511 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708096038.555 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708096097.7387 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708096182.5309 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708096237.6472 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708096327.0022 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708097240.8207 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708097419.7711 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708097509.882 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708097525.0774 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708097568.222 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708097736.7028 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708098813.7485 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708098896.0644 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708100906.6197 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708100958.2986 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708101945.2317 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708103712.9627 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708104808.4396 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708104877.5801 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708104941.7841 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708105042.3432 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708105225.2412 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708105482.9868 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708105534.6317 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708106090.0451 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708106299.9794 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708106918.9237 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708106957.868 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708107205.7853 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708107337.0744 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708107438.9079 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708107810.5795 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708107903.9406 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708108004.4948 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708108073.6932 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708108224.9075 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708108273.6716 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708108622.5794 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708109377.927 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708109574.2361 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708109787.5966 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708109820.4291 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708109964.8059 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708109969.4701 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708110086.0938 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708110359.8645 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708110478.6266 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708110516.5118 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708110722.0719 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708110894.43 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111110.5333 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111157.5813 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111208.8895 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111209.35 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111276.261 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111345.4691 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111377.3504 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111412.456 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111425.0459 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111522.5294 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111544.3402 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111584.5444 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111635.4562 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111740.1655 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111831.8014 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111843.4166 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111871.713 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708111945.6409 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112033.1376 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112061.7656 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112206.2574 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112206.7184 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112236.3926 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112257.9906 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112349.9469 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112428.7129 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112455.5679 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112666.5624 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112709.1203 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112756.4458 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708112810.0617 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112852.042 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112870.2931 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708112919.3083 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708113007.7759 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708113097.3553 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708113376.2534 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708113377.609 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708113429.7074 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708113468.8579 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708113719.0232 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708113774.9737 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708113856.5251 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708115064.8115 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708115072.4056 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708115116.4138 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708115163.8253 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708115274.4666 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708115365.4239 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708115700.4346 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708115781.6682 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708116986.3445 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708117034.5467 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708117316.253 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708117391.8395 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708117414.9773 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708117719.1624 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708117879.0764 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708118080.6109 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708118373.9448 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708120703.142 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708120778.5357 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708120816.2409 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708121482.9907 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708122033.6099 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708122072.9567 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708122197.6695 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708122265.2623 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708122285.9708 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708122851.3515 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708122975.753 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708123295.3367 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708123837.8162 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708123912.9557 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708124121.4218 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708124189.9424 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708124224.6943 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708124257.7295 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708125488.1034 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708125496.9753 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708126434.3092 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708126483.5169 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708126533.5348 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708127737.1941 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708127774.1258 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708128506.8302 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708128599.9542 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708130890.3452 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708132065.7242 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708132126.7234 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708132196.5208 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708132467.7891 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708132626.6819 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708132722.3279 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708132794.4495 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708133220.6622 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708133379.774 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708133706.5342 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708133791.5656 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708134194.5586 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708135690.3016 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708135773.4307 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708137137.0176 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708137200.7484 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708137255.2448 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708137646.0651 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708137694.589 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708137764.5412 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708137828.0466 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708138110.5944 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140073.0293 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140088.8806 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708140139.0831 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140145.8505 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708140173.3316 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140179.8027 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140210.5382 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140213.5953 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140260.8624 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708140316.1129 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140360.1673 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708140813.5111 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708141183.215 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708141891.6501 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708141971.4729 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708142581.4854 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708142676.2195 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708143073.5683 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708144618.1496 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708144678.6238 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708144779.724 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708144873.941 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708145293.1434 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708146014.328 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708146068.0118 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708146433.888 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708146806.7443 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708147115.7163 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708147988.779 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708148079.6994 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708148249.8614 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708148339.2037 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708149049.8244 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708149487.2149 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708149800.2536 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708151672.2439 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708151699.6482 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708151728.7431 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708151750.0684 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708151795.5923 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708152611.4998 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708155969.2393 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708156027.0017 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708156082.7118 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708156965.8117 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708157931.6349 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708160490.8999 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708160967.0389 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161072.7771 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161164.9265 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161175.3145 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161250.7839 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161344.4487 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161395.1099 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161470.5154 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161493.8058 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161578.5919 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161685.3502 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161744.4562 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708161830.4571 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708162423.7927 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708162788.7029 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708162927.1516 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708163762.7364 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708164361.7048 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708165929.3793 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708167159.6451 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708167322.5777 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708168120.0766 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708168339.0175 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708168390.2853 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708169256.1304 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708169315.3648 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708171191.8854 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708171290.2203 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708172121.6343 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708172173.8632 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708173393.5117 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708173733.9815 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708175751.6607 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708175862.4882 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708175892.3837 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708175956.3045 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708176181.9258 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708176239.4311 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708176299.6426 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708177136.3304 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708177743.2047 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708178223.6546 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708178687.4497 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708178759.5559 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708179173.7792 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708180805.5876 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708180857.4361 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708180910.5907 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708180954.3089 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708181131.326 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708181486.732 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708181661.368 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708182592.0714 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708182880.7531 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708182981.589 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708183018.8662 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708183057.7031 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708183136.0475 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708184715.4283 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708184823.9236 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708186992.1392 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708187497.8336 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708187571.9101 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708187616.6648 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708187693.4713 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708187798.4201 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708187878.106 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708188023.1779 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708188113.7851 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708189180.9089 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708189255.4699 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708189289.4887 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708189294.5574 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708190594.3693 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708190776.3361 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708191033.4194 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708191440.1808 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708191548.789 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708191711.7215 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708191961.5556 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708192669.4533 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708194178.0538 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708194330.5225 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708194796.3463 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708195490.5541 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708195588.4757 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708196360.2703 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708196373.5338 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708197127.813 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708197187.7383 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708197269.4851 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708197462.4622 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708197646.0736 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708197698.7769 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708199505.5575 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708199563.83 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708199606.1485 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708199658.9069 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708199730.0171 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708199779.1095 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708199862.3877 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708199947.113 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708200509.7514 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708200639.7706 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708202963.0247 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708204846.6768 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708205029.1505 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708205117.065 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708205616.8439 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708205694.4186 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708205790.1749 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708207080.3918 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708207112.5804 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708207764.321 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708207946.3367 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208000.0355 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208060.3709 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208088.2458 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208157.9119 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208636.4282 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208659.4342 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208739.3584 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208758.6543 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208830.2121 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708208916.3004 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708208982.1274 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708209035.5367 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708209086.2585 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708209403.9427 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708209595.737 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708212075.3529 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708212142.3537 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708212362.1027 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708212455.3279 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708212522.8349 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708212592.8628 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708213525.5828 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708214674.8215 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708216260.4941 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708216295.9763 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708216484.3449 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708216792.5555 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708216881.4459 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708217654.5956 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708217824.3497 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708218049.1273 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708218228.7928 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708220709.2834 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708220749.2794 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708223966.7437 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708224912.2474 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708224994.7921 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708225070.353 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708225127.6709 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708225156.7352 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708225247.4943 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708225331.5296 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708226049.8169 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708227409.6176 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708229720.0179 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708231959.8788 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708233641.0849 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708233936.715 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708233960.532 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708234167.2376 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708234442.478 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708234578.5545 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708234685.9085 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708235094.6835 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708235600.3159 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708235648.6368 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708235692.6976 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708235735.0741 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708235992.4909 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708236964.0669 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708237052.6045 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708237167.5794 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708237665.8684 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708238029.9722 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708238144.4689 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708239433.5071 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708241005.1807 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708242233.7412 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708246818.2547 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708248272.2769 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708249187.0495 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708255788.2223 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708256870.3964 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708257722.1518 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708257863.252 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708258111.6728 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708258123.808 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708258129.0788 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708258363.1549 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708258382.1352 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708258483.7652 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708259385.1642 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708259466.6425 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708259566.9631 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708259653.5893 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708259991.7081 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708260002.2506 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708260576.1787 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708260579.7168 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708260586.0516 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708260680.3084 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708260765.3981 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708260777.7795 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708261136.1138 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708261293.3588 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708261386.4392 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708261654.5818 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708261771.1698 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708261997.0189 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708262073.3028 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708262213.5624 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708262642.1204 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708262672.6433 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708262723.9227 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708262780.1344 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708262878.5661 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708262928.1139 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708262979.526 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708263334.0474 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708264529.2548 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708266597.9844 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708268215.4201 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708268272.7549 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708269208.6405 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708269271.4767 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708269482.187 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708270156.857 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708273878.1751 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708273957.6425 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708273959.5278 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708274006.6101 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708274254.2376 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708274333.8459 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708276828.19 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708276873.5007 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708276982.3282 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277043.704 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277104.4539 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277111.757 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277154.2405 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277196.5891 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277519.9543 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708277585.2747 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708277668.2427 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708277717.2005 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708277910.5217 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708278923.5015 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708280351.4132 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708281043.2273 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708281084.6966 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708281510.9501 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708283522.8397 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708283900.5962 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708283967.9701 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284003.6521 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284136.7046 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284173.3872 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284209.801 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284295.3183 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284352.2413 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284512.1361 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284569.9599 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284661.0038 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284707.1979 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284747.5545 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284786.262 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284811.6143 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284826.019 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284857.6008 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284877.3336 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284925.4894 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708284926.2498 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708284992.4334 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285144.8357 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285172.7899 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285176.3318 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285226.2026 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285230.0245 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708285251.6899 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285277.3227 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708285351.5329 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285369.7405 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285466.8213 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708285478.6473 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285494.7509 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285514.4219 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285583.0465 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708285621.2876 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285638.268 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285673.0919 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285723.5382 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285755.0262 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708285765.2709 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285798.6103 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285873.7166 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285886.7408 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285936.4984 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285965.3547 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708285998.8217 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286081.7405 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286160.5468 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286162.5817 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286250.7938 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708286292.2898 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286439.8234 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286460.8979 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286477.823 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708286650.052 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286696.2777 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708286747.041 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286760.1765 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286859.6768 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708286949.4869 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708287041.6803 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708287126.6675 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708289643.0085 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708289717.8364 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708291591.2884 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708293645.4802 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708294589.7471 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708294771.0958 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708294981.7821 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295057.7197 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708295107.3454 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295148.3313 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295175.4591 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295193.707 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295233.6539 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708295255.9021 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708295306.5686 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708295429.4082 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295605.2575 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708295726.1388 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708296763.2981 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708296795.1968 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708297030.3083 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708297141.8407 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708297219.7788 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708298646.8166 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708298730.4007 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708301552.892 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708302116.1866 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708302551.0717 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708302935.5025 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708303060.2346 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708303167.2704 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708303258.4105 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708305857.2171 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708307457.8442 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708308363.8651 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708308438.1661 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708308583.4457 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708308636.5225 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708308829.5762 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708308945.8548 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708309014.2343 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708309032.1446 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708309151.5775 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708310360.2759 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708310571.8526 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708311567.845 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708311755.6812 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708314853.3803 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708314870.1826 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708314884.0823 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708314941.4671 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708315717.633 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708316127.7112 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708316196.8172 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708316226.831 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708316227.9537 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708318466.2588 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708318513.611 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708318577.6952 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708318616.5885 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708318640.7817 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708318722.1609 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708319454.2198 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708320502.3499 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708320585.8314 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708320654.104 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708320684.8391 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708322869.549 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708323041.2456 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708323210.5873 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708323288.0819 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708323333.5338 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708323377.5511 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708323431.6197 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708323716.2928 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708323755.1567 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708323838.289 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708327110.1467 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708327390.9441 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708327450.7489 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708328064.4083 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708328263.1336 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708328734.1267 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708329699.3768 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708331022.0087 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708331540.0262 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708332107.916 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708332677.6709 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708333159.8028 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708333335.0557 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708333400.5451 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708333467.247 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708333489.0349 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708333701.2765 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708334015.77 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708334850.6207 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708334958.8985 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708335125.8436 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708335165.8328 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335208.1935 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335273.3737 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335402.0143 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708335458.0508 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335460.4383 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335533.0273 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335581.083 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335659.5869 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335728.3178 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708335803.1856 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708336711.4729 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708338640.8676 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708340756.0458 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708341055.5629 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708341135.6561 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708341986.5639 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708343169.6965 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708345769.1576 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708346061.0247 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708347115.2369 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708347182.9832 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708348038.7305 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349081.3707 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349189.5958 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349255.2076 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349287.9766 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349358.4824 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349404.6008 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349500.5487 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349773.133 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349872.8135 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708349884.4717 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708350052.1819 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708350259.1582 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708350308.4317 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708350993.0178 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708351802.6755 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708352325.9342 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708352762.4444 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708352866.3974 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708355316.778 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708357756.8134 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708358284.9161 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708359803.1839 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708360975.5432 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708361025.6043 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708361597.214 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708362143.1035 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708362200.1762 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708362267.112 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708362321.7929 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708362370.8256 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708362446.1154 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708362574.2275 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363013.8443 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363016.4916 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708363042.619 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708363092.5128 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363095.9158 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708363152.3709 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363170.2848 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363219.3472 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363306.8638 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708363332.1521 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363523.4473 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708363526.6666 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708363625.042 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708363659.907 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708364061.3263 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708364375.1475 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708364410.5308 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708364482.603 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708365744.2785 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708365822.8718 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366468.6777 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366591.1468 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366695.2628 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366837.1298 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366877.2988 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366940.2037 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366962.4288 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708366995.3779 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708367035.3155 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708367058.6757 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708367130.4575 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708367231.3857 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708367238.0157 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708367259.9364 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708367339.3387 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708368110.8263 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708368402.4106 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708368500.8949 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708368579.9913 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708368687.6498 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708368748.6354 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369054.0756 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369061.195 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708369118.2079 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369294.7455 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369452.4548 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369454.8254 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369798.4616 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369858.9204 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369877.1961 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708369894.9433 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708369920.4755 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708369965.6359 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708369978.8324 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708370114.6649 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708370120.2894 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708370153.8069 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708370170.713 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708370245.9486 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708370303.1676 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708370354.7904 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708370497.8506 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708370970.2967 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708371066.168 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708371146.421 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708373035.0333 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708373167.6195 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708373210.4827 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708373244.5799 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708374902.2794 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708374922.9563 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708374968.333 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708374996.5417 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708376393.6379 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708376469.3833 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708376483.4817 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708376505.4904 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708376637.2712 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708376708.5498 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377012.9002 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377190.6497 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708377263.2326 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377322.8283 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708377454.1211 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377606.6482 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708377662.2339 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377663.376 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377693.3625 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377738.9321 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708377775.4047 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708378024.9113 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708378497.6187 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708378782.0179 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708379896.9003 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708380005.1271 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708380741.2885 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708380780.5281 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708380851.263 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708380886.2402 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708381057.915 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708381157.7374 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708381275.5886 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708381514.3737 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708382116.3649 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708382187.8641 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708382522.1443 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708382577.2131 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708382783.891 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708383266.8923 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708383679.3259 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708383801.1579 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708383883.8896 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708386412.9605 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708386451.5744 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708386529.7209 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708386816.5677 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708386859.69 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708386920.0501 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708389382.6804 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708389630.5809 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708389746.0535 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708390389.7957 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708391662.7332 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708391729.0193 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708391797.465 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708393837.6056 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708394242.3448 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708396973.3268 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708399516.8585 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708399552.8241 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708400928.202 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708401658.6915 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708401742.0246 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708403423.4615 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708403475.7234 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708410140.4031 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708411004.3163 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708415907.1785 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708424217.9809 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708427413.7601 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708427460.3247 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708427621.2687 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708431548.7218 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708432400.6284 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708432944.6184 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708433403.8433 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708435106.2485 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708435761.4821 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708435832.4099 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708435933.896 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708435982.8254 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708436057.4199 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708436072.4144 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708437217.6666 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708438008.9308 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708438706.2634 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708438934.2953 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708439287.7758 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708439923.647 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708439999.0908 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708440087.5812 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708440211.1574 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708440263.5249 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708440529.2866 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708440540.146 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708440570.9386 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708440581.3383 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708446302.1591 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708446447.9611 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708446534.9081 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708446691.7238 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708447090.3047 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708447134.701 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708448397.3825 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708448453.7822 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708449150.989 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708449822.1865 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451071.1047 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708451109.781 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451168.6771 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451354.7294 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451443.1307 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451555.2492 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451614.3335 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708451660.6139 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708455689.99 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708456610.6148 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708456635.0806 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708456656.3759 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708460422.3079 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708460453.2486 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708460518.2144 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708460530.1115 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708460576.3036 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708460682.5018 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708460773.542 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708462007.7336 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708467464.9803 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708467629.6663 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708467757.5904 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708469305.5619 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708469369.8344 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708469454.158 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708492727.0962 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708494073.3912 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708500510.1275 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708501238.3762 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708501978.5955 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708502049.0364 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708502446.1358 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708502476.4325 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708502569.5244 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708503285.9456 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708506880.0731 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708506891.3308 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708507015.7228 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708510308.1235 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708510390.7787 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708510567.3504 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708510796.9968 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708512654.8254 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708512714.6641 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708512873.8208 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708521501.0101 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708523002.6543 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708523166.2856 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708523213.0339 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708523354.0239 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708523408.5461 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708525578.5096 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708527186.4533 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708527288.0522 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708527405.0852 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708527544.7905 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708527683.6686 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708528060.1154 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708528109.8846 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708528149.3915 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708531058.1268 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708533349.9998 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708533693.5785 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708536698.5217 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708536778.4891 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708542820.3399 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708543759.1964 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708543935.9475 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544051.0766 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544286.8761 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544324.9262 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544362.0311 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544398.7937 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544483.1499 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708544736.5525 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708545686.099 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708546049.1243 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708546336.8445 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708546394.5597 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708546583.8932 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708546736.4465 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708550692.9455 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555299.2304 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555322.3069 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555332.8536 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555369.7927 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555375.0179 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555390.7722 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555407.6585 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555455.7676 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555540.3183 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555622.3113 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555680.0043 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555741.5983 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555754.4756 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555766.3914 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555808.6812 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555844.313 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708555879.5878 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708555929.4494 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708556236.0645 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708556276.7634 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708557228.1222 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708557348.9605 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708557445.204 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708557683.2385 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708557844.1544 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558239.2106 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558281.3799 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558378.4497 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558468.1559 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558517.9511 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558639.338 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708558665.5547 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708558672.1173 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708558769.4421 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708558830.2085 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708559222.9563 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708559260.1947 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708559342.9245 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708559432.6408 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708559502.3018 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708559557.7802 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708559641.5331 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708559766.8528 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708559840.0761 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708559855.5324 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708559906.3197 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708560207.2608 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708560245.9443 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708560287.0314 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708560321.3302 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708560710.8907 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708560883.2244 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708561160.9518 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708561218.3612 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708561273.2749 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708561401.4796 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708561482.1339 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708561777.9194 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708562012.8101 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708562102.8617 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708562470.6537 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708563249.3474 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708563649.9979 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708563681.985 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708563779.2774 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708563900.7433 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708563967.4606 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708563975.8202 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708564065.7244 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708564113.2155 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708564129.8582 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708564180.8513 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708565581.949 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708565663.7241 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708565927.8306 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708565940.4723 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708566178.8762 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708566214.2443 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708566288.2316 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708566370.2229 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708566456.7985 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708567167.531 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708567321.5811 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708567369.3163 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708567410.3654 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708567486.4537 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708567515.1841 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708567576.7993 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708567610.3707 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708575342.9572 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708575377.5081 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708575432.492 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708575509.9167 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708576126.6557 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708576274.3877 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708576787.3784 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708576834.0015 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708576837.6574 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708582281.6752 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708582458.315 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708582577.2366 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708582649.752 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708582871.3593 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708585499.3239 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708585829.1424 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708585834.6547 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708585879.3489 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708591996.2861 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708594442.1268 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708595941.2272 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708597079.3539 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708597142.0053 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708598512.7724 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708598687.005 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708598747.3634 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708598843.9071 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708598997.1236 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599034.0614 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599127.5535 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708599428.0948 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599524.2169 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599650.251 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599744.7816 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599864.6591 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708599943.8829 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708604213.5458 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708604306.7872 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708608110.2911 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708608204.3376 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708608255.591 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708608348.9939 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708608607.0221 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708608720.9098 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708610706.6685 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708611742.5666 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708611814.9398 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708611900.228 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708612032.8531 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708612158.8009 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708612236.9362 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708612401.5952 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708612735.9478 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708613064.4983 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708613104.1133 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708613169.1664 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708615318.9111 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708616953.0218 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708617001.895 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708618754.3837 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708619921.9768 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708626676.6687 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708627035.4957 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708627565.106 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708627690.5477 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708627949.906 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708628193.6998 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708628430.806 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708628434.1998 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708628526.3597 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708630514.9041 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708630693.305 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708630785.4482 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708631112.7006 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708631193.1744 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708632812.9748 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708632842.611 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708632893.8915 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708632937.6854 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708633090.4497 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708633127.4506 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708633730.2183 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708633836.6691 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708634773.8 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708636469.631 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708636569.5302 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708636710.2099 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708637202.6082 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637241.9801 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708637279.3201 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708637329.1681 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708637393.7878 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708637419.3971 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637422.4796 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708637462.3202 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637507.1802 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637524.3502 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637572.4317 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637643.1675 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637733.8037 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637769.9441 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637797.4111 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637917.018 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708637965.4844 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708638623.1293 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708638676.9759 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708638731.559 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708639391.3383 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708639460.3853 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708640818.2411 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708640965.1792 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708641143.0325 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708641185.0079 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708641259.4363 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708641302.2163 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708641316.1147 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708641360.4213 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708641425.8818 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708641502.2228 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708641591.6468 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708641655.3866 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708642061.8969 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708645597.9689 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708645656.8622 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708645673.275 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708645677.5233 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708645768.7837 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708645804.4571 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708645872.5776 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708645912.7732 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708650499.9208 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708650714.4005 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708651146.6805 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708652044.7348 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708652192.5887 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708652337.841 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708652521.8235 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708652972.699 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708652996.7585 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708653030.241 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708653043.247 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708653089.7241 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708653147.5538 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708653737.2963 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708655365.0573 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708655409.7099 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708655472.1869 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708657264.2491 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708657337.81 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708657418.3128 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708658175.2229 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708658543.8191 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708658640.1331 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708663371.6458 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708663453.5715 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708663589.2427 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708663675.876 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708663739.4053 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708667931.5671 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708668238.0914 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708668281.3665 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708671319.3641 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708678619.135 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708685618.145 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708685868.7815 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708702523.1323 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708702567.6954 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708703817.6915 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708703865.1439 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708704209.9375 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708706236.3181 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708706421.7442 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708707082.2419 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708707390.1182 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708712954.7437 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708713016.602 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708713063.5799 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708713125.041 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708721418.2078 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708721557.2308 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708724108.2892 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708724196.5633 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708724487.9269 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708724775.433 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708729071.2721 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708729146.1269 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708729188.625 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708729268.3783 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708729323.5689 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708730964.1093 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708732530.4706 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708751838.0707 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708754634.0829 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708767180.5174 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708770643.2408 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708772688.3741 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708772772.6842 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708774783.9226 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708776536.7927 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708785232.0712 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708785317.6933 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708786356.9968 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708786424.4017 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708786470.2183 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708786492.2535 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708786518.9756 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708799029.591 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708799169.7856 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708799227.4232 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708799238.8801 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708799299.8139 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708811419.8218 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708812784.1763 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708813255.8502 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708816627.7963 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708820536.9722 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708820622.9847 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708820703.2928 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708820759.0888 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708820879.2733 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708820939.5628 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821057.9919 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821203.9242 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821248.8688 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821351.1475 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821390.2767 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821487.5262 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708821542.0999 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708837351.1642 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708841796.7056 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708841864.7866 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708841901.0472 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708841969.1219 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708851378.3505 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708851457.7966 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708851805.3758 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708856918.7634 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708860611.2238 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708860683.5123 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708863308.6302 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708867017.2247 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708870503.9182 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708873858.7489 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708873935.9567 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708874475.3014 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708874690.6548 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708874787.329 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708874862.1536 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708884744.9657 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708885428.2142 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708885478.2985 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708887948.3273 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708887999.3935 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708892360.4282 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708892427.6544 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708892762.8291 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708896541.4918 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708896807.8952 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708896948.9719 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708897092.1669 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708897308.972 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708898247.6453 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708898385.0309 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708898940.2221 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708899033.6767 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708899094.7597 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708899313.7174 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708900243.5928 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708900290.4192 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708900534.433 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708900739.4792 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708900896.3162 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708900944.7057 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708901004.3369 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708901140.536 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708901205.185 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708901271.5599 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708906087.535 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708911897.204 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708911980.4889 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708912886.2501 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708917371.546 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708918006.5331 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708918341.2565 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708934158.0566 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708934213.6115 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708945203.3736 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708945250.8863 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708951588.5425 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708951746.5383 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708954742.8616 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708954794.4373 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708959195.6566 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708965914.5915 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708967351.2939 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708969026.9917 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708971206.1694 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708974139.0298 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1708974235.2685 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708974452.0594 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708976582.5165 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708976737.6685 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1708982645.1325 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709002044.4007 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709005486.5175 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709005615.5125 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709006741.3904 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709152906.1957 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709154393.3068 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709176032.7818 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709185913.6196 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709185957.4018 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709197368.2076 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709204174.7904 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709204344.1084 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709204921.5492 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709205034.8418 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709205145.9696 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709205313.1432 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709205580.8501 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709205682.8523 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709244758.4784 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709244846.0526 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709244997.4419 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709249601.8221 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709263244.1379 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709283350.3688 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709289571.7738 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709297911.1159 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709297959.7696 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709298035.8417 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709298108.311 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709312905.7852 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709314599.2746 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709319323.9604 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709332589.0245 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709332693.3157 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709332728.5736 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709360609.8041 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709360704.3674 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709360859.8437 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709360898.1113 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709380729.8517 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709380771.4927 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709406624.4226 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709406663.8202 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709406844.2813 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709408166.9963 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709408597.3412 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709408745.2213 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709408792.1084 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709408909.6471 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709454010.1992 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709456343.29 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709456385.9611 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709467315.4335 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709467670.6771 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709467750.3028 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709467966.3537 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709468070.1882 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709469208.2004 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709470017.6644 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709475236.0353 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709475291.8491 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709475476.199 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709475722.0689 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709476032.8267 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709498390.6569 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709509977.9598 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709510049.9853 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709510101.3471 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709510227.8423 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709510277.2673 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709520634.865 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709521124.9432 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709525184.1908 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709525363.6295 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709525367.4932 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709525370.7078 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709525371.6054 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709555268.3065 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709555305.8368 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709555365.0629 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709564374.8853 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709564432.9644 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709564508.6477 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709589824.2655 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709607356.55 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709623465.2236 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709637691.8234 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709638050.0782 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709660615.1416 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709660663.1131 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709660705.2524 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709660733.8564 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709666192.9176 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709666371.1496 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709667147.0548 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709681074.0258 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709684215.0404 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709686057.3149 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709686413.5508 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709686525.0986 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709697419.1813 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709697537.6767 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709697625.1537 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709697699.2202 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709697765.8153 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709701798.7454 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709701867.411 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709703479.7157 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709711606.343 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709711638.9151 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709718263.3968 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709732897.13 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709733146.7189 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709733510.0735 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709733769.0895 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709733984.7209 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709734276.7335 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709734760.1438 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709735046.8892 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709735466.4504 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709743122.0982 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709743199.6366 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709743246.5093 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709744128.3507 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709746441.6565 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709749688.2868 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709749778.8454 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709749831.73 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709750119.0678 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709750177.8679 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709750244.615 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709750390.4456 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709763296.6888 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709763580.1285 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709769083.3294 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709775829.9537 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709776059.1373 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709776195.9153 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709819184.8748 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709819269.7237 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709819464.1394 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709825753.9546 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709826170.6984 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709826303.9404 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709828324.8867 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709828490.8482 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709829347.4525 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709839146.1522 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709859623.8718 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709859805.6945 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709864587.3482 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709869897.94 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709877174.2776 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709877337.4518 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709883867.1277 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709885686.9342 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709889359.5441 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709889475.977 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709889535.5765 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709889619.8086 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709889769.3391 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709889839.6835 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709890143.5601 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709890209.245 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709890369.2681 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709890424.7787 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709910236.0856 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709910443.9066 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709910547.8262 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709910740.3527 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709919646.0226 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709920156.3159 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709920390.0754 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709920607.9947 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709922803.3572 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709922906.1296 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709923262.572 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709964908.1586 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709974796.627 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1709974971.5334 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709975174.0559 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1709975174.3889 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710039402.3242 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710040062.0696 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710040249.9879 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710040828.1192 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710047131.9231 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710053223.0868 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710053275.1341 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710053339.6443 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710056747.2458 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710056801.1827 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710092028.3776 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710092042.857 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710095633.351 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710095728.1838 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710095809.1074 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710133298.1898 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710134605.6608 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710134733.9032 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710134924.906 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710135718.3156 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710135946.8901 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710136172.0059 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710136347.7712 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710141762.4496 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710141884.3104 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710143269.0113 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710143349.9151 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710146067.3226 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710149580.2395 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710149683.0864 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710150402.497 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710155810.1144 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710170851.7463 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710170947.8453 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710183041.0198 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710185895.446 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710185991.3572 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710193653.549 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710193699.7254 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710193775.4664 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710227601.3057 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710227644.8264 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710228964.504 + }, + { + "model_a": "LCM", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710234107.5663 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710234441.145 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710235559.4811 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710235601.0918 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710235666.9547 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710235779.4616 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710235831.2066 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710236066.3334 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710258072.3625 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710267141.2016 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710267192.7152 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710299345.3984 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710311614.7093 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710311959.6796 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710312107.8196 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710312252.8641 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710315638.7234 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710315781.4197 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710316067.3684 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710316169.37 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710317054.0896 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710352047.7971 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710357739.239 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710375197.7291 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710375295.4702 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710375360.6871 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710403111.6764 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710467949.9341 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710483611.0859 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710483659.0327 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710483698.7609 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710517630.2735 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710651486.824 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710693247.298 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710741951.037 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710787410.5558 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710855464.5304 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710861169.7223 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710861237.7484 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710861352.9168 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710871773.5615 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710873305.8459 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710878428.772 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710878482.5145 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710878522.7132 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710878554.7388 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710878834.1916 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710878863.369 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879020.847 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879192.9312 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879426.9459 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879475.339 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879571.0386 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879768.9257 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879802.4914 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879892.1429 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710879980.7785 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710880083.0513 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710883916.3294 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710884059.8404 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710884154.0868 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710958939.3192 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710959012.838 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710961159.5411 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710963885.2225 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710963903.3836 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710963953.0057 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710964184.4185 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710972180.6999 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710972340.7372 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1710984394.0364 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1710984466.3564 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711005711.7078 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711005767.6394 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711020883.8198 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711132439.4155 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711169085.4247 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1711169118.983 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711169219.3454 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711169290.371 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711179020.3289 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1711179069.262 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1711179117.4887 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1711179210.767 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1711179326.5357 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": false, + "tstamp": 1711179488.0867 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711394455.3868 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711448873.73 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711466110.333 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711466161.826 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711466197.557 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_::1", + "anony": true, + "tstamp": 1711466270.7813 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1713914007.8161 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1713918131.7246 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1713918242.116 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1713923648.8079 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1713941780.1126 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1713975355.9977 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1713975417.3198 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1713975519.1134 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1713994624.6926 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1713996707.7409 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1713996724.8193 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1713996851.5175 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1713997079.6919 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1713997989.1639 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1713998341.5178 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714003948.5339 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714004015.3252 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714015722.0525 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714015905.9327 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714015991.2795 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714022860.1988 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714022940.2751 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714039204.0616 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714056222.6429 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714069036.9392 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714077090.6418 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714079314.9516 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714080557.6324 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714082535.3634 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714092393.3461 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714105615.9292 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714109429.0978 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714112663.5067 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714112726.876 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714121337.2281 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714142263.0679 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714147142.6929 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714151444.896 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714152676.2693 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714152940.5945 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714153103.9839 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714161396.0428 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714164994.8175 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714170022.6482 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714170075.5554 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714170206.8613 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714170252.7601 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714170349.4928 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714170454.3968 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714182820.6056 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714184788.7588 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714184966.5047 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714186945.0332 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714187280.7526 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714191697.0268 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714209787.2864 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714209879.8847 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714209952.1929 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714210702.2068 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714212487.8392 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714212568.1969 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714212857.6503 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1714213081.0783 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1714213249.366 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714230197.5982 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714230234.8804 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714239876.7003 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714240459.7535 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714240698.3402 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714240774.9968 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714240914.1284 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714247380.0934 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714248164.7722 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714248201.752 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714248234.1032 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714248279.4627 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714256848.7445 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714257691.8348 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714257911.1565 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714309816.7026 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714326534.518 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714326579.9154 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714326637.2841 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714326730.3008 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714326782.3921 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714326847.2357 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714326897.045 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714328510.4194 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714328634.6068 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714334953.0739 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714335092.3619 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714335431.0245 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714346970.2896 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714369227.932 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714369310.8615 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714369917.2709 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714369976.4842 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714372310.4571 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714372446.3505 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714379143.8696 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714379213.3239 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714379265.8321 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714379317.8013 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714379356.2773 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714379455.9178 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714386460.8846 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714386613.7646 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714386755.5909 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714386866.2585 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714391744.7035 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714403252.7092 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714406035.1101 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714438972.8668 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714441509.4284 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714447593.8501 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714447922.2692 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714448408.1343 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714482875.2202 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714483168.4359 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714483549.307 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714484821.9016 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714484922.3074 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714485272.0273 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714485352.7047 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714485416.3394 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714485491.7762 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714488682.9594 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714490834.8428 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714495175.1904 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714495637.6136 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714495645.4511 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714496723.9678 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714496820.3085 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714502763.3275 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714502841.1042 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714503172.9918 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714503806.0085 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714504469.1026 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714504500.4997 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714506749.3618 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714513194.0175 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714525269.4607 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714526357.9782 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714526477.9201 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714526540.531 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714526601.0655 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714526662.6829 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714526712.5187 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714526785.8454 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714526920.1126 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714527084.7551 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714527121.2096 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714527328.7284 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714527401.5963 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714530543.6934 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714531872.9059 + }, + { + "model_a": "LCM", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714533061.9134 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714549283.9448 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714562041.0407 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714563338.1383 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714568441.1815 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714569966.6842 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714570322.1081 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714571701.0307 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714576378.8046 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714576446.094 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714576532.638 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714576679.4471 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714576769.1653 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714576824.9807 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714576938.1807 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714577006.5219 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714577057.6898 + }, + { + "model_a": "LCM", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714577128.2946 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714577727.8597 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714578747.7724 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714579589.2206 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714579846.2417 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714581212.6776 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714587799.689 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714588572.9436 + }, + { + "model_a": "LCM", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714589779.9269 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714591108.6439 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714591543.0262 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714591623.1416 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714593850.1499 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714593943.3196 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714594628.9269 + }, + { + "model_a": "LCM", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714594743.1239 + }, + { + "model_a": "StableCascade", + "model_b": "LCM", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714595283.1825 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714597497.923 + }, + { + "model_a": "LCM", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1714597529.0346 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714597965.5242 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714598027.9119 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714598064.6463 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714598118.6371 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714598192.9803 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714609418.3422 + }, + { + "model_a": "SDXL", + "model_b": "LCM", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714609489.294 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714615266.9304 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714615292.9702 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714615431.8814 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714616014.2777 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714616748.784 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714616966.3144 + }, + { + "model_a": "LCM", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714617048.1732 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714619554.8734 + }, + { + "model_a": "LCM", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714619583.6576 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_127.0.0.1", + "anony": true, + "tstamp": 1714619899.8672 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_127.0.0.1", + "anony": true, + "tstamp": 1714620041.7951 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_127.0.0.1", + "anony": true, + "tstamp": 1714620209.3544 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714620255.3801 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_127.0.0.1", + "anony": true, + "tstamp": 1714620297.602 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_127.0.0.1", + "anony": true, + "tstamp": 1714620455.0897 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_127.0.0.1", + "anony": true, + "tstamp": 1714620471.3887 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714620498.1223 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714620564.2259 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714620792.5256 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714622433.5969 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714622629.3706 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714624203.9485 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714624416.1669 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714624452.0408 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714624751.0239 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714624811.7454 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714624841.1584 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714624927.923 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714624929.0833 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714624970.3575 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714625006.8605 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714625105.9879 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714625165.1569 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714625203.6289 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714625325.2074 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714625370.3592 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714625439.0679 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714625582.3416 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714626535.2775 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714626855.4053 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714626916.0031 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714627108.599 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714627469.0604 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714627535.2162 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714630962.9322 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714631222.5783 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631261.9674 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714631269.0642 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714631304.8833 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631343.8599 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714631373.2604 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714631379.3709 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631406.6345 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714631460.8018 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631565.7606 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631619.8325 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714631657.5961 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714631685.449 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631735.0461 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714631798.8645 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714631851.3442 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714631887.0953 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714631929.4421 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714631960.594 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714631996.7092 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714632090.87 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714632134.5755 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714633320.2991 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714633482.4024 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714640882.6728 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714642986.0995 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714643045.5943 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714643082.8136 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714643161.1256 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714643178.8986 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714643195.0168 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714643210.9338 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714643228.58 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714643244.839 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714643263.6358 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714643301.9301 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714643318.5429 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714643337.3762 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714643374.3585 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714643393.2465 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714643417.4894 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714643440.8602 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714643455.7901 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714649503.3748 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714649610.8215 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714650576.7331 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1714650593.7024 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714650810.8664 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714651167.0887 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714651204.0701 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714651570.3037 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714651595.6518 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714651643.6577 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1714651680.7509 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714656886.193 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714657321.8975 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714657405.4107 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714657491.6943 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714657563.7544 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714658033.5865 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714659839.0561 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714661481.3367 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714661500.0441 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714667652.5445 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714670744.2049 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714671562.3433 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714671606.5636 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714674306.9355 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714676006.8661 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714676092.7433 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714680300.0205 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714680341.0065 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714680554.4306 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714680585.1911 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714681910.5952 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714682370.9088 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714685282.7201 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714688746.1146 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714688792.1686 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714688835.6515 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714688905.2632 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714688943.3143 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714688967.8818 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714689004.962 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714689037.7917 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714689083.6141 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714689109.3646 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714699772.736 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714700080.0171 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714700291.2492 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714700462.2345 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714700604.7006 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714700789.9804 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714700982.9415 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714701009.8985 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714701244.0061 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714701500.7099 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714706289.0149 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714706317.9058 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714706341.5125 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714706373.5934 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714706395.3227 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714706415.4541 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714706442.2498 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714706461.0018 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714707001.5911 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714707023.5647 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714707047.7975 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714713270.3394 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714724818.3997 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714734400.8476 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714734465.3614 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1714734569.7019 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714734654.3442 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714734803.1343 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714734968.5647 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714748485.752 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714749539.5718 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714749970.8581 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714752731.3689 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714757378.2777 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714759724.7319 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714760022.0442 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714760095.394 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714760146.4815 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714761348.6174 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714761400.3166 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714768127.0057 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714768332.4376 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714768360.265 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714768456.157 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714768460.7201 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714768584.2746 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714768705.391 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714768789.8144 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714769148.3723 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714769811.0755 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714771409.57 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714771623.5408 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714772270.9216 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714772363.8846 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714773445.9213 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714783788.5028 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714789277.4105 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714791635.6375 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714791703.9386 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714793478.8906 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714793516.1383 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714816321.6618 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714816353.336 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714816387.937 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714816454.4134 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714821081.9862 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714826009.0121 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714836291.2723 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714836319.9202 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714836356.4831 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714836384.9568 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714836456.2511 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714836502.7587 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714836697.9308 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714836801.5488 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714836819.06 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714836847.1787 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714840939.9973 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714840966.5773 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714840994.8323 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714841032.0221 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714844940.4181 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714844957.7696 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714844976.5665 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714845001.8285 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845019.4407 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845032.4797 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714845049.3217 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845073.803 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714845129.7334 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845151.5118 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714845163.188 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845190.9757 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714845211.3025 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845224.1933 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845237.175 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714845249.1656 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845270.0839 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845289.1748 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845304.6206 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714845322.728 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714845346.9463 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845360.9795 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845381.6875 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714845454.9069 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845463.9326 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845484.1915 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845493.9662 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845526.8156 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714845537.0831 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845558.2291 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845583.0605 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714845648.1802 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845801.6983 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714845825.3725 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714845866.6028 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714845879.6467 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714845896.6448 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714851495.7019 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714855675.1836 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714855743.4464 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714855800.4946 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714855883.6928 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714855928.4784 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714855960.1283 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714856074.9316 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714856249.6582 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714857683.069 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714857745.6261 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1714857750.9434 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714857816.8831 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714858009.6203 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714858346.3558 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714858379.5024 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714858860.7581 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714859303.9419 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714859331.1343 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714861379.4162 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714862250.8904 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714879027.0753 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714879064.6145 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714879136.3501 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714879166.635 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714885297.2707 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714887283.4435 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714896191.5559 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714896283.3643 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714901842.7876 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714901915.4188 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714908380.1114 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714916073.5383 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714917623.4324 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714919897.1549 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714921434.8363 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714922754.8813 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714922831.6494 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714922930.7366 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714924993.665 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714925101.5301 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714925229.5996 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714925389.0678 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714925457.4322 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714925529.8983 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714925666.7773 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714925757.8461 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714925945.9328 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714926036.7193 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714926136.4551 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714931262.225 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714931291.2995 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714931348.0493 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714931389.3777 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714939348.7581 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714942450.2188 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714943719.0964 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714943798.9906 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1714943846.1201 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714944117.9857 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714944181.5685 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714944190.4431 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714944256.128 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714944277.2965 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714944291.7974 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714944312.2761 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714944329.2231 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714944380.1348 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714944394.3367 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714944413.8638 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714944428.8637 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714957477.7795 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714957664.0191 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714957743.4932 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714957774.4846 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714957823.7313 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714969445.3812 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714969476.9561 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714969494.3961 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714975508.662 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714975631.0816 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714975671.1859 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714975731.8573 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1714981477.9182 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714981720.8531 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714981775.3404 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714981808.9565 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714984715.9114 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714985914.5152 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714986066.0806 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714986216.8728 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714986306.1947 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714986376.4982 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714989208.3777 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1714989248.5875 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1714989819.0972 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714989847.7502 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714995425.2992 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714995448.7647 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714995482.6481 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714995517.9459 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1714995598.7764 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1714995622.1322 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714997128.3204 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1714999315.9865 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715000156.668 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715003687.3227 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715005634.4101 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715008027.9237 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715008220.12 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715008338.7667 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715008528.0193 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715008560.758 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715008626.0331 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715008768.0717 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715009164.4372 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715011098.7307 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715011477.047 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715012038.5653 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715012110.2215 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715012132.6383 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715012409.0239 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715015333.7998 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715015501.211 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715017292.0144 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715017296.8295 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715018460.9145 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715018632.2066 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715018803.375 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715019225.3407 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715019462.1131 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715019802.153 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715019907.2521 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715020065.0156 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715020154.4329 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715021356.9755 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715021529.0535 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715021929.2364 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715021941.4732 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715021957.2665 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715021977.374 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715021998.1985 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715022011.4633 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715022038.313 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715022292.5538 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715022423.4927 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715024554.3716 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715032383.9143 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715032424.7447 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715032525.4621 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715032553.8807 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715034247.9019 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715034370.6536 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715035859.5219 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715035919.4799 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715036001.5027 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715036181.5765 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715039687.2011 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715040461.6314 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715041888.5659 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715042097.2393 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715043684.6186 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715043729.7419 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715044419.69 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715046057.634 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715046141.0795 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715046267.3231 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715052976.1222 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715053014.6343 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715053906.7556 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715053967.3424 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715055659.8708 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715061669.9858 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715063382.9466 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715064854.7455 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715067798.0909 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715075931.4757 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715075995.7843 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715076051.3948 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715076120.5569 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715076158.7022 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715076247.8444 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715076271.3714 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715076443.3502 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715076515.8829 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715076596.1856 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715076652.1088 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715076690.1705 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715076745.2118 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715077074.6434 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715077245.8069 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715077262.5999 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715077301.2446 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715077325.4673 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715077356.4944 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715077381.1639 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715077400.87 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715077412.1989 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715077426.3836 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715077446.8475 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715077467.8656 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715077481.7513 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715077512.9835 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715077556.4551 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715077627.358 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715082846.4884 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715082974.7401 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715083505.9148 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715084102.5454 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715084136.6653 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715084172.1244 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715084217.559 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715084268.0881 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715084344.8168 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715084385.6042 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715084634.0612 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715084678.0431 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715088191.2067 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715088225.5567 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715088287.0801 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715089041.0651 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715089114.0005 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715090925.831 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715094300.1045 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715096979.6616 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715102524.9755 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715103264.6167 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715108604.4116 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715108644.2865 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715108745.3343 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715109229.1632 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715109297.5496 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715109376.7434 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715109432.9573 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715109493.1861 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715110227.8222 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715110271.8156 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715110329.5161 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715110363.0739 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715110394.1117 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1715110437.7906 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715110587.7518 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715110588.6536 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715110656.8518 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715110828.4153 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715110858.8573 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715110882.8365 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715110910.2006 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715110958.358 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715111053.2734 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715111140.0209 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715111188.2552 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715111214.6346 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715111246.7931 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715111273.5189 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715111348.5563 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715111413.3707 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715111438.4729 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715111464.8113 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715118668.6032 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715118687.3129 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715118727.6518 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715118748.4589 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715118816.8802 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715118843.9637 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715118876.7561 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715118913.0065 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715120168.9814 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715120215.1132 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715120249.0948 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715120298.7987 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715120366.9169 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715179187.4528 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715192298.1843 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715192393.9427 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715195946.899 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715198606.6174 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715200984.0469 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715201096.4403 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715201179.1093 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715201267.8775 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715201718.2331 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715202571.3392 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715207226.5413 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715207484.1546 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715207536.9802 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715207620.9787 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715207699.6307 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715208469.7193 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715215064.2208 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715216049.4491 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715234211.3663 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715234328.5891 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715239430.5621 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715243868.6295 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715244241.3044 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715244558.273 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715246203.5448 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715246766.1834 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715248803.359 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715250151.3399 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715250174.2859 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715250209.1457 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715255562.9587 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715255607.1614 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715255662.1513 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715255805.7255 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715255848.3385 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715255903.5686 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715256028.3307 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715256087.6353 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715256120.0212 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715256235.433 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715256303.3042 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715256320.1086 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715256341.3287 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715256394.9544 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715256426.1838 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715256442.628 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715256495.0433 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715256515.9042 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715256612.2087 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715256636.3789 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715256663.2995 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715256689.5726 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715256729.0218 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715256845.2289 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715257007.5027 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715257166.0516 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715257200.4456 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715257215.3823 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715257326.7155 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715257356.4325 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715257638.2431 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715257699.707 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715257739.3739 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715257780.2792 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715257957.6205 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715258056.7318 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715258093.8906 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715258144.4655 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715258483.1514 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715258503.8004 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715258565.4821 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715258595.7971 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715258635.5213 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715258691.1935 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715258764.873 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715258936.1894 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715258994.9227 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715259051.189 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715259072.5223 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259113.9431 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259131.2458 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715259172.7727 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715259212.7736 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259492.2271 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259543.7047 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259610.1198 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259627.5644 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715259640.495 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715259701.4844 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715259723.058 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715259762.96 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715259803.218 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715259881.236 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715259989.1663 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715260057.4769 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715260117.3458 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260230.1733 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715260282.4439 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260328.5412 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715260349.3944 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715260382.1398 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260442.606 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260481.1292 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715260514.9799 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260554.6099 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715260599.5403 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715260599.9917 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715260612.3444 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260637.1369 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715260666.4785 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715260797.6363 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715260970.0095 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715263893.6453 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715264861.7542 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715264922.4486 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715264971.3985 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715264997.7186 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715269818.8282 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715269899.1691 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715270094.2855 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715270143.2689 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1715270193.4508 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715271220.138 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715271255.7782 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715280678.7882 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715280745.1316 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715280767.2367 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715280824.3612 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715283624.6873 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715283771.9899 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715283832.1093 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715283904.4875 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715283975.894 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715289173.8135 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715291072.6088 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715293959.6611 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715297226.1416 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715301246.3501 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715307496.6586 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715307658.3323 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715307702.6279 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715307752.0515 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715307782.3509 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715307800.3472 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715307824.9746 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715311324.1332 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715312455.5893 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715321145.649 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715321277.3237 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715327322.223 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715327350.1615 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715327423.5657 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715327458.0922 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715327624.4824 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715329636.2156 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715329681.0432 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715329740.4518 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715329796.7315 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715329913.4518 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715329970.8219 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715330010.4717 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715330055.7455 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715330092.6017 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715330140.7292 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715330184.6534 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715333482.0455 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715334142.5931 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715334164.9491 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715337395.7907 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715337511.2509 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715338012.7242 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715338049.9744 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715342186.1942 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715348407.4474 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715348444.9063 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715348460.7018 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715349704.8905 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715349743.8126 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715349781.9289 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715349808.6611 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715352511.3183 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715353266.6712 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715353759.7287 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715354286.5972 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715369867.0276 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715373507.3127 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715375602.5913 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715381692.1857 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715385627.8243 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715385668.566 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715385861.8339 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715385910.8569 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715385973.3168 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715385992.5668 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715386102.6516 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715386146.9156 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715386278.6084 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715386300.6511 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715386332.2285 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715386387.625 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715386408.7312 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715386438.6606 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715386459.8269 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715386482.1368 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715389666.0729 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715397519.9742 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715398256.9052 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715398303.687 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715398343.7819 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715398359.4717 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715398398.6135 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715398431.3592 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715405398.644 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715405460.6692 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715405488.1404 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715405523.4582 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715405592.995 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715407001.4723 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715407052.1558 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715407102.6965 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715407121.4426 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715408435.5071 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715410162.7026 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715410237.8023 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715410316.1611 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715410361.2625 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715410434.0467 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715410461.4697 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715410554.4581 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715414751.2748 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715414877.5649 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715414946.6036 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715426874.879 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715426958.7873 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715427567.4463 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715433451.3249 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715433563.6229 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715433632.339 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715433695.6008 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715433774.0535 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715433851.8631 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715433896.4202 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715433912.915 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715433986.55 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715434064.6045 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715434110.7683 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715434207.8245 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715434239.5902 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715434702.9671 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715434813.9772 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715434923.6108 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715445309.7756 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715447806.7031 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715455573.9043 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715464162.4446 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715464217.9734 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715464836.5956 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715478360.043 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715483811.0921 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715483833.3595 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715483901.9427 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715501155.9579 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715501572.3162 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715501769.6926 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715501823.7506 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715501843.0687 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715504372.552 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715504645.5579 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715504799.6279 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715504917.9909 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715504991.8379 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715505030.8366 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715505102.3427 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715505159.0976 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715505273.321 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505335.8753 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715505391.6178 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505472.5006 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505561.6787 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505621.572 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715505678.2622 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505751.0201 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715505814.8461 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505886.3264 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715505976.4305 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715506091.8967 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715506191.1829 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715506253.3266 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715506316.8875 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715506363.7645 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715506428.4684 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715506482.095 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715506548.2237 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715506605.9731 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715506671.8971 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715506735.8368 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715506805.2882 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715506896.7326 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715506939.4213 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715507004.6222 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507068.7409 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715507126.7222 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507187.5667 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507238.7865 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507298.3444 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507336.2381 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507376.8809 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715507424.3389 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715507480.5378 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715507529.7884 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715507580.5302 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715507633.4101 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507697.6976 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715507748.005 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507785.2979 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715507832.5017 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507882.0959 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715507938.4281 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715507986.3397 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715508025.4909 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715508596.1504 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715508819.8245 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715508860.6235 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715512725.6261 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715513049.8363 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715513462.1973 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715513499.0171 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715513543.4817 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715517934.7894 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715517982.3497 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715518044.4289 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715518070.8159 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715518087.1668 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715518101.7937 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715518233.8117 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715519760.5756 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715519900.3195 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715522347.2456 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715529147.0937 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715529174.8074 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715530512.1388 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715530547.9455 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715530635.089 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715530714.582 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715530966.3605 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715531011.2687 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715535948.8615 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715535994.2185 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715536006.5145 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715536056.5174 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715540608.439 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715540668.0693 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715540691.8784 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715540718.2742 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715544756.1942 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715544778.4407 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715544894.2269 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715544960.7509 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715548274.8397 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715548294.1061 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715548300.6242 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715550359.0308 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715550403.1731 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715550430.5087 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715550507.2465 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715556033.5312 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715556063.1215 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715556141.5487 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715556182.4021 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715556248.2706 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715556294.4954 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715557736.1568 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715557824.1917 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715557916.0035 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715562556.2316 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715562610.8163 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715562638.7736 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715562661.9948 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715562687.4578 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715562732.9275 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715568734.6978 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715568766.9301 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715569459.785 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715569879.0308 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715569939.3429 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715570478.9989 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715570518.1415 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1715570567.0057 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1715570612.4722 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715570645.2329 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1715570688.9077 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715570854.7795 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715575605.8643 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715575948.9645 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715576064.1342 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715576106.2468 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715576227.6686 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715576454.7912 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715578457.2811 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715582610.2263 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715582710.2425 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715582923.497 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715586674.4565 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715587268.2966 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715587315.8551 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715587447.1256 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715588699.642 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715588747.9002 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715588768.9951 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715588953.3795 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715588977.4247 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715589086.613 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715589105.5043 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715589121.5389 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715589137.0817 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715589155.9265 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715589185.4421 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715590609.5811 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715591050.2465 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715591124.4712 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715591175.4243 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715591304.7838 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715591343.321 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715595118.0355 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715595264.4727 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715596169.2755 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715596245.7251 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715596298.8145 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715596510.9151 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715596889.3985 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715604775.881 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715607268.2975 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715607845.0531 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715607875.1886 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715607896.3063 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715607907.3053 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715609542.513 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715609603.9724 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715609725.5118 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715609806.3255 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715609879.2783 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715609938.662 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715609988.4664 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715610011.9289 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715610056.2075 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715610086.9944 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715610128.0027 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715610160.2297 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715626259.5155 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715626316.2277 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715626362.7831 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715626514.9638 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715626578.3164 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715626646.4891 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715626738.9521 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715626760.7536 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715627190.575 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715627560.0476 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715627634.4326 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715627720.6617 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715627790.3477 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715627811.3067 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715628711.5839 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715628730.7564 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715628760.4033 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715629350.7992 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715629634.3138 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715629743.0214 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715629771.8713 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715629802.2118 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715629837.1242 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715629842.3411 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715629879.3585 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715629880.4603 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715629944.9785 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715630027.1455 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715630100.0636 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715630101.6678 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715630132.5182 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715630152.8798 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715630169.3216 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715630440.4928 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715630950.8345 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631072.8898 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715631131.835 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715631220.4634 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631267.9233 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715631285.724 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715631308.7093 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631330.4596 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631418.9373 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715631474.7397 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631549.0504 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631560.6138 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631574.059 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631588.6777 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631600.2192 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715631635.0579 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631645.5325 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631658.7672 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631675.2634 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631716.9795 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715631765.8044 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715631795.5084 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631839.0158 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631854.1148 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631869.3083 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631884.7597 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631904.8756 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715631937.9237 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715631952.7703 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715631982.5382 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632002.5002 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715632019.0886 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715632056.4297 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715632078.9071 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632100.4706 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715632119.9303 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632133.1354 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715632156.0675 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715632205.6436 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715632227.039 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632245.3583 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632259.1458 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715632259.548 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715632294.1124 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715632295.1637 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715632308.2085 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632614.2904 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715632687.9328 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632735.2315 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715632779.0684 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632794.3672 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632817.191 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715632839.1091 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632863.1892 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715632877.6274 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715632905.0193 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715632929.4288 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715632953.0127 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715632978.85 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715633003.3879 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715633138.1665 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715633164.5981 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715633210.4173 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715633227.2731 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715633258.4186 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715633315.2438 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715633520.2234 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715633905.8551 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715634223.4612 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715634600.3185 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715634931.8593 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715634970.9805 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715635064.6405 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715635088.6077 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715635113.7799 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715635409.1381 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715635415.7586 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715635456.2167 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715635497.5932 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715635556.3009 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715635722.068 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715635754.5537 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715635777.2021 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715636320.6167 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715637590.0237 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715638033.6861 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715638688.094 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715638705.4091 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715638723.6793 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715638741.5972 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1715638765.8168 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": false, + "tstamp": 1715638801.4903 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715639560.5786 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715639602.0201 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715639648.8662 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715639706.422 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715639819.1451 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715639940.3868 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715639960.3475 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715640001.4121 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715640098.0525 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715640337.8705 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715640392.0848 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715640445.9726 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715640469.3732 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715640477.3475 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715640493.5113 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715640562.3311 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715640578.1198 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715640592.8728 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715640764.9243 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641052.5041 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641257.7136 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715641279.2614 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641302.3811 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715641321.4886 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641339.6818 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715641357.4266 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715641376.9425 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715641410.444 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715641442.5154 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641456.2598 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641495.9314 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715641527.5583 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641551.3556 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641588.8546 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641603.435 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641631.096 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641667.7929 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715641691.7163 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641711.2567 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641722.2319 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641749.6905 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641771.8403 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715641788.389 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641813.26 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715641888.1795 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641907.4439 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715641960.0761 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715641984.3372 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715642001.6784 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715642018.8284 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715642032.4162 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715642070.4076 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715642084.8514 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715642108.9736 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715642124.1679 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715642139.4073 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715642159.6643 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715642216.1899 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715642234.6287 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715642258.9057 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715642272.164 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715642294.1783 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715642321.2084 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715642347.8346 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715642369.1198 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715642394.4943 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715642446.3777 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715642517.7799 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715643009.9765 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715643629.3904 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715646343.3307 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715646422.6525 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715646502.575 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715646525.7573 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715646580.6937 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715646625.6955 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715646765.4862 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715646979.9774 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715647603.7335 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715647673.5221 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715647719.0251 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715647783.5052 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715647806.4518 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715647856.3221 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715647879.1789 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715647882.4873 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715647894.6206 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715647930.2673 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715647941.2474 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715647967.128 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715647973.2911 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715647989.9255 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715647995.2918 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715648014.7225 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648040.5804 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648068.1237 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715648082.97 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715648171.6969 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715648197.0506 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715648203.8329 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648205.9948 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715648224.062 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648242.6639 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648245.9232 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648290.6372 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648300.5734 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648323.4421 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715648333.172 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715648334.425 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715648344.276 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715648355.6097 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648369.0486 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715648376.6725 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648380.9343 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715648396.6345 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648412.897 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648426.7397 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648459.2997 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715648499.1202 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648533.2237 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648571.9891 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715648599.2257 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715648652.562 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715648684.2485 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648719.831 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648752.5013 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648775.0478 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648805.2205 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715648837.1883 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715648852.8803 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715648875.2262 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715649200.5327 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715649240.2392 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715649948.8106 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715650049.2967 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715650124.3848 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715650152.58 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715650224.0572 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715650257.8532 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715650321.9949 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715650387.8979 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715650427.5456 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715650470.7554 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715650515.0057 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715650525.3414 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715650550.1627 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715650605.4746 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715652184.3154 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715652208.8769 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715652235.8641 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715652379.6496 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715652432.8124 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715652539.012 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715653965.9717 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715654470.1972 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715654493.8888 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715654508.8773 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715656408.3689 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715656819.0954 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715657123.7234 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715657508.1666 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715657531.1836 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715657541.1706 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715657553.4074 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715657562.2334 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715657776.1514 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715657825.2322 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715657930.4391 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715658042.5835 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715658131.1457 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715659967.4762 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715660953.9461 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715660985.1237 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715661097.2605 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715661148.9346 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661175.1053 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715661544.4592 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661588.8338 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661640.5955 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715661675.7755 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661778.9555 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715661831.7873 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661846.1834 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715661879.9838 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715661882.641 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715661906.8515 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715661957.5554 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715662143.2977 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715662172.8726 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715662823.8091 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715664545.3047 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715668236.2092 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715668318.9269 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715668776.0324 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715670090.9625 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715670150.1172 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715670167.3075 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715670187.1492 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715670203.7494 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715670212.3749 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715671609.0636 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715672815.6266 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715672903.2615 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715672954.5547 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715673035.7081 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715673051.3865 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715673083.8769 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715674645.4789 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715674714.0568 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715674795.7064 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715677914.199 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715677990.6732 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715678023.864 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715680671.7878 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715680684.2017 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715680708.0141 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715680721.1172 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715680756.6421 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715680774.3491 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715680798.7423 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715680815.0593 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715681211.2488 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715681242.0659 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715685637.6338 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715686261.4116 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715687357.824 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715687402.3453 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715689015.5469 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715689970.3975 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715690013.3277 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715690053.1575 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715690084.5814 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715690100.3947 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715691355.2566 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715692036.4606 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715696573.886 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715696985.2415 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715697070.2139 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715697745.2526 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715697888.4159 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715697950.1773 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715697965.8898 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715697974.5647 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715698003.0249 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715698043.4828 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715698634.8079 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715698673.8923 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715699050.3814 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715700361.1782 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715700470.8423 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715700632.2481 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715700735.9129 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715701867.2876 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715702055.2621 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715702149.7918 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715702176.0147 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715702213.1421 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715702257.7544 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715702294.1319 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715702319.7668 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715702343.5329 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715702383.6095 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715702421.8657 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715702488.6635 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715704679.9164 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715704744.5669 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715704809.2652 + }, + { + "model_a": "PixArtSigma", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715704832.3783 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715710596.3249 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715710732.1723 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715710946.1944 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715711094.3364 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715711416.0792 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715711624.746 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715711708.3608 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715713498.1462 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715714694.1925 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715714732.4367 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715714769.5878 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715714802.7484 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715714853.1436 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715714886.3133 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715714926.6286 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715714991.7571 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715715029.2598 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715715072.8058 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715715098.2911 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715720414.1433 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715720441.5688 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715720506.5514 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715736841.9224 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715736904.7417 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715736922.9946 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715745935.9609 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715746011.8732 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715746056.3536 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715746105.3639 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715746144.0276 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715746179.3533 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715746191.891 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715746211.3033 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715746225.2422 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715746246.3345 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715746275.9185 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715746320.8538 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715752128.2836 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715753569.2056 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715753597.7252 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715753614.2285 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715753635.4495 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715753659.8055 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715753684.1663 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715753707.2331 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715753724.3104 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715753747.3861 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715753781.8403 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715764730.2969 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715764763.9283 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715764798.1806 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715764827.007 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715764857.4414 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715767887.4006 + }, + { + "model_a": "PixArtSigma", + "model_b": "PixArtAlpha", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715769987.8576 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715770039.9446 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715775719.0294 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715775769.6894 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715775799.2783 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715775842.189 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715777592.7405 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715777627.9318 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715784315.8966 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715784523.0311 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715788137.1626 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715790483.4433 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715806130.6418 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715807505.7281 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715807533.5192 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715807582.7843 + }, + { + "model_a": "SDXL", + "model_b": "SDXLTurbo", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715807654.393 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715808278.5452 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715809534.3259 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715809760.1488 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715809795.2392 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715809852.0377 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715809906.8223 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715809965.5266 + }, + { + "model_a": "SDXL", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715809991.1422 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715810007.1303 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715810049.9176 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715810163.7299 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715811335.9503 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715811391.9803 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715811743.4601 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715811821.5187 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715812940.2633 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715812963.3663 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715813449.7613 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715813757.0457 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715813810.298 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715813865.9303 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715813942.3258 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715814281.3599 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815128.3488 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815217.0949 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815270.4299 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815370.4623 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715815467.3029 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715815602.0594 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715815648.2789 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715815686.0728 + }, + { + "model_a": "SDXLLightning", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715815736.5004 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715817402.5989 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715817805.2055 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715818376.2417 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715819161.9366 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715819491.1656 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715819543.6757 + }, + { + "model_a": "StableCascade", + "model_b": "PixArtSigma", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715819586.5946 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715819615.5232 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715819645.9821 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715819670.3462 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715819888.2828 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715819918.3499 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715819929.0339 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715819955.0618 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715819965.8997 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715819976.402 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715820093.4966 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715820108.3077 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715820114.9281 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715820121.7485 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715820127.866 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715820134.2909 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715820139.8646 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715820145.0877 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715820154.8417 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715820159.7185 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": false, + "tstamp": 1715820164.5588 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715820181.9884 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715820186.5589 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715820211.0087 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715820839.0777 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715820856.6731 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715820860.5842 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": false, + "tstamp": 1715820864.547 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715820874.3779 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "tie", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715826562.9853 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715826603.8445 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715832708.5013 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715833816.9851 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715835888.8168 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715835905.0987 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715836234.5315 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715839726.894 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715841738.4038 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715843051.3302 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715843989.692 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715846570.8419 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715846650.1388 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715846799.2673 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715846927.6472 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715853531.166 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715857620.2786 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715861672.622 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715861701.6151 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715861730.9837 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715861754.8566 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715862161.5608 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715862199.6862 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715862245.3838 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715862324.7552 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715862384.4427 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715862439.5804 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715863670.6729 + }, + { + "model_a": "SDXLLightning", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715870697.9021 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715870731.6924 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715870863.7421 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715872892.3643 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715872916.3874 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715872953.4692 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715873064.3259 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "LCM(v1.5/XL)", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715873088.041 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715873104.4435 + }, + { + "model_a": "SDXL", + "model_b": "PixArtAlpha", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715873134.2543 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "tie", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715873148.3964 + }, + { + "model_a": "SDXL", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715873169.9692 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715873197.2215 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715873236.7125 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": false, + "tstamp": 1715873285.2547 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715876292.9941 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715878952.7967 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715878980.8882 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715879032.671 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715879067.558 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715883196.3069 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715883230.7648 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "tie", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715883261.9915 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715883386.8596 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715883519.2743 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715883550.3625 + }, + { + "model_a": "SDXL", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715883570.8938 + }, + { + "model_a": "PlayGround V2", + "model_b": "PixArtSigma", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715883595.7926 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715883618.2657 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715883698.0336 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715883719.668 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715883769.1867 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715894377.4203 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715899227.8629 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715899665.3102 + }, + { + "model_a": "PlayGround V2", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715899810.0588 + }, + { + "model_a": "SDXLTurbo", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715900652.8154 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715901624.0299 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715901635.5566 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715901711.4071 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715901749.7598 + }, + { + "model_a": "SDXL", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715903564.6366 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715903657.7628 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715903975.2818 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715911393.0297 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXLLightning", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715912969.5823 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715912988.5329 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715913035.5767 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715913241.7837 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715913454.2601 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715913474.1488 + }, + { + "model_a": "PlayGround V2", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715913477.4885 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715913548.6289 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715913651.5759 + }, + { + "model_a": "PixArtAlpha", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715913654.291 + }, + { + "model_a": "SDXLTurbo", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715913667.5474 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715913739.8234 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715913764.4926 + }, + { + "model_a": "SDXLLightning", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715913782.4954 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715913817.5374 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715913839.5048 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715913940.0061 + }, + { + "model_a": "PixArtAlpha", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715914029.2744 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715914090.12 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715914105.3485 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715915511.0047 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715915577.8154 + }, + { + "model_a": "OpenJourney", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715916243.5859 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715916272.4239 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715916313.1847 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715916368.8797 + }, + { + "model_a": "OpenJourney", + "model_b": "LCM(v1.5/XL)", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715916411.5706 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715916448.7485 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715916533.6162 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715916547.7962 + }, + { + "model_a": "PlayGround V2", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715916587.2836 + }, + { + "model_a": "StableCascade", + "model_b": "SDXLTurbo", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715916613.8797 + }, + { + "model_a": "StableCascade", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715916644.9071 + }, + { + "model_a": "SDXLTurbo", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715916683.1819 + }, + { + "model_a": "SDXLLightning", + "model_b": "SDXLTurbo", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715916699.0407 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715916727.3045 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715918196.9319 + }, + { + "model_a": "PixArtAlpha", + "model_b": "OpenJourney", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715924700.595 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715924915.8223 + }, + { + "model_a": "SDXL", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715924954.0836 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715924980.164 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715925133.5358 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715925168.653 + }, + { + "model_a": "PixArtAlpha", + "model_b": "SDXL", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715925219.2785 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715925219.98 + }, + { + "model_a": "PixArtSigma", + "model_b": "StableCascade", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715925264.902 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": false, + "tstamp": 1715925315.7153 + }, + { + "model_a": "StableCascade", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715925919.7776 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715926420.4915 + }, + { + "model_a": "PixArtSigma", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715926538.8144 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715929365.0268 + }, + { + "model_a": "SDXLLightning", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929417.4956 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929429.846 + }, + { + "model_a": "SDXL", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715929450.8124 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715929492.6738 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "PlayGround V2", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715929531.0454 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715929554.8185 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715929567.0075 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929584.971 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715929617.1082 + }, + { + "model_a": "PixArtSigma", + "model_b": "OpenJourney", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929657.2837 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929679.9609 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929707.3509 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715929781.1131 + }, + { + "model_a": "StableCascade", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715929849.6364 + }, + { + "model_a": "SDXLLightning", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715929867.4377 + }, + { + "model_a": "PlayGround V2", + "model_b": "PlayGround V2.5", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715929907.5512 + }, + { + "model_a": "SDXLTurbo", + "model_b": "PlayGround V2.5", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715929948.5812 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715930083.8166 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.17.217", + "anony": true, + "tstamp": 1715930369.0071 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PlayGround V2", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715948152.0414 + }, + { + "model_a": "StableCascade", + "model_b": "OpenJourney", + "winner": "model_a", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715954193.2505 + }, + { + "model_a": "SDXLTurbo", + "model_b": "SDXLLightning", + "winner": "model_b", + "judge": "arena_user_10.16.15.199", + "anony": true, + "tstamp": 1715960109.8087 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXLLightning", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715960218.1069 + }, + { + "model_a": "PlayGround V2", + "model_b": "LCM(v1.5/XL)", + "winner": "model_a", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715960238.662 + }, + { + "model_a": "PixArtSigma", + "model_b": "SDXL", + "winner": "model_b", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715960280.3729 + }, + { + "model_a": "PixArtAlpha", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715969029.6444 + }, + { + "model_a": "OpenJourney", + "model_b": "StableCascade", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.41.118", + "anony": true, + "tstamp": 1715972816.0645 + }, + { + "model_a": "OpenJourney", + "model_b": "PixArtSigma", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715972884.2583 + }, + { + "model_a": "OpenJourney", + "model_b": "PlayGround V2", + "winner": "tie (bothbad)", + "judge": "arena_user_10.16.25.191", + "anony": true, + "tstamp": 1715977022.0855 + }, + { + "model_a": "LCM(v1.5/XL)", + "model_b": "StableCascade", + "winner": "model_b", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1715977282.5472 + }, + { + "model_a": "PlayGround V2.5", + "model_b": "PixArtAlpha", + "winner": "model_a", + "judge": "arena_user_10.16.2.201", + "anony": true, + "tstamp": 1716005809.1647 + } +] \ No newline at end of file diff --git a/arena_elo/results/latest/elo_results_image_editing.pkl b/arena_elo/results/latest/elo_results_image_editing.pkl new file mode 100644 index 0000000000000000000000000000000000000000..48deed1cbf79f88ddb573a815d8e534976da9df1 --- /dev/null +++ b/arena_elo/results/latest/elo_results_image_editing.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837f11fd6cda1fe2d6a5cc1c239a207725ad0157b16282303cb684427ddc7e9d +size 62484 diff --git a/arena_elo/results/latest/elo_results_t2i_generation.pkl b/arena_elo/results/latest/elo_results_t2i_generation.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1ae1b2350e77d3b54c92f8e211e61ad98d7a0e33 --- /dev/null +++ b/arena_elo/results/latest/elo_results_t2i_generation.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93808a9ce2f497109d0fc708e4055b6463a692502ef541ff28352f52b612916d +size 68172 diff --git a/arena_elo/results/latest/image_editing_leaderboard.csv b/arena_elo/results/latest/image_editing_leaderboard.csv new file mode 100644 index 0000000000000000000000000000000000000000..db61e6d7ea46c54dac3579fab71a81032ba56274 --- /dev/null +++ b/arena_elo/results/latest/image_editing_leaderboard.csv @@ -0,0 +1,10 @@ +key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link +CosXLEdit,CosXLEdit,1097.63559213644,1085.7285800995926,cosxl-nc-community,Stability AI,https://huggingface.co/spaces/multimodalart/cosxl +MagicBrush,MagicBrush,1075.1489922450316,1086.8819832924794,CC-BY-4.0,"The Ohio State University, University of Waterloo",https://osu-nlp-group.github.io/MagicBrush +InfEdit,InfEdit,1065.4719519196174,1090.684638162955,Apache-2.0,"University of Michigan, University of California, Berkeley",https://huggingface.co/spaces/sled-umich/InfEdit +Prompt2prompt,Prompt2prompt,1063.1432047252297,1060.8146250689238,Apache-2.0,"Google, Tel Aviv University",https://prompt-to-prompt.github.io +InstructPix2Pix,InstructPix2Pix,1043.9312648233226,1028.7932718869638,"Copyright 2023 Timothy Brooks, Aleksander Holynski, Alexei A. Efros","University of California, Berkeley",https://www.timothybrooks.com/instruct-pix2pix +PNP,PNP,1022.4342554377677,1043.322342347598,-,Weizmann Institute of Science,https://github.com/MichalGeyer/plug-and-play +Pix2PixZero,Pix2PixZero,891.2979039265506,886.7359371585381,MIT License,"Carnegie Mellon University, Adobe Research",https://pix2pixzero.github.io +SDEdit,SDEdit,890.443823405714,880.5508125882768,MIT License,Stanford University,https://sde-image-editing.github.io +CycleDiffusion,CycleDiffusion,850.4930113803264,836.4878093946726,X11,Carnegie Mellon University,https://github.com/ChenWu98/cycle-diffusion diff --git a/arena_elo/results/latest/t2i_generation_leaderboard.csv b/arena_elo/results/latest/t2i_generation_leaderboard.csv new file mode 100644 index 0000000000000000000000000000000000000000..665d340a9368e016ca65ab96f829ce3b899c70c9 --- /dev/null +++ b/arena_elo/results/latest/t2i_generation_leaderboard.csv @@ -0,0 +1,12 @@ +key,Model,Arena Elo rating (anony),Arena Elo rating (full),License,Organization,Link +SDXL,SDXL,0,0,openrail++,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0 +SDXLTurbo,SDXLTurbo,0,0,sai-nc-community (other),Stability AI,https://huggingface.co/stabilityai/sdxl-turbo +LCM(v1.5/XL),LCM(v1.5/XL),0,0,openrail++,Latent Consistency,https://fal.ai/models/fal-ai/fast-lcm-diffusion/api +OpenJourney,OpenJourney,0,0,creativeml-openrail-m,PromptHero,https://huggingface.co/prompthero/openjourney +LCM,LCM,0,0,MIT License,Tsinghua University,https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7 +PixArtAlpha,PixArtAlpha,0,0,openrail++,PixArt-alpha,https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS +PixArtSigma,PixArtSigma,0,0,openrail++,PixArt-alpha,https://fal.ai/models/fal-ai/pixart-sigma +StableCascade,StableCascade,0,0,stable-cascade-nc-community (other),Stability AI,https://huggingface.co/stabilityai/stable-cascade +PlayGround V2.5,PlayGround V2.5,0,0,Playground v2.5 Community License,Playground,https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic +PlayGround V2,PlayGround V2,0,0,Playground v2 Community License,Playground,https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic +SDXLLightning,SDXLLightning,0,0,openrail++,ByteDance,https://huggingface.co/ByteDance/SDXL-Lightning \ No newline at end of file diff --git a/arena_elo/simple_test.py b/arena_elo/simple_test.py new file mode 100644 index 0000000000000000000000000000000000000000..6e52ac57444e7fc3e53991379de196e3e9844955 --- /dev/null +++ b/arena_elo/simple_test.py @@ -0,0 +1,16 @@ +import pickle +with open("./results/latest/elo_results.pkl",'rb') as f: + data = pickle.load(f) + print() + df = data["anony"]["leaderboard_table_df"] + # sort by rating + df = df.sort_values(by=["rating"], ascending=False) + print(df) + + print() + + df = data["full"]["leaderboard_table_df"] + # sort by rating + df = df.sort_values(by=["rating"], ascending=False) + print(df) + print('done') \ No newline at end of file diff --git a/arena_elo/update_elo_rating.sh b/arena_elo/update_elo_rating.sh new file mode 100644 index 0000000000000000000000000000000000000000..f7d5e5d953dfc842cc0c2ce2ef853add86fd86fc --- /dev/null +++ b/arena_elo/update_elo_rating.sh @@ -0,0 +1,49 @@ +# set LOGDIR to default if not set before +if [ -z "$LOGDIR" ]; then + echo "LOGDIR is not set. Using default '../GenAI-Arena-hf-logs/vote_log'" + export LOGDIR="../GenAI-Arena-hf-logs/vote_log" +fi + +mkdir -p results + +# # for battle data +python -m elo_rating.clean_battle_data --task_name "image_editing" +edition_battle_cutoff_date=`cat cut_off_date.txt` && rm cut_off_date.txt && echo "Image editing battle data last updated on $edition_battle_cutoff_date" + +python -m elo_rating.clean_battle_data --task_name "t2i_generation" +generation_battle_cutoff_date=`cat cut_off_date.txt` && rm cut_off_date.txt && echo "T2I image generation battle data last updated on $generation_battle_cutoff_date" + +mkdir -p ./results/$edition_battle_cutoff_date +mkdir -p ./results/$generation_battle_cutoff_date + +cp clean_battle_image_editing_$edition_battle_cutoff_date.json ./results/latest/clean_battle_image_editing.json +cp clean_battle_t2i_generation_$generation_battle_cutoff_date.json ./results/latest/clean_battle_t2i_generation.json +mv clean_battle_image_editing_$edition_battle_cutoff_date.json ./results/$edition_battle_cutoff_date/clean_battle_image_editing.json +mv clean_battle_t2i_generation_$generation_battle_cutoff_date.json ./results/$generation_battle_cutoff_date/clean_battle_t2i_generation.json + + +python3 -m elo_rating.elo_analysis --clean-battle-file ./results/$edition_battle_cutoff_date/clean_battle_image_editing.json +mv ./elo_results_$edition_battle_cutoff_date.pkl ./results/$edition_battle_cutoff_date/elo_results_image_editing.pkl + +python3 -m elo_rating.elo_analysis --clean-battle-file ./results/$generation_battle_cutoff_date/clean_battle_t2i_generation.json +mv ./elo_results_$generation_battle_cutoff_date.pkl ./results/$generation_battle_cutoff_date/elo_results_t2i_generation.pkl + +# generat the leaderboard + +python -m elo_rating.generate_leaderboard \ + --model_info_file "./edition_model_info.json" \ + --elo_rating_pkl "./results/$edition_battle_cutoff_date/elo_results_image_editing.pkl" \ + --output_csv "./results/$edition_battle_cutoff_date/image_editing_leaderboard.csv" + +python -m elo_rating.generate_leaderboard \ + --model_info_file "./generation_model_info.json" \ + --elo_rating_pkl "./results/$generation_battle_cutoff_date/elo_results_t2i_generation.pkl" \ + --output_csv "./results/$generation_battle_cutoff_date/t2i_generation_leaderboard.csv" + +mkdir -p ./results/latest +cp ./results/$edition_battle_cutoff_date/image_editing_leaderboard.csv ./results/latest/image_editing_leaderboard.csv +cp ./results/$generation_battle_cutoff_date/t2i_generation_leaderboard.csv ./results/latest/t2i_generation_leaderboard.csv +cp ./results/$edition_battle_cutoff_date/elo_results_image_editing.pkl ./results/latest/elo_results_image_editing.pkl +cp ./results/$generation_battle_cutoff_date/elo_results_t2i_generation.pkl ./results/latest/elo_results_t2i_generation.pkl + + diff --git a/examples/.DS_Store b/examples/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 Binary files /dev/null and b/examples/.DS_Store differ diff --git a/examples/banana.jpg b/examples/banana.jpg new file mode 100644 index 0000000000000000000000000000000000000000..767494ade2b61358d24becbcf3e2a79075580ebb Binary files /dev/null and b/examples/banana.jpg differ diff --git a/examples/cat.jpeg b/examples/cat.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2213b1132d8fd8e9f15c9575c413ffc38acb5534 Binary files /dev/null and b/examples/cat.jpeg differ diff --git a/examples/city.jpg b/examples/city.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9586912bba8b38146801166031773e4b08186f26 Binary files /dev/null and b/examples/city.jpg differ diff --git a/examples/dog.jpg b/examples/dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bf54cb6a2659e25bdc4e9907d9cd971cb8bde71 Binary files /dev/null and b/examples/dog.jpg differ diff --git a/examples/duck.jpg b/examples/duck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd8ed15cfca160daa213a97b9dd964c8c55093ed --- /dev/null +++ b/examples/duck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba499b554d5d6344d72411643f76a678a86fa09d90912507d32b4d8f016fbc7d +size 1490146 diff --git a/examples/duck_hat.jpg b/examples/duck_hat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..327e7f0e1d9c33d9c3b9ec2b018d31ab6fb950a2 Binary files /dev/null and b/examples/duck_hat.jpg differ diff --git a/examples/fire.jpg b/examples/fire.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f374230d3612db0b1dacf23f434578f2cad584b Binary files /dev/null and b/examples/fire.jpg differ diff --git a/examples/mouse.jpg b/examples/mouse.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5912ac14ce1c6aa79942337821824aa0852f659 Binary files /dev/null and b/examples/mouse.jpg differ diff --git a/examples/oranges.jpg b/examples/oranges.jpg new file mode 100644 index 0000000000000000000000000000000000000000..160f82810e65281feb1a0e240fdb18ea87d48cde Binary files /dev/null and b/examples/oranges.jpg differ diff --git a/examples/pig.jpg b/examples/pig.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1324473af4ec044fc63c91d5d8411d4201408263 Binary files /dev/null and b/examples/pig.jpg differ diff --git a/examples/rabbit.jpg b/examples/rabbit.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03ffea36728a378a4af5b9bebe1865f305d0a2f5 Binary files /dev/null and b/examples/rabbit.jpg differ diff --git a/examples/strawberries.jpg b/examples/strawberries.jpg new file mode 100644 index 0000000000000000000000000000000000000000..673dfa44a61240472c7cf16d9aeb9bc2e306fe11 Binary files /dev/null and b/examples/strawberries.jpg differ diff --git a/model/__init__.py b/model/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/model/fetch_museum_results/__init__.py b/model/fetch_museum_results/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5d81c75a1dafd13bbd4962a2d3f9e7659aa0d834 --- /dev/null +++ b/model/fetch_museum_results/__init__.py @@ -0,0 +1,62 @@ +from .imagen_museum import TASK_DICT, DOMAIN +from .imagen_museum import fetch_indexes +import random + +ARENA_TO_IG_MUSEUM = {"LCM(v1.5/XL)":"LCM", + "PlayGroundV2.5": "PlayGroundV2_5"} + +def draw2_from_imagen_museum(task, model_name1, model_name2, model_name3, model_name4): + task_name = TASK_DICT[task] + model_name1 = ARENA_TO_IG_MUSEUM[model_name1] if model_name1 in ARENA_TO_IG_MUSEUM else model_name1 + model_name2 = ARENA_TO_IG_MUSEUM[model_name2] if model_name2 in ARENA_TO_IG_MUSEUM else model_name2 + model_name3 = ARENA_TO_IG_MUSEUM[model_name3] if model_name3 in ARENA_TO_IG_MUSEUM else model_name3 + model_name4 = ARENA_TO_IG_MUSEUM[model_name4] if model_name4 in ARENA_TO_IG_MUSEUM else model_name4 + + domain = DOMAIN + baselink = domain + task_name + + matched_results = fetch_indexes(baselink) + r = random.Random() + uid, value = r.choice(list(matched_results.items())) + image_link_1 = baselink + "/" + model_name1 + "/" + uid + image_link_2 = baselink + "/" + model_name2 + "/" + uid + image_link_3 = baselink + "/" + model_name3 + "/" + uid + image_link_4 = baselink + "/" + model_name4 + "/" + uid + + if task == "t2i": # Image Gen + prompt = value['prompt'] + return [[image_link_1, image_link_2, image_link_3, image_link_4], [prompt]] + if task == "tie": # Image Edit + instruction = value['instruction'] + input_caption = value['source_global_caption'] + output_caption = value['target_global_caption'] + source_image_link = baselink + "/" + "input" + "/" + uid + return [[source_image_link, image_link_1, image_link_2, image_link_3, image_link_4], [input_caption, output_caption, instruction]] + else: + raise ValueError("Task not supported") + +def draw_from_imagen_museum(task, model_name): + task_name = TASK_DICT[task] + model_name = ARENA_TO_IG_MUSEUM[model_name] if model_name in ARENA_TO_IG_MUSEUM else model_name + + domain = DOMAIN + baselink = domain + task_name + + matched_results = fetch_indexes(baselink) + r = random.Random() + uid, value = r.choice(list(matched_results.items())) + model = model_name + image_link = baselink + "/" + model + "/" + uid + print(image_link) + + if task == "t2i": # Image Gen + prompt = value['prompt'] + return [image_link, prompt] + if task == "tie": # Image Edit + instruction = value['instruction'] + input_caption = value['source_global_caption'] + output_caption = value['target_global_caption'] + source_image_link = baselink + "/" + "input" + "/" + uid + return [[source_image_link, image_link], [input_caption, output_caption, instruction]] + else: + raise ValueError("Task not supported") diff --git a/model/fetch_museum_results/imagen_museum/__init__.py b/model/fetch_museum_results/imagen_museum/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f5414bd2dcf42fe73c0a0ca973357f3ab22b0fc1 --- /dev/null +++ b/model/fetch_museum_results/imagen_museum/__init__.py @@ -0,0 +1,129 @@ +import csv +import requests +from io import StringIO +from typing import Union, Optional, Tuple +from PIL import Image +import random + +__version__ = "0.0.1_GenAI_Arena" + +DOMAIN = "https://chromaica.github.io/Museum/" + +TASK_DICT = { + "t2i": "ImagenHub_Text-Guided_IG", + "tie": "ImagenHub_Text-Guided_IE", + "mie": "ImagenHub_Control-Guided_IG", + "cig": "ImagenHub_Control-Guided_IE", + "msdig": "ImagenHub_Multi-Concept_IC", + "sdig": "ImagenHub_Subject-Driven_IG", + "sdie": "ImagenHub_Subject-Driven_IE" +} + +t2i_models= [ + "SD", + "SDXL", + "OpenJourney", + "DeepFloydIF", + "DALLE2" + ] + +mie_models = [ + "Glide", + "SDInpaint", + "BlendedDiffusion", + "SDXLInpaint" + ] + +tie_models = [ + "DiffEdit", + "MagicBrush", + "InstructPix2Pix", + "Prompt2prompt", + "Text2Live", + "SDEdit", + "CycleDiffusion", + "Pix2PixZero" + ] + +sdig_models = [ + "DreamBooth", + "DreamBoothLora", + "TextualInversion", + "BLIPDiffusion_Gen" + ] + +sdie_models = [ + "PhotoSwap", + "DreamEdit", + "BLIPDiffusion_Edit" + ] + +msdig_models = [ + "DreamBooth", + "CustomDiffusion", + "TextualInversion" + ] + +cig_models = [ + "ControlNet", + "UniControl" + ] + +def fetch_csv_keys(url): + """ + Fetches a CSV file from a given URL and parses it into a list of keys, + ignoring the header line. + """ + response = requests.get(url) + response.raise_for_status() # Ensure we notice bad responses + + # Use StringIO to turn the fetched text data into a file-like object + csv_file = StringIO(response.text) + + # Create a CSV reader + csv_reader = csv.reader(csv_file) + + # Skip the header + next(csv_reader, None) + + # Return the list of keys + return [row[0] for row in csv_reader if row] + +def fetch_json_data(url): + """ + Fetches JSON data from a given URL. + """ + response = requests.get(url) + response.raise_for_status() + return response.json() + +def fetch_data_and_match(csv_url, json_url): + """ + Fetches a list of keys from a CSV and then fetches JSON data and matches the keys to the JSON. + """ + # Fetch keys from CSV + keys = fetch_csv_keys(csv_url) + + # Fetch JSON data + json_data = fetch_json_data(json_url) + + # Extract relevant data using keys + matched_data = {key: json_data.get(key) for key in keys if key in json_data} + + return matched_data + +def fetch_indexes(baselink): + matched_results = fetch_data_and_match(baselink+"/dataset_lookup.csv", baselink+"/dataset_lookup.json") + return matched_results + +if __name__ == "__main__": + domain = "https://chromaica.github.io/Museum/" + baselink = domain + "ImagenHub_Text-Guided_IE" + matched_results = fetch_indexes(baselink) + for uid, value in matched_results.items(): + print(uid) + model = "CycleDiffusion" + image_link = baselink + "/" + model + "/" + uid + print(image_link) + instruction = value['instruction'] + print(instruction) diff --git a/model/matchmaker.py b/model/matchmaker.py new file mode 100644 index 0000000000000000000000000000000000000000..cdcba9d35a460e881a880f5decd9d4145531b166 --- /dev/null +++ b/model/matchmaker.py @@ -0,0 +1,83 @@ +import numpy as np +import json +from trueskill import TrueSkill +import paramiko +import io, os +import sys +sys.path.append('../') +from serve.constants import SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD, SSH_SKILL, SSH_SKILL_M + + +trueskill_env = TrueSkill() + +def ucb_score(trueskill_diff, t, n): + exploration_term = np.sqrt((2 * np.log(t + 1e-5)) / (n + 1e-5)) + ucb = -trueskill_diff + 1.0 * exploration_term + return ucb + +def update_trueskill(ratings, ranks): + new_ratings = trueskill_env.rate(ratings, ranks) + return new_ratings + +def serialize_rating(rating): + return {'mu': rating.mu, 'sigma': rating.sigma} + +def deserialize_rating(rating_dict): + return trueskill_env.Rating(mu=rating_dict['mu'], sigma=rating_dict['sigma']) + +def create_ssh_client(server, port, user, password): + ssh = paramiko.SSHClient() + ssh.load_system_host_keys() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + ssh.connect(server, port, user, password) + return ssh + +def save_json_via_sftp(ratings, comparison_counts, total_comparisons): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + data = { + 'ratings': [serialize_rating(r) for r in ratings], + 'comparison_counts': comparison_counts.tolist(), + 'total_comparisons': total_comparisons + } + json_data = json.dumps(data) + sftp = ssh.open_sftp() + with sftp.open(SSH_SKILL, 'w') as f: + f.write(json_data) + +def load_json_via_sftp(): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + sftp = ssh.open_sftp() + with sftp.open(SSH_SKILL, 'r') as f: + data = json.load(f) + ratings = [deserialize_rating(r) for r in data['ratings']] + comparison_counts = np.array(data['comparison_counts']) + total_comparisons = data['total_comparisons'] + return ratings, comparison_counts, total_comparisons + + +def matchmaker(num_players, k_group=4): + trueskill_env = TrueSkill() + + ratings, comparison_counts, total_comparisons = load_json_via_sftp() + + # Randomly select a player + selected_player = np.random.randint(0, num_players) + + selected_trueskill_score = trueskill_env.expose(ratings[selected_player]) + trueskill_scores = np.array([trueskill_env.expose(p) for p in ratings]) + trueskill_diff = np.abs(trueskill_scores - selected_trueskill_score) + n = comparison_counts[selected_player] + ucb_scores = ucb_score(trueskill_diff, total_comparisons, n) + + # Exclude self, select opponent with highest UCB score + ucb_scores[selected_player] = -float('inf') # minimize the score for the selected player to exclude it + opponents = np.argsort(ucb_scores)[-k_group + 1:].tolist() + + # Group players + model_ids = [selected_player] + opponents + + from serve.update_skill import Model_ID + Model_ID.group = model_ids + + return model_ids + diff --git a/model/model_manager.py b/model/model_manager.py new file mode 100644 index 0000000000000000000000000000000000000000..ebd21b2b8469d6bfe0e3ecf47b6e90c386a7ffbd --- /dev/null +++ b/model/model_manager.py @@ -0,0 +1,168 @@ +import concurrent.futures +import random +import gradio as gr +import requests +import io, base64, json +import spaces +from PIL import Image +from .models import IMAGE_GENERATION_MODELS, IMAGE_EDITION_MODELS, load_pipeline +from .fetch_museum_results import draw_from_imagen_museum, draw2_from_imagen_museum + +class ModelManager: + def __init__(self): + self.model_ig_list = IMAGE_GENERATION_MODELS + self.model_ie_list = IMAGE_EDITION_MODELS + self.loaded_models = {} + + def load_model_pipe(self, model_name): + if not model_name in self.loaded_models: + pipe = load_pipeline(model_name) + self.loaded_models[model_name] = pipe + else: + pipe = self.loaded_models[model_name] + return pipe + + @spaces.GPU(duration=120) + def generate_image_ig(self, prompt, model_name): + pipe = self.load_model_pipe(model_name) + result = pipe(prompt=prompt) + return result + + def generate_image_ig_api(self, prompt, model_name): + pipe = self.load_model_pipe(model_name) + result = pipe(prompt=prompt) + return result + + def generate_image_ig_museum(self, model_name): + model_name = model_name.split('_')[1] + result_list = draw_from_imagen_museum("t2i", model_name) + image_link = result_list[0] + prompt = result_list[1] + + return image_link, prompt + + + def generate_image_ig_parallel_anony(self, prompt, model_A, model_B, model_C, model_D): + if model_A == "" and model_B == "" and model_C == "" and model_D == "": + # model_names = random.sample([model for model in self.model_ig_list], 4) + from .matchmaker import matchmaker + model_ids = matchmaker(num_players=len(self.model_ig_list)) + model_names = [self.model_ig_list[i] for i in model_ids] + else: + model_names = [model_A, model_B, model_C, model_D] + + # with concurrent.futures.ThreadPoolExecutor() as executor: + # futures = [executor.submit(self.generate_image_ig, prompt, model) if model.startswith("imagenhub") + # else executor.submit(self.generate_image_ig_api, prompt, model) for model in model_names] + # results = [future.result() for future in futures] + + + results = [self.generate_image_ig(prompt, model) for model in model_names] + # results = [future.result() for future in futures] + return results[0], results[1], results[2], results[3], \ + model_names[0], model_names[1], model_names[2], model_names[3] + + def generate_image_ig_museum_parallel_anony(self, model_A, model_B, model_C, model_D): + if model_A == "" and model_B == "" and model_C == "" and model_D == "": + # model_names = random.sample([model for model in self.model_ig_list], 4) + from .matchmaker import matchmaker + model_ids = matchmaker(num_players=len(self.model_ig_list)) + model_names = [self.model_ig_list[i] for i in model_ids] + else: + model_names = [model_A, model_B, model_C, model_D] + + with concurrent.futures.ThreadPoolExecutor() as executor: + model_1 = model_names[0].split('_')[1] + model_2 = model_names[1].split('_')[1] + model_3 = model_names[2].split('_')[1] + model_4 = model_names[3].split('_')[1] + + result_list = draw2_from_imagen_museum("t2i", model_1, model_2, model_3, model_4) + image_links = result_list[0] + prompt_list = result_list[1] + print(prompt_list[0]) + + return image_links[0], image_links[1], image_links[2], image_links[3], \ + model_names[0], model_names[1], model_names[2], model_names[3], prompt_list[0] + + def generate_image_ig_parallel(self, prompt, model_A, model_B): + model_names = [model_A, model_B] + with concurrent.futures.ThreadPoolExecutor() as executor: + futures = [executor.submit(self.generate_image_ig, prompt, model) if model.startswith("imagenhub") + else executor.submit(self.generate_image_ig_api, prompt, model) for model in model_names] + results = [future.result() for future in futures] + return results[0], results[1] + + def generate_image_ig_museum_parallel(self, model_A, model_B): + with concurrent.futures.ThreadPoolExecutor() as executor: + model_1 = model_A.split('_')[1] + model_2 = model_B.split('_')[1] + result_list = draw2_from_imagen_museum("t2i", model_1, model_2) + image_links = result_list[0] + prompt_list = result_list[1] + return image_links[0], image_links[1], prompt_list[0] + + + @spaces.GPU(duration=200) + def generate_image_ie(self, textbox_source, textbox_target, textbox_instruct, source_image, model_name): + pipe = self.load_model_pipe(model_name) + result = pipe(src_image = source_image, src_prompt = textbox_source, target_prompt = textbox_target, instruct_prompt = textbox_instruct) + return result + + def generate_image_ie_museum(self, model_name): + model_name = model_name.split('_')[1] + result_list = draw_from_imagen_museum("tie", model_name) + image_links = result_list[0] + prompt_list = result_list[1] + # image_links = [src, model] + # prompt_list = [source_caption, target_caption, instruction] + return image_links[0], image_links[1], prompt_list[0], prompt_list[1], prompt_list[2] + + def generate_image_ie_parallel(self, textbox_source, textbox_target, textbox_instruct, source_image, model_A, model_B): + model_names = [model_A, model_B] + with concurrent.futures.ThreadPoolExecutor() as executor: + futures = [ + executor.submit(self.generate_image_ie, textbox_source, textbox_target, textbox_instruct, source_image, + model) for model in model_names] + results = [future.result() for future in futures] + return results[0], results[1] + + def generate_image_ie_museum_parallel(self, model_A, model_B): + model_names = [model_A, model_B] + with concurrent.futures.ThreadPoolExecutor() as executor: + model_1 = model_names[0].split('_')[1] + model_2 = model_names[1].split('_')[1] + result_list = draw2_from_imagen_museum("tie", model_1, model_2) + image_links = result_list[0] + prompt_list = result_list[1] + # image_links = [src, model_A, model_B] + # prompt_list = [source_caption, target_caption, instruction] + return image_links[0], image_links[1], image_links[2], prompt_list[0], prompt_list[1], prompt_list[2] + + def generate_image_ie_parallel_anony(self, textbox_source, textbox_target, textbox_instruct, source_image, model_A, model_B): + if model_A == "" and model_B == "": + model_names = random.sample([model for model in self.model_ie_list], 2) + else: + model_names = [model_A, model_B] + with concurrent.futures.ThreadPoolExecutor() as executor: + futures = [executor.submit(self.generate_image_ie, textbox_source, textbox_target, textbox_instruct, source_image, model) for model in model_names] + results = [future.result() for future in futures] + return results[0], results[1], model_names[0], model_names[1] + + def generate_image_ie_museum_parallel_anony(self, model_A, model_B): + if model_A == "" and model_B == "": + model_names = random.sample([model for model in self.model_ie_list], 2) + else: + model_names = [model_A, model_B] + with concurrent.futures.ThreadPoolExecutor() as executor: + model_1 = model_names[0].split('_')[1] + model_2 = model_names[1].split('_')[1] + result_list = draw2_from_imagen_museum("tie", model_1, model_2) + image_links = result_list[0] + prompt_list = result_list[1] + # image_links = [src, model_A, model_B] + # prompt_list = [source_caption, target_caption, instruction] + return image_links[0], image_links[1], image_links[2], prompt_list[0], prompt_list[1], prompt_list[2], model_names[0], model_names[1] + + + raise NotImplementedError \ No newline at end of file diff --git a/model/model_registry.py b/model/model_registry.py new file mode 100644 index 0000000000000000000000000000000000000000..e64464ee7d908f1541289c245763e4291824a1f7 --- /dev/null +++ b/model/model_registry.py @@ -0,0 +1,231 @@ +from collections import namedtuple +from typing import List + +ModelInfo = namedtuple("ModelInfo", ["simple_name", "link", "description"]) +model_info = {} + +def register_model_info( + full_names: List[str], simple_name: str, link: str, description: str +): + info = ModelInfo(simple_name, link, description) + + for full_name in full_names: + model_info[full_name] = info + +def get_model_info(name: str) -> ModelInfo: + if name in model_info: + return model_info[name] + else: + # To fix this, please use `register_model_info` to register your model + return ModelInfo( + name, "", "Register the description at fastchat/model/model_registry.py" + ) + +def get_model_description_md(model_list): + model_description_md = """ +| | | | +| ---- | ---- | ---- | +""" + ct = 0 + visited = set() + for i, name in enumerate(model_list): + minfo = get_model_info(name) + if minfo.simple_name in visited: + continue + visited.add(minfo.simple_name) + one_model_md = f"[{minfo.simple_name}]({minfo.link}): {minfo.description}" + + if ct % 3 == 0: + model_description_md += "|" + model_description_md += f" {one_model_md} |" + if ct % 3 == 2: + model_description_md += "\n" + ct += 1 + return model_description_md + +# regist image generation models + +register_model_info( + ["imagenhub_LCM_generation", "fal_LCM_text2image"], + "LCM", + "https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7", + "Latent Consistency Models.", +) + +register_model_info( + ["fal_LCM(v1.5/XL)_text2image"], + "LCM(v1.5/XL)", + "https://fal.ai/models/fast-lcm-diffusion-turbo", + "Latent Consistency Models (v1.5/XL)", +) + +register_model_info( + ["imagenhub_PlayGroundV2_generation", 'playground_PlayGroundV2_generation'], + "Playground v2", + "https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic", + "Playground v2 – 1024px Aesthetic Model", +) + +register_model_info( + ["imagenhub_PlayGroundV2.5_generation", 'playground_PlayGroundV2.5_generation'], + "Playground v2.5", + "https://huggingface.co/playgroundai/playground-v2.5-1024px-aesthetic", + "Playground v2.5 is the state-of-the-art open-source model in aesthetic quality", +) + +register_model_info( + ["imagenhub_OpenJourney_generation"], + "Openjourney", + "https://huggingface.co/prompthero/openjourney", + "Openjourney is an open source Stable Diffusion fine tuned model on Midjourney images, by PromptHero.", +) + +register_model_info( + ["imagenhub_SDXLTurbo_generation", "fal_SDXLTurbo_text2image"], + "SDXLTurbo", + "https://huggingface.co/stabilityai/sdxl-turbo", + "SDXL-Turbo is a fast generative text-to-image model.", +) + +register_model_info( + ["imagenhub_SDXL_generation", "fal_SDXL_text2image"], + "SDXL", + "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0", + "SDXL is a Latent Diffusion Model that uses two fixed, pretrained text encoders.", +) + +register_model_info( + ["imagenhub_PixArtAlpha_generation"], + "PixArtAlpha", + "https://huggingface.co/PixArt-alpha/PixArt-XL-2-1024-MS", + "Pixart-α consists of pure transformer blocks for latent diffusion.", +) + +register_model_info( + ["imagenhub_PixArtSigma_generation", "fal_PixArtSigma_text2image"], + "PixArtSigma", + "https://github.com/PixArt-alpha/PixArt-sigma", + "Improved version of Pixart-α.", +) + +register_model_info( + ["imagenhub_SDXLLightning_generation", "fal_SDXLLightning_text2image"], + "SDXL-Lightning", + "https://huggingface.co/ByteDance/SDXL-Lightning", + "SDXL-Lightning is a lightning-fast text-to-image generation model.", +) + +register_model_info( + ["imagenhub_StableCascade_generation", "fal_StableCascade_text2image"], + "StableCascade", + "https://huggingface.co/stabilityai/stable-cascade", + "StableCascade is built upon the Würstchen architecture and working at a much smaller latent space.", +) + +# regist image edition models +register_model_info( + ["imagenhub_CycleDiffusion_edition"], + "CycleDiffusion", + "https://github.com/ChenWu98/cycle-diffusion?tab=readme-ov-file", + "A latent space for stochastic diffusion models.", +) + +register_model_info( + ["imagenhub_Pix2PixZero_edition"], + "Pix2PixZero", + "https://pix2pixzero.github.io/", + "A zero-shot Image-to-Image translation model.", +) + +register_model_info( + ["imagenhub_Prompt2prompt_edition"], + "Prompt2prompt", + "https://prompt-to-prompt.github.io/", + "Image Editing with Cross-Attention Control.", +) + + +register_model_info( + ["imagenhub_InstructPix2Pix_edition"], + "InstructPix2Pix", + "https://www.timothybrooks.com/instruct-pix2pix", + "An instruction-based image editing model.", +) + +register_model_info( + ["imagenhub_MagicBrush_edition"], + "MagicBrush", + "https://osu-nlp-group.github.io/MagicBrush/", + "Manually Annotated Dataset for Instruction-Guided Image Editing.", +) + +register_model_info( + ["imagenhub_PNP_edition"], + "PNP", + "https://github.com/MichalGeyer/plug-and-play", + "Plug-and-Play Diffusion Features for Text-Driven Image-to-Image Translation.", +) + +register_model_info( + ["imagenhub_InfEdit_edition"], + "InfEdit", + "https://sled-group.github.io/InfEdit/", + "Inversion-Free Image Editing with Natural Language.", +) + +register_model_info( + ["imagenhub_CosXLEdit_edition"], + "CosXLEdit", + "https://huggingface.co/stabilityai/cosxl", + "An instruction-based image editing model from SDXL.", +) + +register_model_info( + ["fal_stable-cascade_text2image"], + "StableCascade", + "https://fal.ai/models/stable-cascade/api", + "StableCascade is a generative model that can generate high-quality images from text prompts.", +) + +register_model_info( + ["fal_AnimateDiff_text2video"], + "AnimateDiff", + "https://fal.ai/models/fast-animatediff-t2v", + "AnimateDiff is a text-driven models that produce diverse and personalized animated images.", +) + +register_model_info( + ["fal_AnimateDiffTurbo_text2video"], + "AnimateDiff Turbo", + "https://fal.ai/models/fast-animatediff-t2v-turbo", + "AnimateDiff Turbo is a lightning version of AnimateDiff.", +) + +register_model_info( + ["videogenhub_LaVie_generation"], + "LaVie", + "https://github.com/Vchitect/LaVie", + "LaVie is a video generation model with cascaded latent diffusion models.", +) + +register_model_info( + ["videogenhub_VideoCrafter2_generation"], + "VideoCrafter2", + "https://ailab-cvc.github.io/videocrafter2/", + "VideoCrafter2 is a T2V model that disentangling motion from appearance.", +) + +register_model_info( + ["videogenhub_ModelScope_generation"], + "ModelScope", + "https://arxiv.org/abs/2308.06571", + "ModelScope is a a T2V synthesis model that evolves from a T2I synthesis model.", +) + +register_model_info( + ["videogenhub_OpenSora_generation"], + "OpenSora", + "https://github.com/hpcaitech/Open-Sora", + "A community-driven opensource implementation of Sora.", +) + diff --git a/model/models/__init__.py b/model/models/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..b0910b500ac40dfd460e4249dff844dfef929ea4 --- /dev/null +++ b/model/models/__init__.py @@ -0,0 +1,66 @@ +from .imagenhub_models import load_imagenhub_model +# from .playground_api import load_playground_model +from .fal_api_models import load_fal_model +# from .videogenhub_models import load_videogenhub_model +# from .huggingface_models import load_huggingface_model + +# IMAGE_GENERATION_MODELS = ['huggingface_SD-v1.5_text2image', +# 'huggingface_SD-v2.1_text2image', +# 'huggingface_SD-XL-v1.0_text2image', +# 'huggingface_IF-I-XL-v1.0_text2image', +# ] +IMAGE_GENERATION_MODELS = [ 'imagenhub_SD_generation', + 'imagenhub_SDXL_generation', + 'imagenhub_OpenJourney_generation', + 'imagenhub_LCM_generation', + 'imagenhub_DeepFloydIF_generation', + 'imagenhub_PixArtAlpha_generation', + 'imagenhub_Kandinsky_generation', + ] +# IMAGE_GENERATION_MODELS = [ 'imagenhub_SD_generation', +# 'imagenhub_SD_generation', +# 'imagenhub_SD_generation', +# 'imagenhub_SD_generation', +# ] +# IMAGE_GENERATION_MODELS = ['fal_LCM(v1.5/XL)_text2image', +# 'fal_SDXLTurbo_text2image', +# 'fal_SDXL_text2image', +# 'imagenhub_PixArtAlpha_generation', +# 'fal_PixArtSigma_text2image', +# 'imagenhub_OpenJourney_generation', +# 'fal_SDXLLightning_text2image', +# 'fal_StableCascade_text2image', +# ] +IMAGE_EDITION_MODELS = ['imagenhub_CycleDiffusion_edition', 'imagenhub_Pix2PixZero_edition', 'imagenhub_Prompt2prompt_edition', + 'imagenhub_SDEdit_edition', 'imagenhub_InstructPix2Pix_edition', + 'imagenhub_MagicBrush_edition', 'imagenhub_PNP_edition', + 'imagenhub_InfEdit_edition', 'imagenhub_CosXLEdit_edition'] +VIDEO_GENERATION_MODELS = ['fal_AnimateDiff_text2video', + 'fal_AnimateDiffTurbo_text2video', + 'videogenhub_LaVie_generation', 'videogenhub_VideoCrafter2_generation', + 'videogenhub_ModelScope_generation', 'videogenhub_OpenSora_generation'] + + +def load_pipeline(model_name): + """ + Load a model pipeline based on the model name + Args: + model_name (str): The name of the model to load, should be of the form {source}_{name}_{type} + the source can be either imagenhub or playground + the name is the name of the model used to load the model + the type is the type of the model, either generation or edition + """ + model_source, model_name, model_type = model_name.split("_") + # if model_source == "huggingface": + # pipe = load_huggingface_model(model_name) + if model_source == "imagenhub": + pipe = load_imagenhub_model(model_name, model_type) + # elif model_source == "playground": + # pipe = load_playground_model(model_name) + elif model_source == "fal": + pipe = load_fal_model(model_name, model_type) + # elif model_source == "videogenhub": + # pipe = load_videogenhub_model(model_name) + else: + raise ValueError(f"Model source {model_source} not supported") + return pipe \ No newline at end of file diff --git a/model/models/fal_api_models.py b/model/models/fal_api_models.py new file mode 100644 index 0000000000000000000000000000000000000000..348f5fe1148b86ff7bfbb692c72f6e85c28bdbb1 --- /dev/null +++ b/model/models/fal_api_models.py @@ -0,0 +1,103 @@ +import fal_client +from PIL import Image +import requests +import io +import os +import base64 + +FAL_MODEl_NAME_MAP = {"SDXL": "fast-sdxl", "SDXLTurbo": "fast-turbo-diffusion", "SDXLLightning": "fast-lightning-sdxl", + "LCM(v1.5/XL)": "fast-lcm-diffusion", "PixArtSigma": "pixart-sigma", "StableCascade": "stable-cascade"} + +class FalModel(): + def __init__(self, model_name, model_type): + self.model_name = model_name + self.model_type = model_type + os.environ['FAL_KEY'] = os.environ['FalAPI'] + + def __call__(self, *args, **kwargs): + def decode_data_url(data_url): + # Find the start of the Base64 encoded data + base64_start = data_url.find(",") + 1 + if base64_start == 0: + raise ValueError("Invalid data URL provided") + + # Extract the Base64 encoded data + base64_string = data_url[base64_start:] + + # Decode the Base64 string + decoded_bytes = base64.b64decode(base64_string) + + return decoded_bytes + + if self.model_type == "text2image": + assert "prompt" in kwargs, "prompt is required for text2image model" + handler = fal_client.submit( + f"fal-ai/{FAL_MODEl_NAME_MAP[self.model_name]}", + arguments={ + "prompt": kwargs["prompt"] + }, + ) + for event in handler.iter_events(with_logs=True): + if isinstance(event, fal_client.InProgress): + print('Request in progress') + print(event.logs) + result = handler.get() + print(result) + result_url = result['images'][0]['url'] + if self.model_name in ["SDXLTurbo", "LCM(v1.5/XL)"]: + result_url = io.BytesIO(decode_data_url(result_url)) + result = Image.open(result_url) + else: + response = requests.get(result_url) + result = Image.open(io.BytesIO(response.content)) + return result + elif self.model_type == "image2image": + raise NotImplementedError("image2image model is not implemented yet") + # assert "image" in kwargs or "image_url" in kwargs, "image or image_url is required for image2image model" + # if "image" in kwargs: + # image_url = None + # pass + # handler = fal_client.submit( + # f"fal-ai/{self.model_name}", + # arguments={ + # "image_url": image_url + # }, + # ) + # + # for event in handler.iter_events(): + # if isinstance(event, fal_client.InProgress): + # print('Request in progress') + # print(event.logs) + # + # result = handler.get() + # return result + elif self.model_type == "text2video": + assert "prompt" in kwargs, "prompt is required for text2video model" + if self.model_name == 'AnimateDiff': + fal_model_name = 'fast-animatediff/text-to-video' + elif self.model_name == 'AnimateDiffTurbo': + fal_model_name = 'fast-animatediff/turbo/text-to-video' + else: + raise NotImplementedError(f"text2video model of {self.model_name} in fal is not implemented yet") + handler = fal_client.submit( + f"fal-ai/{fal_model_name}", + arguments={ + "prompt": kwargs["prompt"] + }, + ) + + for event in handler.iter_events(with_logs=True): + if isinstance(event, fal_client.InProgress): + print('Request in progress') + print(event.logs) + + result = handler.get() + print("result video: ====") + print(result) + result_url = result['video']['url'] + return result_url + else: + raise ValueError("model_type must be text2image or image2image") + +def load_fal_model(model_name, model_type): + return FalModel(model_name, model_type) \ No newline at end of file diff --git a/model/models/huggingface_models.py b/model/models/huggingface_models.py new file mode 100644 index 0000000000000000000000000000000000000000..c173987672b540040d1213b9e1b02d08a10c1322 --- /dev/null +++ b/model/models/huggingface_models.py @@ -0,0 +1,20 @@ +from diffusers import DiffusionPipeline +import torch + + + +HF_MODEl_ID = {"SD-v1.5": "runwayml/stable-diffusion-v1-5", + "SD-v2.1": "runwayml/stable-diffusion-v2-1", + "SD-XL-v1.0": "stabilityai/stable-diffusion-xl-base-1.0", + "IF-I-XL-v1.0": "DeepFloyd/IF-I-XL-v1.0"} + + +def load_huggingface_model(model_name): + model_id = HF_MODEl_ID[model_name] + pipe = DiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) + pipe = pipe.to("cuda") + return pipe + + +for name in ["SD-v1.5", "SD-v2.1", "SD-XL-v1.0", "IF-I-XL-v1.0"]: + load_huggingface_model(name) \ No newline at end of file diff --git a/model/models/imagenhub_models.py b/model/models/imagenhub_models.py new file mode 100644 index 0000000000000000000000000000000000000000..8294e2bde981f02787e35a4897aef70652ea8633 --- /dev/null +++ b/model/models/imagenhub_models.py @@ -0,0 +1,50 @@ +import imagen_hub + +class ImagenHubModel(): + def __init__(self, model_name): + self.model = imagen_hub.load(model_name) + + def __call__(self, *args, **kwargs): + return self.model.infer_one_image(*args, **kwargs) + +class PNP(ImagenHubModel): + def __init__(self): + super().__init__('PNP') + + def __call__(self, *args, **kwargs): + if "num_inversion_steps" not in kwargs: + kwargs["num_inversion_steps"] = 200 + return super().__call__(*args, **kwargs) + +class Prompt2prompt(ImagenHubModel): + def __init__(self): + super().__init__('Prompt2prompt') + + def __call__(self, *args, **kwargs): + if "num_inner_steps" not in kwargs: + kwargs["num_inner_steps"] = 3 + return super().__call__(*args, **kwargs) + +def load_imagenhub_model(model_name, model_type=None): + if model_name == 'PNP': + return PNP() + if model_name == 'Prompt2prompt': + return Prompt2prompt() + return ImagenHubModel(model_name) + + +# for name in ['DeepFloydIF', 'PixArtAlpha', 'Kandinsky']: #, 'OpenJourney', 'LCM', 'SD' 'SDXL' +# # +# pipe = ImagenHubModel(name) +# result = pipe(prompt='a cute dog is playing a ball') +# print(result) + +# for name in ['SD']: +# from diffusers import DiffusionPipeline, DPMSolverMultistepScheduler +# import torch +# pipe = DiffusionPipeline.from_pretrained( +# "stabilityai/stable-diffusion-2-base", +# torch_dtype=torch.float16, +# safety_checker=None, +# ).to("cuda") +# pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config) \ No newline at end of file diff --git a/model/models/playground_api.py b/model/models/playground_api.py new file mode 100644 index 0000000000000000000000000000000000000000..2a7111052d7bd18f9d34d798fc5a6cd5c8563306 --- /dev/null +++ b/model/models/playground_api.py @@ -0,0 +1,35 @@ +import os +import json +import requests +from PIL import Image +import io +import base64 +class PlayGround(): + def __init__(self, model_name, model_type=None): + self.model_name = model_name + self.model_type = model_type + self.api_key = os.environ['PlaygroundAPI'] + if model_name == "PlayGroundV2": + self._model_name = "Playground_v2" + elif model_name == "PlayGroundV2.5": + self._model_name = "Playground_v2.5" + + + def __call__(self, prompt): + headers = { + 'Content-Type': 'application/json', + 'Authorization': "Bearer " + self.api_key, + } + + data = json.dumps({"prompt": prompt, "filter_model": self._model_name, "scheduler": "DPMPP_2M_K", "guidance_scale": 3}) + + response = requests.post('https://playground.com/api/models/external/v1', headers=headers, data=data) + response.raise_for_status() + json_obj = response.json() + image_base64 = json_obj['images'][0] + img = Image.open(io.BytesIO(base64.decodebytes(bytes(image_base64, "utf-8")))) + + return img + +def load_playground_model(model_name, model_type="generation"): + return PlayGround(model_name, model_type) \ No newline at end of file diff --git a/model/other_models.py b/model/other_models.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..064923c2d184c96aa1a1d1cbe25cdb588b81e679 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,71 @@ +flask +flask_restful +flask_cors +faiss-cpu +fire +h5py +# xformers~=0.0.20 +numpy>=1.23.5 +pandas<2.0.0 +peft +torch==2.0.1 +torchvision==0.15.2 +torchaudio==2.0.2 +jupyterlab>=4.0.2 +notebook>=6.5.4 +albumentations>=1.1.0 +opencv-python>=4.2.0 +pudb~=2019.2 +imageio>=2.14.1 +imageio-ffmpeg>=0.4.7 +pytorch-lightning>=1.5.9 +omegaconf~=2.1.1 +gradio==4.21.0 +pillow~=9.5.0 +einops>=0.4.1 +torch-fidelity>=0.3.0 +setuptools>=59.5.0 +transformers==4.37.2 +torchmetrics>=0.6.0 +lpips +dreamsim +image-reward +kornia>=0.6 +diffusers>=0.18.0 +accelerate>=0.20.3 +safetensors +datasets +tqdm>=4.64.1 +matplotlib>=3.7.1 +taming-transformers-rom1504~=0.0.6 +madgrad>=1.1 +-e git+https://github.com/openai/CLIP.git@main#egg=clip +dominate>=2.8.0 +-e git+https://github.com/CompVis/latent-diffusion.git#egg=latent-diffusion #ldm +openai +nltk~=3.8.1 +krippendorff +statsmodels +plotly +-e git+https://github.com/TIGER-AI-Lab/ImagenHub.git#egg=imagen-hub +fal_client +-e git+https://github.com/TIGER-AI-Lab/VideoGenHub.git#egg=videogen-hub +open_clip_torch +decord +huggingface_hub +open-clip-torch-any-py3 +modelscope +protobuf==3.20.* +rotary_embedding_torch +av +natsort +colossalai +mmengine +pre-commit +pyav +pyarrow +tensorboard +timm +pandarallel +wandb +trueskill diff --git a/serve/Arial.ttf b/serve/Arial.ttf new file mode 100644 index 0000000000000000000000000000000000000000..9512aea86467504e94d97ddd6396955e1e6786f7 Binary files /dev/null and b/serve/Arial.ttf differ diff --git a/serve/Ksort.py b/serve/Ksort.py new file mode 100644 index 0000000000000000000000000000000000000000..08cc0b92ea48a5604d08d2125a5478dc17020d37 --- /dev/null +++ b/serve/Ksort.py @@ -0,0 +1,287 @@ +import gradio as gr +from PIL import Image, ImageDraw, ImageFont +import os +from .constants import KSORT_IMAGE_DIR +from .vote_utils import save_any_image +from .utils import disable_btn, enable_btn, invisible_btn +from .upload import create_remote_directory, upload_image, upload_informance +import json + +def reset_level(Top_btn): + if Top_btn == "Top 1": + level = 0 + elif Top_btn == "Top 2": + level = 1 + elif Top_btn == "Top 3": + level = 2 + elif Top_btn == "Top 4": + level = 3 + return level + +def reset_rank(windows, rank, vote_level): + if windows == "Model A": + rank[0] = vote_level + elif windows == "Model B": + rank[1] = vote_level + elif windows == "Model C": + rank[2] = vote_level + elif windows == "Model D": + rank[3] = vote_level + return rank + +def reset_btn_rank(windows, rank, btn, vote_level): + if windows == "Model A" and btn == "1": + rank[0] = 0 + elif windows == "Model A" and btn == "2": + rank[0] = 1 + elif windows == "Model A" and btn == "3": + rank[0] = 2 + elif windows == "Model A" and btn == "4": + rank[0] = 3 + elif windows == "Model B" and btn == "1": + rank[1] = 0 + elif windows == "Model B" and btn == "2": + rank[1] = 1 + elif windows == "Model B" and btn == "3": + rank[1] = 2 + elif windows == "Model B" and btn == "4": + rank[1] = 3 + elif windows == "Model C" and btn == "1": + rank[2] = 0 + elif windows == "Model C" and btn == "2": + rank[2] = 1 + elif windows == "Model C" and btn == "3": + rank[2] = 2 + elif windows == "Model C" and btn == "4": + rank[2] = 3 + elif windows == "Model D" and btn == "1": + rank[3] = 0 + elif windows == "Model D" and btn == "2": + rank[3] = 1 + elif windows == "Model D" and btn == "3": + rank[3] = 2 + elif windows == "Model D" and btn == "4": + rank[3] = 3 + if btn == "1": + vote_level = 0 + elif btn == "2": + vote_level = 1 + elif btn == "3": + vote_level = 2 + elif btn == "4": + vote_level = 3 + return (rank, vote_level) + +def reset_vote_text(rank): + rank_str = "" + for i in range(len(rank)): + if rank[i] == None: + rank_str = rank_str + str(rank[i]) + else: + rank_str = rank_str + str(rank[i]+1) + rank_str = rank_str + " " + return rank_str + +def clear_rank(rank, vote_level): + for i in range(len(rank)): + rank[i] = None + vote_level = 0 + return rank, vote_level + +def revote_windows(generate_ig0, generate_ig1, generate_ig2, generate_ig3, rank, vote_level): + for i in range(len(rank)): + rank[i] = None + vote_level = 0 + return generate_ig0, generate_ig1, generate_ig2, generate_ig3, rank, vote_level + +def reset_submit(rank): + for i in range(len(rank)): + if rank[i] == None: + return disable_btn + return enable_btn + +def reset_mode(mode): + + if mode == "Best": + return (gr.update(visible=False, interactive=False),) * 6 + \ + (gr.update(visible=True, interactive=True),) * 16 + \ + (gr.update(visible=True, interactive=True),) * 3 + \ + (gr.Textbox(value="Rank", visible=False, interactive=False),) + elif mode == "Rank": + return (gr.update(visible=True, interactive=True),) * 6 + \ + (gr.update(visible=False, interactive=False),) * 16 + \ + (gr.update(visible=True, interactive=False),) * 2 + \ + (gr.update(visible=True, interactive=True),) + \ + (gr.Textbox(value="Best", visible=False, interactive=False),) + else: + raise ValueError("Undefined mode") + +def get_json_filename(conv_id): + output_dir = f'{KSORT_IMAGE_DIR}/{conv_id}/json/' + if not os.path.exists(output_dir): + os.makedirs(output_dir) + output_file = os.path.join(output_dir, "information.json") + # name = os.path.join(KSORT_IMAGE_DIR, f"{conv_id}/json/information.json") + print(output_file) + return output_file + +def get_img_filename(conv_id, i): + output_dir = f'{KSORT_IMAGE_DIR}/{conv_id}/image/' + if not os.path.exists(output_dir): + os.makedirs(output_dir) + output_file = os.path.join(output_dir, f"{i}.jpg") + print(output_file) + return output_file + +def vote_submit(states, rank, request: gr.Request): + conv_id = states[0].conv_id + + for i in range(len(states)): + output_file = get_img_filename(conv_id, i) + save_any_image(states[i].output, output_file) + with open(get_json_filename(conv_id), "a") as fout: + data = { + "models_name": [x.model_name for x in states], + "img_rank": [x for x in rank], + } + fout.write(json.dumps(data) + "\n") + +def vote_ssh_submit(states, rank): + conv_id = states[0].conv_id + output_dir = create_remote_directory(conv_id) + upload_image(states, output_dir) + + data = { + "models_name": [x.model_name for x in states], + "img_rank": [x for x in rank], + } + output_file = os.path.join(output_dir, "informance.json") + upload_informance(data, output_file) + + from .update_skill import update_skill + update_skill(rank) + + +def submit_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, rank, request: gr.Request +): + vote_submit([state0, state1, state2, state3], rank, request) + vote_ssh_submit([state0, state1, state2, state3], rank) + if model_selector0 == "": + return (disable_btn,) * 7 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + (disable_btn,) + else: + return (disable_btn,) * 7 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) + (disable_btn,) + +def submit_response_rank_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, rank, right_vote_text, request: gr.Request +): + print(rank) + if right_vote_text == "right": + vote_submit([state0, state1, state2, state3], rank, request) + vote_ssh_submit([state0, state1, state2, state3], rank) + if model_selector0 == "": + return (disable_btn,) * 16 + (disable_btn,) * 3 + ("wrong",) + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return (disable_btn,) * 16 + (disable_btn,) * 3 + ("wrong",) + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) + else: + return (enable_btn,) * 16 + (enable_btn,) * 3 + ("wrong",) + (gr.Markdown("", visible=False),) * 4 + +def text_response_rank_igm(generate_ig0, generate_ig1, generate_ig2, generate_ig3, Top1_text, Top2_text, Top3_text, Top4_text, vote_textbox): + rank_list = [char for char in vote_textbox if char.isdigit()] + generate_ig = [generate_ig0, generate_ig1, generate_ig2, generate_ig3] + chatbot = [] + rank = [None, None, None, None] + if len(rank_list) != 4: + return generate_ig + ["error rank"] + ["wrong"] + [rank] + for num in range(len(rank_list)): + if rank_list[num] in ['1', '2', '3', '4']: + base_image = Image.fromarray(generate_ig[num]).convert("RGBA") + if rank_list[num] == '1': + txt_layer = Image.new('RGBA', base_image.size, (0, 255, 0, 64)) + elif rank_list[num] == '2': + txt_layer = Image.new('RGBA', base_image.size, (0, 255, 255, 64)) + elif rank_list[num] == '3': + txt_layer = Image.new('RGBA', base_image.size, (255, 0, 255, 64)) + elif rank_list[num] == '4': + txt_layer = Image.new('RGBA', base_image.size, (255, 0, 0, 64)) + draw = ImageDraw.Draw(txt_layer) + font = ImageFont.truetype("./serve/Arial.ttf", 86) + text_position = (156, 212) + if rank_list[num] == '1': + text_color = (0, 255, 0, 200) + draw.text(text_position, Top1_text, font=font, fill=text_color) + elif rank_list[num] == '2': + text_color = (0, 255, 255, 200) + draw.text(text_position, Top2_text, font=font, fill=text_color) + elif rank_list[num] == '3': + text_color = (255, 0, 255, 200) + draw.text(text_position, Top3_text, font=font, fill=text_color) + elif rank_list[num] == '4': + text_color = (255, 0, 0, 200) + draw.text(text_position, Top4_text, font=font, fill=text_color) + + combined = Image.alpha_composite(base_image, txt_layer) + combined = combined.convert("RGB") + chatbot.append(combined.copy()) + else: + return generate_ig + ["error rank"] + ["wrong"] + [rank] + rank_str = "" + for str_num in rank_list: + rank_str = rank_str + str_num + rank_str = rank_str + " " + rank = [int(x) for x in rank_list] + + return chatbot + [rank_str] + ["right"] + [rank] + +def add_foreground(image, vote_level, Top1_text, Top2_text, Top3_text, Top4_text): + base_image = Image.fromarray(image).convert("RGBA") + if vote_level == 0: + txt_layer = Image.new('RGBA', base_image.size, (0, 255, 0, 64)) + elif vote_level == 1: + txt_layer = Image.new('RGBA', base_image.size, (0, 255, 255, 64)) + elif vote_level == 2: + txt_layer = Image.new('RGBA', base_image.size, (255, 0, 255, 64)) + elif vote_level == 3: + txt_layer = Image.new('RGBA', base_image.size, (255, 0, 0, 64)) + + draw = ImageDraw.Draw(txt_layer) + font = ImageFont.truetype("./serve/Arial.ttf", 86) + + text_position = (156, 212) + if vote_level == 0: + text_color = (0, 255, 0, 200) + draw.text(text_position, Top1_text, font=font, fill=text_color) + elif vote_level == 1: + text_color = (0, 255, 255, 200) + draw.text(text_position, Top2_text, font=font, fill=text_color) + elif vote_level == 2: + text_color = (255, 0, 255, 200) + draw.text(text_position, Top3_text, font=font, fill=text_color) + elif vote_level == 3: + text_color = (255, 0, 0, 200) + draw.text(text_position, Top4_text, font=font, fill=text_color) + + combined = Image.alpha_composite(base_image, txt_layer) + combined = combined.convert("RGB") + return combined + diff --git a/serve/__init__.py b/serve/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/serve/gradio_web.py b/serve/gradio_web.py new file mode 100644 index 0000000000000000000000000000000000000000..226768135be9caca980d7fcd5290c0b508e991d8 --- /dev/null +++ b/serve/gradio_web.py @@ -0,0 +1,774 @@ +from .utils import * +from .vote_utils import ( + upvote_last_response_ig as upvote_last_response, + downvote_last_response_ig as downvote_last_response, + flag_last_response_ig as flag_last_response, + leftvote_last_response_igm as leftvote_last_response, + left1vote_last_response_igm as left1vote_last_response, + rightvote_last_response_igm as rightvote_last_response, + right1vote_last_response_igm as right1vote_last_response, + tievote_last_response_igm as tievote_last_response, + bothbad_vote_last_response_igm as bothbad_vote_last_response, + share_click_igm as share_click, + generate_ig, + generate_ig_museum, + generate_igm, + generate_igm_museum, + generate_igm_annoy, + generate_igm_annoy_museum, + share_js +) +from .Ksort import ( + add_foreground, + reset_level, + reset_rank, + revote_windows, + submit_response_igm, + submit_response_rank_igm, + reset_submit, + clear_rank, + reset_mode, + reset_btn_rank, + reset_vote_text, + text_response_rank_igm, +) +from functools import partial + +def build_side_by_side_ui_anony(models): + notice_markdown = """ +# ⚔️ Text2Image-Arena ⚔️ +## 📜 Rules +- Input prompt to two anonymous models in same area (e.g., SD, SDXL, OpenJourney in Text-guided Image Generation Model) and vote for the better one! +- When the results are ready, click the button below to vote. +- Vote won't be counted if model identity is revealed during conversation. +- Click "New Round" to start a new round. + +## 🏆 Arena Elo +Find out who is the 🥇conditional image generation models! More models are going to be supported. + +## 👇 Generating now! + +""" + + model_list = models.model_ig_list + + state0 = gr.State() + state1 = gr.State() + state2 = gr.State() + state3 = gr.State() + + gen_func = partial(generate_igm_annoy, models.generate_image_ig_parallel_anony) + gen_func_random = partial(generate_igm_annoy_museum, models.generate_image_ig_museum_parallel_anony) + + gr.Markdown(notice_markdown, elem_id="notice_markdown") + + with gr.Group(elem_id="share-region-anony"): + with gr.Accordion("🔍 Expand to see all Arena players", open=False): + model_description_md = get_model_description_md(model_list) + gr.Markdown(model_description_md, elem_id="model_description_markdown") + with gr.Row(): + with gr.Column(): + chatbot_left = gr.Image(width=512, label = "Model A") + with gr.Column(): + chatbot_left1 = gr.Image(width=512, label = "Model B") + with gr.Column(): + chatbot_right = gr.Image(width=512, label = "Model C") + with gr.Column(): + chatbot_right1 = gr.Image(width=512, label = "Model D") + + with gr.Row(): + with gr.Column(): + model_selector_left = gr.Markdown("", visible=False) + with gr.Column(): + model_selector_left1 = gr.Markdown("", visible=False) + with gr.Column(): + model_selector_right = gr.Markdown("", visible=False) + with gr.Column(): + model_selector_right1 = gr.Markdown("", visible=False) + with gr.Row(): + slow_warning = gr.Markdown("", elem_id="notice_markdown") + + with gr.Row(): + leftvote_btn = gr.Button( + value="A is Best", visible=False, interactive=False + ) + left1vote_btn = gr.Button( + value="B is Best", visible=False, interactive=False + ) + rightvote_btn = gr.Button( + value="C is Best", visible=False, interactive=False + ) + right1vote_btn = gr.Button( + value="D is Best", visible=False, interactive=False + ) + tie_btn = gr.Button(value="🤝 Tie", visible=False, interactive=False) + bothbad_btn = gr.Button( + value="👎 Both are bad", visible=False, interactive=False + ) + + with gr.Row(): + Top1_btn = gr.Button( + value="Top1", visible=False, interactive=False + ) + Top2_btn = gr.Button( + value="Top2", visible=False, interactive=False + ) + Top3_btn = gr.Button( + value="Top3", visible=False, interactive=False + ) + Top4_btn = gr.Button( + value="Top4", visible=False, interactive=False + ) + Revote_btn = gr.Button( + value="Re-vote", visible=False, interactive=False + ) + Submit_btn = gr.Button(value="🤝 Submit", visible=False, interactive=False) + with gr.Row(): + with gr.Blocks(): + with gr.Row(): + with gr.Column(scale=1, min_width=10): + A1_btn = gr.Button( + value="1", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + A2_btn = gr.Button( + value="2", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + A3_btn = gr.Button( + value="3", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + A4_btn = gr.Button( + value="4", visible=False, interactive=False + ) + with gr.Blocks(): + with gr.Row(): + with gr.Column(scale=1, min_width=10): + B1_btn = gr.Button( + value="1", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + B2_btn = gr.Button( + value="2", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + B3_btn = gr.Button( + value="3", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + B4_btn = gr.Button( + value="4", visible=False, interactive=False + ) + with gr.Blocks(): + with gr.Row(): + with gr.Column(scale=1, min_width=10): + C1_btn = gr.Button( + value="1", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + C2_btn = gr.Button( + value="2", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + C3_btn = gr.Button( + value="3", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + C4_btn = gr.Button( + value="4", visible=False, interactive=False + ) + with gr.Blocks(): + with gr.Row(): + with gr.Column(scale=1, min_width=10): + D1_btn = gr.Button( + value="1", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + D2_btn = gr.Button( + value="2", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + D3_btn = gr.Button( + value="3", visible=False, interactive=False + ) + with gr.Column(scale=1, min_width=10): + D4_btn = gr.Button( + value="4", visible=False, interactive=False + ) + + with gr.Row(): + vote_textbox = gr.Textbox( + show_label=False, + placeholder="👉 Enter your rank", + container=True, + elem_id="input_box", + visible=False, + ) + vote_submit_btn = gr.Button(value="Submit", visible=False, interactive=False, variant="primary", scale=0) + vote_mode_btn = gr.Button(value="🔄 Mode", visible=False, interactive=False, variant="primary", scale=0) + + with gr.Row(): + textbox = gr.Textbox( + show_label=False, + placeholder="👉 Enter your prompt and press ENTER", + container=True, + elem_id="input_box", + ) + send_btn = gr.Button(value="Send", variant="primary", scale=0) + draw_btn = gr.Button(value="🎲 Random sample", variant="primary", scale=0) + + with gr.Row(): + clear_btn = gr.Button(value="🎲 New Round", interactive=False) + regenerate_btn = gr.Button(value="🔄 Regenerate", interactive=False) + # share_btn = gr.Button(value="📷 Share") + + #gr.Markdown(acknowledgment_md, elem_id="ack_markdown") + + dummy_img_output = gr.Image(width=512, visible=False) + gr.Examples( + examples=[["a cute dog is playing a ball", os.path.join("./examples", "dog.jpg")], + ["Buildings on fire, old film still", os.path.join("./examples", "fire.jpg")], + ["Lonely evil bananas on a table, hard light chiaroscuro, realistic",os.path.join("./examples", "banana.jpg")], + ["A futuristic hopeful busy city, purple and green color scheme", os.path.join("./examples", "city.jpg")]], + inputs = [textbox, dummy_img_output]) + + btn_list = [leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn] + vote_list = [Top1_btn, Top2_btn, Top3_btn, Top4_btn, Revote_btn, Submit_btn] + order_btn_list = [send_btn, draw_btn, clear_btn, regenerate_btn] + vote_order_list = [leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + A1_btn, A2_btn, A3_btn, A4_btn, B1_btn, B2_btn, B3_btn, B4_btn, C1_btn, C2_btn, C3_btn, C4_btn, D1_btn, D2_btn, D3_btn, D4_btn, \ + vote_textbox, vote_submit_btn, vote_mode_btn] + # vote_rank_list = [A1_btn, A2_btn, A3_btn, A4_btn, B1_btn, B2_btn, B3_btn, B4_btn, C1_btn, C2_btn, C3_btn, C4_btn, D1_btn, D2_btn, D3_btn, D4_btn] + + generate_ig0 = gr.Image(width=512, label = "generate A", visible=False, interactive=False) + generate_ig1 = gr.Image(width=512, label = "generate B", visible=False, interactive=False) + generate_ig2 = gr.Image(width=512, label = "generate C", visible=False, interactive=False) + generate_ig3 = gr.Image(width=512, label = "generate D", visible=False, interactive=False) + dummy_left_model = gr.State("") + dummy_left1_model = gr.State("") + dummy_right_model = gr.State("") + dummy_right1_model = gr.State("") + + ig_rank = [None, None, None, None] + bastA_rank = [0, 3, 3, 3] + bastB_rank = [3, 0, 3, 3] + bastC_rank = [3, 3, 0, 3] + bastD_rank = [3, 3, 3, 0] + tie_rank = [0, 0, 0, 0] + bad_rank = [3, 3, 3, 3] + rank = gr.State(ig_rank) + rankA = gr.State(bastA_rank) + rankB = gr.State(bastB_rank) + rankC = gr.State(bastC_rank) + rankD = gr.State(bastD_rank) + rankTie = gr.State(tie_rank) + rankBad = gr.State(bad_rank) + Top1_text = gr.Textbox(value="Top 1", visible=False, interactive=False) + Top2_text = gr.Textbox(value="Top 2", visible=False, interactive=False) + Top3_text = gr.Textbox(value="Top 3", visible=False, interactive=False) + Top4_text = gr.Textbox(value="Top 4", visible=False, interactive=False) + window1_text = gr.Textbox(value="Model A", visible=False, interactive=False) + window2_text = gr.Textbox(value="Model B", visible=False, interactive=False) + window3_text = gr.Textbox(value="Model C", visible=False, interactive=False) + window4_text = gr.Textbox(value="Model D", visible=False, interactive=False) + vote_level = gr.Number(value=0, visible=False, interactive=False) + Top1_btn.click(reset_level, inputs=[Top1_text], outputs=[vote_level]) + Top2_btn.click(reset_level, inputs=[Top2_text], outputs=[vote_level]) + Top3_btn.click(reset_level, inputs=[Top3_text], outputs=[vote_level]) + Top4_btn.click(reset_level, inputs=[Top4_text], outputs=[vote_level]) + vote_mode = gr.Textbox(value="Best", visible=False, interactive=False) + right_vote_text = gr.Textbox(value="wrong", visible=False, interactive=False) + + textbox.submit( + gen_func, + inputs=[state0, state1, state2, state3, textbox, model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + outputs=[state0, state1, state2, state3, generate_ig0, generate_ig1, generate_ig2, generate_ig3, chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + api_name="submit_btn_annony" + ).then( + disable_order_buttons, + inputs=None, + outputs=order_btn_list + ).then( + enable_vote_mode_buttons, + inputs=[vote_mode], + outputs=vote_order_list + ) + + send_btn.click( + gen_func, + inputs=[state0, state1, state2, state3, textbox, model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + outputs=[state0, state1, state2, state3, generate_ig0, generate_ig1, generate_ig2, generate_ig3, chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + api_name="send_btn_annony" + ).then( + disable_order_buttons, + inputs=None, + outputs=order_btn_list + ).then( + enable_vote_mode_buttons, + inputs=[vote_mode], + outputs=vote_order_list + ) + + draw_btn.click( + gen_func_random, + inputs=[state0, state1, state2, state3, model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + outputs=[state0, state1, state2, state3, generate_ig0, generate_ig1, generate_ig2, generate_ig3, chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, \ + textbox, model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + api_name="draw_btn_annony" + ).then( + disable_order_buttons, + inputs=None, + outputs=order_btn_list + ).then( + enable_vote_mode_buttons, + inputs=[vote_mode], + outputs=vote_order_list + ) + # .then( + # enable_vote_buttons, + # inputs=None, + # outputs=vote_list + # ) + + clear_btn.click( + clear_history_side_by_side_anony, + inputs=None, + outputs=[state0, state1, state2, state3, textbox, vote_textbox, chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + api_name="clear_btn_annony" + ).then( + enable_order_buttons, + inputs=None, + outputs=order_btn_list + ).then( + disable_vote_buttons, + inputs=None, + outputs=vote_list + ).then( + clear_rank, + inputs=[rank, vote_level], + outputs=[rank, vote_level] + ).then( + disable_vote_mode_buttons, + inputs=None, + outputs=vote_order_list + ) + + # regenerate_btn.click( + # gen_func, + # inputs=[state0, state1, state2, state3, textbox, model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + # outputs=[state0, state1, state2, state3, chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, \ + # model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + # api_name="regenerate_btn_annony" + # ).then( + # enable_best_buttons, + # inputs=None, + # outputs=btn_list + # ) + vote_mode_btn.click( + reset_mode, + inputs=[vote_mode], + outputs=[leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + A1_btn, A2_btn, A3_btn, A4_btn, B1_btn, B2_btn, B3_btn, B4_btn, C1_btn, C2_btn, C3_btn, C4_btn, D1_btn, D2_btn, D3_btn, D4_btn, \ + vote_textbox, vote_submit_btn, vote_mode_btn, vote_mode] + ) + vote_textbox.submit( + text_response_rank_igm, + inputs=[generate_ig0, generate_ig1, generate_ig2, generate_ig3, Top1_text, Top2_text, Top3_text, Top4_text, vote_textbox], + outputs=[chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, vote_textbox, right_vote_text, rank] + ).then( + submit_response_rank_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rank, right_vote_text], + outputs=[A1_btn, A2_btn, A3_btn, A4_btn, B1_btn, B2_btn, B3_btn, B4_btn, C1_btn, C2_btn, C3_btn, C4_btn, D1_btn, D2_btn, D3_btn, D4_btn, \ + vote_textbox, vote_submit_btn, vote_mode_btn, right_vote_text, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + api_name="submit_btn_annony" + ) + vote_submit_btn.click( + text_response_rank_igm, + inputs=[generate_ig0, generate_ig1, generate_ig2, generate_ig3, Top1_text, Top2_text, Top3_text, Top4_text, vote_textbox], + outputs=[chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, vote_textbox, right_vote_text, rank] + ).then( + submit_response_rank_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rank, right_vote_text], + outputs=[A1_btn, A2_btn, A3_btn, A4_btn, B1_btn, B2_btn, B3_btn, B4_btn, C1_btn, C2_btn, C3_btn, C4_btn, D1_btn, D2_btn, D3_btn, D4_btn, \ + vote_textbox, vote_submit_btn, vote_mode_btn, right_vote_text, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1], + api_name="submit_btn_annony" + ) + + # Revote_btn.click( + # revote_windows, + # inputs=[generate_ig0, generate_ig1, generate_ig2, generate_ig3, rank, vote_level], + # outputs=[chatbot_left, chatbot_left1, chatbot_right, chatbot_right1, rank, vote_level] + # ).then( + # reset_submit, + # inputs = [rank], + # outputs = [Submit_btn] + # ) + # Submit_btn.click( + # submit_response_igm, + # inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rank], + # outputs=[textbox, Top1_btn, Top2_btn, Top3_btn, Top4_btn, Revote_btn, Submit_btn, \ + # model_selector_left, model_selector_left1, model_selector_right, model_selector_right1] + # ) + + # chatbot_left.select(add_foreground, inputs=[generate_ig0, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], outputs=[chatbot_left]).then( + # reset_rank, + # inputs = [window1_text, rank, vote_level], + # outputs = [rank] + # ).then( + # reset_submit, + # inputs = [rank], + # outputs = [Submit_btn] + # ) + # chatbot_left1.select(add_foreground, inputs=[generate_ig1, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], outputs=[chatbot_left1]).then( + # reset_rank, + # inputs = [window2_text, rank, vote_level], + # outputs = [rank] + # ).then( + # reset_submit, + # inputs = [rank], + # outputs = [Submit_btn] + # ) + # chatbot_right.select(add_foreground, inputs=[generate_ig2, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], outputs=[chatbot_right]).then( + # reset_rank, + # inputs = [window3_text, rank, vote_level], + # outputs = [rank] + # ).then( + # reset_submit, + # inputs = [rank], + # outputs = [Submit_btn] + # ) + # chatbot_right1.select(add_foreground, inputs=[generate_ig3, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], outputs=[chatbot_right1]).then( + # reset_rank, + # inputs = [window4_text, rank, vote_level], + # outputs = [rank] + # ).then( + # reset_submit, + # inputs = [rank], + # outputs = [Submit_btn] + # ) + + + leftvote_btn.click( + submit_response_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rankA], + outputs=[textbox, leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1, \ + vote_mode_btn] + ) + left1vote_btn.click( + submit_response_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rankB], + outputs=[textbox, leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1, \ + vote_mode_btn] + ) + rightvote_btn.click( + submit_response_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rankC], + outputs=[textbox, leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1, \ + vote_mode_btn] + ) + right1vote_btn.click( + submit_response_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rankD], + outputs=[textbox, leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1, \ + vote_mode_btn] + ) + tie_btn.click( + submit_response_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rankTie], + outputs=[textbox, leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1, \ + vote_mode_btn] + ) + bothbad_btn.click( + submit_response_igm, + inputs=[state0, state1, state2, state3, dummy_left_model, dummy_left1_model, dummy_right_model, dummy_right1_model, rankBad], + outputs=[textbox, leftvote_btn, left1vote_btn, rightvote_btn, right1vote_btn, tie_btn, bothbad_btn, \ + model_selector_left, model_selector_left1, model_selector_right, model_selector_right1, \ + vote_mode_btn] + ) + + A1_btn.click( + reset_btn_rank, + inputs=[window1_text, rank, A1_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig0, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + A2_btn.click( + reset_btn_rank, + inputs=[window1_text, rank, A2_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig0, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + A3_btn.click( + reset_btn_rank, + inputs=[window1_text, rank, A3_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig0, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + A4_btn.click( + reset_btn_rank, + inputs=[window1_text, rank, A4_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig0, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + + B1_btn.click( + reset_btn_rank, + inputs=[window2_text, rank, B1_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig1, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + B2_btn.click( + reset_btn_rank, + inputs=[window2_text, rank, B2_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig1, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + B3_btn.click( + reset_btn_rank, + inputs=[window2_text, rank, B3_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig1, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + B4_btn.click( + reset_btn_rank, + inputs=[window2_text, rank, B4_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig1, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_left1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + + C1_btn.click( + reset_btn_rank, + inputs=[window3_text, rank, C1_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig2, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + C2_btn.click( + reset_btn_rank, + inputs=[window3_text, rank, C2_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig2, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + C3_btn.click( + reset_btn_rank, + inputs=[window3_text, rank, C3_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig2, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + C4_btn.click( + reset_btn_rank, + inputs=[window3_text, rank, C4_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig2, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + + D1_btn.click( + reset_btn_rank, + inputs=[window4_text, rank, D1_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig3, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + D2_btn.click( + reset_btn_rank, + inputs=[window4_text, rank, D2_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig3, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + D3_btn.click( + reset_btn_rank, + inputs=[window4_text, rank, D3_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig3, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) + D4_btn.click( + reset_btn_rank, + inputs=[window4_text, rank, D4_btn, vote_level], + outputs=[rank, vote_level] + ).then( + add_foreground, + inputs=[generate_ig3, vote_level, Top1_text, Top2_text, Top3_text, Top4_text], + outputs=[chatbot_right1] + ).then( + reset_submit, + inputs = [rank], + outputs = [vote_submit_btn] + ).then( + reset_vote_text, + inputs = [rank], + outputs = [vote_textbox] + ) \ No newline at end of file diff --git a/serve/leaderboard.py b/serve/leaderboard.py new file mode 100644 index 0000000000000000000000000000000000000000..375dbd45dbab817159a93f6ad4e5d0c6ec311682 --- /dev/null +++ b/serve/leaderboard.py @@ -0,0 +1,215 @@ +""" +Live monitor of the website statistics and leaderboard. + +Dependency: +sudo apt install pkg-config libicu-dev +pip install pytz gradio gdown plotly polyglot pyicu pycld2 tabulate +""" + +import argparse +import ast +import pickle +import os +import threading +import time + +import gradio as gr +import numpy as np +import pandas as pd + + +basic_component_values = [None] * 6 +leader_component_values = [None] * 5 + + +# def make_leaderboard_md(elo_results): +# leaderboard_md = f""" +# # 🏆 Chatbot Arena Leaderboard +# | [Blog](https://lmsys.org/blog/2023-05-03-arena/) | [GitHub](https://github.com/lm-sys/FastChat) | [Paper](https://arxiv.org/abs/2306.05685) | [Dataset](https://github.com/lm-sys/FastChat/blob/main/docs/dataset_release.md) | [Twitter](https://twitter.com/lmsysorg) | [Discord](https://discord.gg/HSWAKCrnFx) | + +# This leaderboard is based on the following three benchmarks. +# - [Chatbot Arena](https://lmsys.org/blog/2023-05-03-arena/) - a crowdsourced, randomized battle platform. We use 100K+ user votes to compute Elo ratings. +# - [MT-Bench](https://arxiv.org/abs/2306.05685) - a set of challenging multi-turn questions. We use GPT-4 to grade the model responses. +# - [MMLU](https://arxiv.org/abs/2009.03300) (5-shot) - a test to measure a model's multitask accuracy on 57 tasks. + +# 💻 Code: The Arena Elo ratings are computed by this [notebook]({notebook_url}). The MT-bench scores (single-answer grading on a scale of 10) are computed by [fastchat.llm_judge](https://github.com/lm-sys/FastChat/tree/main/fastchat/llm_judge). The MMLU scores are mostly computed by [InstructEval](https://github.com/declare-lab/instruct-eval). Higher values are better for all benchmarks. Empty cells mean not available. Last updated: November, 2023. +# """ +# return leaderboard_md + +def make_leaderboard_md(elo_results): + leaderboard_md = f""" +# 🏆 Text2Image-Arena Leaderboard +""" + + return leaderboard_md + + +def make_leaderboard_md_live(elo_results): + leaderboard_md = f""" +# Leaderboard +Last updated: {elo_results["last_updated_datetime"]} +{elo_results["leaderboard_table"]} +""" + return leaderboard_md + + +def model_hyperlink(model_name, link): + return f'{model_name}' + + +def load_leaderboard_table_csv(filename, add_hyperlink=True): + df = pd.read_csv(filename) + for col in df.columns: + if "Arena Elo rating" in col: + df[col] = df[col].apply(lambda x: int(x) if x != "-" else np.nan) + elif col == "MMLU": + df[col] = df[col].apply(lambda x: round(x * 100, 1) if x != "-" else np.nan) + elif col == "MT-bench (win rate %)": + df[col] = df[col].apply(lambda x: round(x, 1) if x != "-" else np.nan) + elif col == "MT-bench (score)": + df[col] = df[col].apply(lambda x: round(x, 2) if x != "-" else np.nan) + + if add_hyperlink and col == "Model": + df[col] = df.apply(lambda row: model_hyperlink(row[col], row["Link"]), axis=1) + return df + + +def build_basic_stats_tab(): + empty = "Loading ..." + basic_component_values[:] = [empty, None, empty, empty, empty, empty] + + md0 = gr.Markdown(empty) + gr.Markdown("#### Figure 1: Number of model calls and votes") + plot_1 = gr.Plot(show_label=False) + with gr.Row(): + with gr.Column(): + md1 = gr.Markdown(empty) + with gr.Column(): + md2 = gr.Markdown(empty) + with gr.Row(): + with gr.Column(): + md3 = gr.Markdown(empty) + with gr.Column(): + md4 = gr.Markdown(empty) + return [md0, plot_1, md1, md2, md3, md4] + +def get_arena_table(arena_df, model_table_df): + # sort by rating + arena_df = arena_df.sort_values(by=["rating"], ascending=False) + values = [] + for i in range(len(arena_df)): + row = [] + model_key = arena_df.index[i] + model_name = model_table_df[model_table_df["key"] == model_key]["Model"].values[ + 0 + ] + + # rank + row.append(i + 1) + # model display name + row.append(model_name) + # elo rating + row.append(0), #round(arena_df.iloc[i]["rating"]) + upper_diff = round(arena_df.iloc[i]["rating_q975"] - arena_df.iloc[i]["rating"]) + lower_diff = round(arena_df.iloc[i]["rating"] - arena_df.iloc[i]["rating_q025"]) + row.append(0) #f"+{upper_diff}/-{lower_diff}" + # num battles + row.append(0) #round(arena_df.iloc[i]["num_battles"]) + # Organization + row.append( + model_table_df[model_table_df["key"] == model_key]["Organization"].values[0] + ) + # license + row.append( + model_table_df[model_table_df["key"] == model_key]["License"].values[0] + ) + + values.append(row) + return values + +def make_arena_leaderboard_md(elo_results): + arena_df = elo_results["leaderboard_table_df"] + last_updated = elo_results["last_updated_datetime"] + total_votes = sum(arena_df["num_battles"]) // 2 + total_models = len(arena_df) + + leaderboard_md = f""" +Total #models: **{total_models}**(anonymous). Total #votes: **{total_votes}**. Last updated: {last_updated}. +""" + + return leaderboard_md + + +def build_leaderboard_tab(elo_results_file, leaderboard_table_file, show_plot=False): + if elo_results_file is None: # Do live update + md = "Loading ..." + p1 = p2 = p3 = p4 = None + else: + with open(elo_results_file, "rb") as fin: + elo_results = pickle.load(fin) + + anony_elo_results = elo_results["anony"] + full_elo_results = elo_results["full"] + anony_arena_df = anony_elo_results["leaderboard_table_df"] + full_arena_df = full_elo_results["leaderboard_table_df"] + p1 = anony_elo_results["win_fraction_heatmap"] + p2 = anony_elo_results["battle_count_heatmap"] + p3 = anony_elo_results["bootstrap_elo_rating"] + p4 = anony_elo_results["average_win_rate_bar"] + + md = make_leaderboard_md(anony_elo_results) + + md_1 = gr.Markdown(md, elem_id="leaderboard_markdown") + + if leaderboard_table_file: + model_table_df = load_leaderboard_table_csv(leaderboard_table_file) + with gr.Tabs() as tabs: + # arena table + arena_table_vals = get_arena_table(anony_arena_df, model_table_df) + with gr.Tab("Arena Elo", id=0): + md = make_arena_leaderboard_md(anony_elo_results) + gr.Markdown(md, elem_id="leaderboard_markdown") + gr.Dataframe( + headers=[ + "Rank", + "🤖 Model", + "⭐ Arena Elo", + "📊 95% CI", + "🗳️ Votes", + "Organization", + "License", + ], + datatype=[ + "str", + "markdown", + "number", + "str", + "number", + "str", + "str", + ], + value=arena_table_vals, + elem_id="arena_leaderboard_dataframe", + height=700, + column_widths=[50, 200, 100, 100, 100, 150, 150], + wrap=True, + ) + + if not show_plot: + gr.Markdown( + """ ## We are still collecting more votes on more models. The ranking will be updated very fruquently. Please stay tuned! + """, + elem_id="leaderboard_markdown", + ) + else: + pass + + leader_component_values[:] = [md, p1, p2, p3, p4] + + + from .utils import acknowledgment_md + + gr.Markdown(acknowledgment_md) + + # return [md_1, plot_1, plot_2, plot_3, plot_4] + return [md_1] \ No newline at end of file diff --git a/serve/log_server.py b/serve/log_server.py new file mode 100644 index 0000000000000000000000000000000000000000..90e040e36ca1a653ac04dc650d1d2f38daaec705 --- /dev/null +++ b/serve/log_server.py @@ -0,0 +1,86 @@ +from fastapi import FastAPI, File, UploadFile, Form, APIRouter +from typing import Optional +import json +import os +import aiofiles +from .log_utils import build_logger +from .constants import LOG_SERVER_SUBDOMAIN, APPEND_JSON, SAVE_IMAGE, SAVE_VIDEO, SAVE_LOG + +logger = build_logger("log_server", "log_server.log", add_remote_handler=False) + +app = APIRouter(prefix=LOG_SERVER_SUBDOMAIN) + +@app.post(f"/{APPEND_JSON}") +async def append_json(json_str: str = Form(...), file_name: str = Form(...)): + """ + Appends a JSON string to a specified file. + """ + # Convert the string back to a JSON object (dict) + data = json.loads(json_str) + # Append the data to the specified file + if os.path.dirname(file_name): + os.makedirs(os.path.dirname(file_name), exist_ok=True) + async with aiofiles.open(file_name, mode='a') as f: + await f.write(json.dumps(data) + "\n") + + logger.info(f"Appended 1 JSON object to {file_name}") + return {"message": "JSON data appended successfully"} + +@app.post(f"/{SAVE_IMAGE}") +async def save_image(image: UploadFile = File(...), image_path: str = Form(...)): + """ + Saves an uploaded image to the specified path. + """ + # Note: 'image_path' should include the file name and extension for the image to be saved. + if os.path.dirname(image_path): + os.makedirs(os.path.dirname(image_path), exist_ok=True) + async with aiofiles.open(image_path, mode='wb') as f: + content = await image.read() # Read the content of the uploaded image + await f.write(content) # Write the image content to a file + logger.info(f"Image saved successfully at {image_path}") + return {"message": f"Image saved successfully at {image_path}"} + +@app.post(f"/{SAVE_VIDEO}") +async def save_video(video: UploadFile = File(...), video_path: str = Form(...)): + """ + Saves an uploaded video to the specified path. + """ + # Note: 'video_path' should include the file name and extension for the video to be saved. + if os.path.dirname(video_path): + os.makedirs(os.path.dirname(video_path), exist_ok=True) + async with aiofiles.open(video_path, mode='wb') as f: + content = await video.read() # Read the content of the uploaded video + await f.write(content) # Write the video content to a file + logger.info(f"Video saved successfully at {video_path}") + return {"message": f"Image saved successfully at {video_path}"} + +@app.post(f"/{SAVE_LOG}") +async def save_log(message: str = Form(...), log_path: str = Form(...)): + """ + Save a log message to a specified log file on the server. + """ + # Ensure the directory for the log file exists + if os.path.dirname(log_path): + os.makedirs(os.path.dirname(log_path), exist_ok=True) + + # Append the log message to the specified log file + async with aiofiles.open(log_path, mode='a') as f: + await f.write(f"{message}\n") + + logger.info(f"Romote log message saved to {log_path}") + return {"message": f"Log message saved successfully to {log_path}"} + + +@app.get(f"/read_file") +async def read_file(file_name: str): + """ + Reads the content of a specified file and returns it. + """ + if not os.path.exists(file_name): + return {"message": f"File {file_name} does not exist."} + + async with aiofiles.open(file_name, mode='r') as f: + content = await f.read() + + logger.info(f"Read file {file_name}") + return {"file_name": file_name, "content": content} diff --git a/serve/log_utils.py b/serve/log_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..00594acd7f951b19eb5852bc66df0a0eca40136e --- /dev/null +++ b/serve/log_utils.py @@ -0,0 +1,142 @@ +""" +Common utilities. +""" +from asyncio import AbstractEventLoop +import json +import logging +import logging.handlers +import os +import platform +import sys +from typing import AsyncGenerator, Generator +import warnings +from pathlib import Path + +import requests + +from .constants import LOGDIR, LOG_SERVER_ADDR, SAVE_LOG +from .utils import save_log_str_on_log_server + + +handler = None +visited_loggers = set() + + +# Assuming LOGDIR and other necessary imports and global variables are defined + +class APIHandler(logging.Handler): + """Custom logging handler that sends logs to an API.""" + + def __init__(self, apiUrl, log_path, *args, **kwargs): + super(APIHandler, self).__init__(*args, **kwargs) + self.apiUrl = apiUrl + self.log_path = log_path + + def emit(self, record): + log_entry = self.format(record) + try: + save_log_str_on_log_server(log_entry, self.log_path) + except requests.RequestException as e: + print(f"Error sending log to API: {e}", file=sys.stderr) + +def build_logger(logger_name, logger_filename, add_remote_handler=False): + global handler + + formatter = logging.Formatter( + fmt="%(asctime)s | %(levelname)s | %(name)s | %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + ) + + # Set the format of root handlers + if not logging.getLogger().handlers: + if sys.version_info[1] >= 9: + # This is for windows + logging.basicConfig(level=logging.INFO, encoding="utf-8") + else: + if platform.system() == "Windows": + warnings.warn( + "If you are running on Windows, " + "we recommend you use Python >= 3.9 for UTF-8 encoding." + ) + logging.basicConfig(level=logging.INFO) + logging.getLogger().handlers[0].setFormatter(formatter) + + # Redirect stdout and stderr to loggers + stdout_logger = logging.getLogger("stdout") + stdout_logger.setLevel(logging.INFO) + sl = StreamToLogger(stdout_logger, logging.INFO) + sys.stdout = sl + + stderr_logger = logging.getLogger("stderr") + stderr_logger.setLevel(logging.ERROR) + sl = StreamToLogger(stderr_logger, logging.ERROR) + sys.stderr = sl + + # Get logger + logger = logging.getLogger(logger_name) + logger.setLevel(logging.INFO) + + if add_remote_handler: + # Add APIHandler to send logs to your API + api_url = f"{LOG_SERVER_ADDR}/{SAVE_LOG}" + + remote_logger_filename = str(Path(logger_filename).stem + "_remote.log") + api_handler = APIHandler(apiUrl=api_url, log_path=f"{LOGDIR}/{remote_logger_filename}") + api_handler.setFormatter(formatter) + logger.addHandler(api_handler) + + stdout_logger.addHandler(api_handler) + stderr_logger.addHandler(api_handler) + + # if LOGDIR is empty, then don't try output log to local file + if LOGDIR != "": + os.makedirs(LOGDIR, exist_ok=True) + filename = os.path.join(LOGDIR, logger_filename) + handler = logging.handlers.TimedRotatingFileHandler( + filename, when="D", utc=True, encoding="utf-8" + ) + handler.setFormatter(formatter) + + for l in [stdout_logger, stderr_logger, logger]: + if l in visited_loggers: + continue + visited_loggers.add(l) + l.addHandler(handler) + + return logger + + +class StreamToLogger(object): + """ + Fake file-like stream object that redirects writes to a logger instance. + """ + + def __init__(self, logger, log_level=logging.INFO): + self.terminal = sys.stdout + self.logger = logger + self.log_level = log_level + self.linebuf = "" + + def __getattr__(self, attr): + return getattr(self.terminal, attr) + + def write(self, buf): + temp_linebuf = self.linebuf + buf + self.linebuf = "" + for line in temp_linebuf.splitlines(True): + # From the io.TextIOWrapper docs: + # On output, if newline is None, any '\n' characters written + # are translated to the system default line separator. + # By default sys.stdout.write() expects '\n' newlines and then + # translates them so this is still cross platform. + if line[-1] == "\n": + encoded_message = line.encode("utf-8", "ignore").decode("utf-8") + self.logger.log(self.log_level, encoded_message.rstrip()) + else: + self.linebuf += line + + def flush(self): + if self.linebuf != "": + encoded_message = self.linebuf.encode("utf-8", "ignore").decode("utf-8") + self.logger.log(self.log_level, encoded_message.rstrip()) + self.linebuf = "" \ No newline at end of file diff --git a/serve/update_skill.py b/serve/update_skill.py new file mode 100644 index 0000000000000000000000000000000000000000..d7d1dd417c31ccb9919edad0ab6ddce424f68b28 --- /dev/null +++ b/serve/update_skill.py @@ -0,0 +1,86 @@ +import numpy as np +import json +from trueskill import TrueSkill +import paramiko +import io, os +import sys +from serve.constants import SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD, SSH_SKILL, SSH_SKILL_M +trueskill_env = TrueSkill() + +class Model_ID(object): + group = [] + + +def ucb_score(trueskill_diff, t, n): + exploration_term = np.sqrt((2 * np.log(t + 1e-5)) / (n + 1e-5)) + ucb = -trueskill_diff + 1.0 * exploration_term + return ucb + +def update_trueskill(ratings, ranks): + new_ratings = trueskill_env.rate(ratings, ranks) + return new_ratings + +def serialize_rating(rating): + return {'mu': rating.mu, 'sigma': rating.sigma} + +def deserialize_rating(rating_dict): + return trueskill_env.Rating(mu=rating_dict['mu'], sigma=rating_dict['sigma']) + +def create_ssh_client(server, port, user, password): + ssh = paramiko.SSHClient() + ssh.load_system_host_keys() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + ssh.connect(server, port, user, password) + return ssh + +def save_json_via_sftp(ratings, comparison_counts, total_comparisons): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + data = { + 'ratings': [serialize_rating(r) for r in ratings], + 'comparison_counts': comparison_counts.tolist(), + 'total_comparisons': total_comparisons + } + json_data = json.dumps(data) + sftp = ssh.open_sftp() + with sftp.open(SSH_SKILL, 'w') as f: + f.write(json_data) + +def load_json_via_sftp(): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + sftp = ssh.open_sftp() + with sftp.open(SSH_SKILL, 'r') as f: + data = json.load(f) + ratings = [deserialize_rating(r) for r in data['ratings']] + comparison_counts = np.array(data['comparison_counts']) + total_comparisons = data['total_comparisons'] + return ratings, comparison_counts, total_comparisons + + +def load_modelid_via_sftp(): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + sftp = ssh.open_sftp() + with sftp.open(SSH_SKILL_M, 'r') as f: + data = json.load(f) + model_ids = data['model_ids'] + return model_ids + + +def update_skill(rank, k_group=4): + + ratings, comparison_counts, total_comparisons = load_json_via_sftp() + group = Model_ID.group + pairwise_comparisons = [(i, j) for i in range(len(group)) for j in range(i+1, len(group))] + for player1, player2 in pairwise_comparisons: + if rank[player1] < rank[player2]: + ranks = [0, 1] + updated_ratings = update_trueskill([[ratings[group[player1]]], [ratings[group[player2]]]], ranks) + ratings[group[player1]], ratings[group[player2]] = updated_ratings[0][0], updated_ratings[1][0] + elif rank[player1] > rank[player2]: + ranks = [1, 0] + updated_ratings = update_trueskill([[ratings[group[player1]]], [ratings[group[player2]]]], ranks) + ratings[group[player1]], ratings[group[player2]] = updated_ratings[0][0], updated_ratings[1][0] + + comparison_counts[group[player1], group[player2]] += 1 + comparison_counts[group[player2], group[player1]] += 1 + + save_json_via_sftp(ratings, comparison_counts, total_comparisons) \ No newline at end of file diff --git a/serve/upload.py b/serve/upload.py new file mode 100644 index 0000000000000000000000000000000000000000..4459b4df26bd3107c76ad25e43c3d507afe8fc20 --- /dev/null +++ b/serve/upload.py @@ -0,0 +1,60 @@ +import paramiko +import numpy as np +import io, os +from PIL import Image +import requests +import json +from .constants import SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD, SSH_LOG + +def create_ssh_client(server, port, user, password): + ssh = paramiko.SSHClient() + ssh.load_system_host_keys() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + ssh.connect(server, port, user, password) + return ssh + +def get_image_from_url(image_url): + response = requests.get(image_url) + response.raise_for_status() # success + return Image.open(io.BytesIO(response.content)) + +def upload_image_via_sftp(ssh, image, remote_image_path): + if isinstance(image, str): + print("get url image") + image = get_image_from_url(image) + with ssh.open_sftp() as sftp: + with io.BytesIO() as image_byte_stream: + image.save(image_byte_stream, format='JPEG') + image_byte_stream.seek(0) + sftp.putfo(image_byte_stream, remote_image_path) + print(f"Successfully uploaded image to {remote_image_path}") + +def upload_json_via_sftp(ssh, data, remote_json_path): + json_data = json.dumps(data, indent=4) + with ssh.open_sftp() as sftp: + with io.BytesIO(json_data.encode('utf-8')) as json_byte_stream: + sftp.putfo(json_byte_stream, remote_json_path) + print(f"Successfully uploaded JSON data to {remote_json_path}") + +def upload_image(states, output_dir): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + for i in range(len(states)): + output_file = os.path.join(output_dir, f"{i}.jpg") + upload_image_via_sftp(ssh, states[i].output, output_file) + +def upload_informance(data, data_path): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + upload_json_via_sftp(ssh, data, data_path) + +def create_remote_directory(remote_directory): + ssh = create_ssh_client(SSH_SERVER, SSH_PORT, SSH_USER, SSH_PASSWORD) + + stdin, stdout, stderr = ssh.exec_command(f'mkdir -p {SSH_LOG}/{remote_directory}') + error = stderr.read().decode('utf-8') + if error: + print(f"Error: {error}") + else: + print(f"Directory {remote_directory} created successfully.") + # ssh.close() + return f'{SSH_LOG}/{remote_directory}' + \ No newline at end of file diff --git a/serve/utils.py b/serve/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..07e810f58762d2697410f0923bde9f87a2e60828 --- /dev/null +++ b/serve/utils.py @@ -0,0 +1,204 @@ +import os +import json +import datetime +import requests +import numpy as np +import gradio as gr +from pathlib import Path +from model.model_registry import * +from .constants import LOGDIR, LOG_SERVER_ADDR, APPEND_JSON, SAVE_IMAGE, SAVE_VIDEO, SAVE_LOG +from typing import Union + + +enable_btn = gr.update(interactive=True, visible=True) +disable_btn = gr.update(interactive=False) +invisible_btn = gr.update(interactive=False, visible=False) +no_change_btn = gr.update(value="No Change", interactive=True, visible=True) + + +def build_about(): + about_markdown = f""" +# About Us +This is a project from TIGER Lab at University of Waterloo. + +## Contributors: +[Tianle Li](https://scholar.google.com/citations?user=g213g7YAAAAJ&hl=en), [Dongfu Jiang](https://jdf-prog.github.io/), [Yuansheng Ni](https://yuanshengni.github.io/), [Max Ku](https://kuwingfung.github.io/), [Shizhuo Sun](), [Richard Fan](https://www.linkedin.com/in/richard-fan2020/). + +## Contact: +Email: t29li@uwaterloo.ca (Tianle Li) + +## Advisors +[Wenhu Chen](https://wenhuchen.github.io/) + +## Sponsorship +We are keep looking for sponsorship to support the arena project for the long term. Please contact us if you are interested in supporting this project. + +## Acknowledgment +Our codebase is built upon FastChat, ImagenHub and VideoGenHub. +""" + + gr.Markdown(about_markdown, elem_id="about_markdown") + + +acknowledgment_md = """ +### Acknowledgment +
+

Our codebase is built upon FastChat, ImagenHub and VideoGenHub.

+
+""" + +block_css = """ +#notice_markdown { + font-size: 110% +} +#notice_markdown th { + display: none; +} +#notice_markdown td { + padding-top: 6px; + padding-bottom: 6px; +} +#model_description_markdown { + font-size: 110% +} +#leaderboard_markdown { + font-size: 110% +} +#leaderboard_markdown td { + padding-top: 6px; + padding-bottom: 6px; +} +#leaderboard_dataframe td { + line-height: 0.1em; +} +#about_markdown { + font-size: 110% +} +#ack_markdown { + font-size: 110% +} +#input_box textarea { +} +footer { + display:none !important +} +.image-about img { + margin: 0 30px; + margin-top: 30px; + height: 60px; + max-height: 100%; + width: auto; + float: left; +.input-image, .image-preview { + margin: 0 30px; + height: 30px; + max-height: 100%; + width: auto; + max-width: 30%;} +} +""" + +def enable_vote_buttons(): + return tuple(gr.update(visible=True, interactive=i<=4) for i in range(6)) +def disable_vote_buttons(): + return tuple(gr.update(visible=False, interactive=False) for i in range(6)) + +def enable_vote_mode_buttons(mode): + print(mode) + if mode == "Best": + return (gr.update(visible=True, interactive=True),) * 6 + \ + (gr.update(visible=False, interactive=False),) * 16 + \ + (gr.update(visible=True, interactive=False),) * 2 + \ + (gr.update(visible=True, interactive=True),) + elif mode == "Rank": + return (gr.update(visible=False, interactive=False),) * 6 + \ + (gr.update(visible=True, interactive=True),) * 16 + \ + (gr.update(visible=True, interactive=True),) * 3 +def disable_vote_mode_buttons(): + return tuple(gr.update(visible=False, interactive=False) for _ in range(25)) + + +def enable_order_buttons(): + return tuple(gr.update(interactive=True) for _ in range(4)) +def disable_order_buttons(): + return (gr.update(interactive=False), gr.update(interactive=False), gr.update(interactive=True), gr.update(interactive=False)) + +def clear_history(): + return None, "", None + +def clear_history_side_by_side(): + return None, None, "", None, None + +def clear_history_side_by_side_anony(): + return None, None, None, None, gr.update(visible=True, interactive=True, value=""), gr.update(visible=True, interactive=True, value=""), None, None, None, None, \ + gr.Markdown("", visible=False), gr.Markdown("", visible=False), gr.Markdown("", visible=False), gr.Markdown("", visible=False) + +def clear_history_ie(): + return None, "", "", "", None, None + +def clear_history_side_by_side_ie(): + return None, None, "", "", "", None, None, None + +def clear_history_side_by_side_ie_anony(): + return None, None, "", "", "", None, None, None, gr.Markdown("", visible=False), gr.Markdown("", visible=False) + +def get_ip(request: gr.Request): + if request: + if "cf-connecting-ip" in request.headers: + ip = request.headers["cf-connecting-ip"] or request.client.host + else: + ip = request.client.host + else: + ip = None + return ip + +def get_conv_log_filename(): + t = datetime.datetime.now() + name = os.path.join(LOGDIR, f"{t.year}-{t.month:02d}-{t.day:02d}-conv.json") + return name + +def save_image_file_on_log_server(image_file:str): + return 1 + + image_file = Path(image_file).absolute().relative_to(os.getcwd()) + image_file = str(image_file) + # Open the image file in binary mode + url = f"{LOG_SERVER_ADDR}/{SAVE_IMAGE}" + with open(image_file, 'rb') as f: + # Make the POST request, sending the image file and the image path + response = requests.post(url, files={'image': f}, data={'image_path': image_file}) + return response + +def save_video_file_on_log_server(video_file:str): + return 1 + + video_file = Path(video_file).absolute().relative_to(os.getcwd()) + video_file = str(video_file) + # Open the video file in binary mode + url = f"{LOG_SERVER_ADDR}/{SAVE_VIDEO}" + with open(video_file, 'rb') as f: + # Make the POST request, sending the video file and the video path + response = requests.post(url, files={'video': f}, data={'video_path': video_file}) + return response + +def append_json_item_on_log_server(json_item: Union[dict, str], log_file: str): + return 1 + + if isinstance(json_item, dict): + json_item = json.dumps(json_item) + log_file = Path(log_file).absolute().relative_to(os.getcwd()) + log_file = str(log_file) + url = f"{LOG_SERVER_ADDR}/{APPEND_JSON}" + # Make the POST request, sending the JSON string and the log file name + response = requests.post(url, data={'json_str': json_item, 'file_name': log_file}) + return response + +def save_log_str_on_log_server(log_str: str, log_file: str): + return 1 + + log_file = Path(log_file).absolute().relative_to(os.getcwd()) + log_file = str(log_file) + url = f"{LOG_SERVER_ADDR}/{SAVE_LOG}" + # Make the POST request, sending the log message and the log file name + response = requests.post(url, data={'message': log_str, 'log_path': log_file}) + return response \ No newline at end of file diff --git a/serve/vote_utils.py b/serve/vote_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..e81b37f284c592ed6706c7870218f29aa91ab543 --- /dev/null +++ b/serve/vote_utils.py @@ -0,0 +1,1560 @@ +import datetime +import time +import json +import uuid +import gradio as gr +import regex as re +from pathlib import Path +from .utils import * +from .log_utils import build_logger +from .constants import IMAGE_DIR, VIDEO_DIR +import imageio +from diffusers.utils import load_image + +ig_logger = build_logger("gradio_web_server_image_generation", "gr_web_image_generation.log") # ig = image generation, loggers for single model direct chat +igm_logger = build_logger("gradio_web_server_image_generation_multi", "gr_web_image_generation_multi.log") # igm = image generation multi, loggers for side-by-side and battle +ie_logger = build_logger("gradio_web_server_image_editing", "gr_web_image_editing.log") # ie = image editing, loggers for single model direct chat +iem_logger = build_logger("gradio_web_server_image_editing_multi", "gr_web_image_editing_multi.log") # iem = image editing multi, loggers for side-by-side and battle +vg_logger = build_logger("gradio_web_server_video_generation", "gr_web_video_generation.log") # vg = video generation, loggers for single model direct chat +vgm_logger = build_logger("gradio_web_server_video_generation_multi", "gr_web_video_generation_multi.log") # vgm = video generation multi, loggers for side-by-side and battle + +def save_any_image(image_file, file_path): + if isinstance(image_file, str): + image = load_image(image_file) + image.save(file_path, 'JPEG') + else: + image_file.save(file_path, 'JPEG') + +def vote_last_response_ig(state, vote_type, model_selector, request: gr.Request): + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(time.time(), 4), + "type": vote_type, + "model": model_selector, + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(output_file) + +def vote_last_response_igm(states, vote_type, model_selectors, request: gr.Request): + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(time.time(), 4), + "type": vote_type, + "models": [x for x in model_selectors], + "states": [x.dict() for x in states], + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + for state in states: + print(state.conv_id) + output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(output_file) + +def vote_last_response_ie(state, vote_type, model_selector, request: gr.Request): + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(time.time(), 4), + "type": vote_type, + "model": model_selector, + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}.jpg' + source_file = f'{IMAGE_DIR}/edition/{state.conv_id}_source.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + with open(source_file, 'w') as sf: + save_any_image(state.source_image, sf) + save_image_file_on_log_server(output_file) + save_image_file_on_log_server(source_file) + +def vote_last_response_iem(states, vote_type, model_selectors, request: gr.Request): + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(time.time(), 4), + "type": vote_type, + "models": [x for x in model_selectors], + "states": [x.dict() for x in states], + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + for state in states: + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}.jpg' + source_file = f'{IMAGE_DIR}/edition/{state.conv_id}_source.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + with open(source_file, 'w') as sf: + save_any_image(state.source_image, sf) + save_image_file_on_log_server(output_file) + save_image_file_on_log_server(source_file) + + +def vote_last_response_vg(state, vote_type, model_selector, request: gr.Request): + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(time.time(), 4), + "type": vote_type, + "model": model_selector, + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + output_file = f'{VIDEO_DIR}/generation/{state.conv_id}.mp4' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + if state.model_name.startswith('fal'): + r = requests.get(state.output) + with open(output_file, 'wb') as outfile: + outfile.write(r.content) + else: + print("======== video shape: ========") + print(state.output.shape) + imageio.mimwrite(output_file, state.output, fps=8, quality=9) + save_video_file_on_log_server(output_file) + + + +def vote_last_response_vgm(states, vote_type, model_selectors, request: gr.Request): + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(time.time(), 4), + "type": vote_type, + "models": [x for x in model_selectors], + "states": [x.dict() for x in states], + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + for state in states: + output_file = f'{VIDEO_DIR}/generation/{state.conv_id}.mp4' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + if state.model_name.startswith('fal'): + r = requests.get(state.output) + with open(output_file, 'wb') as outfile: + outfile.write(r.content) + else: + print("======== video shape: ========") + print(state.output.shape) + imageio.mimwrite(output_file, state.output, fps=8, quality=9) + save_video_file_on_log_server(output_file) + + +## Image Generation (IG) Single Model Direct Chat +def upvote_last_response_ig(state, model_selector, request: gr.Request): + ip = get_ip(request) + ig_logger.info(f"upvote. ip: {ip}") + vote_last_response_ig(state, "upvote", model_selector, request) + return ("",) + (disable_btn,) * 3 + +def downvote_last_response_ig(state, model_selector, request: gr.Request): + ip = get_ip(request) + ig_logger.info(f"downvote. ip: {ip}") + vote_last_response_ig(state, "downvote", model_selector, request) + return ("",) + (disable_btn,) * 3 + + +def flag_last_response_ig(state, model_selector, request: gr.Request): + ip = get_ip(request) + ig_logger.info(f"flag. ip: {ip}") + vote_last_response_ig(state, "flag", model_selector, request) + return ("",) + (disable_btn,) * 3 + +## Image Generation Multi (IGM) Side-by-Side and Battle + +def leftvote_last_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, request: gr.Request +): + igm_logger.info(f"leftvote (named). ip: {get_ip(request)}") + vote_last_response_igm( + [state0, state1, state2, state3], "leftvote", [model_selector0, model_selector1, model_selector2, model_selector3], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) +def left1vote_last_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, request: gr.Request +): + igm_logger.info(f"left1vote (named). ip: {get_ip(request)}") + vote_last_response_igm( + [state0, state1, state2, state3], "left1vote", [model_selector0, model_selector1, model_selector2, model_selector3], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) +def rightvote_last_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, request: gr.Request +): + igm_logger.info(f"rightvote (named). ip: {get_ip(request)}") + vote_last_response_igm( + [state0, state1, state2, state3], "rightvote", [model_selector0, model_selector1, model_selector2, model_selector3], request + ) + # print(model_selector0) + if model_selector0 == "": + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) +def right1vote_last_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, request: gr.Request +): + igm_logger.info(f"right1vote (named). ip: {get_ip(request)}") + vote_last_response_igm( + [state0, state1, state2, state3], "right1vote", [model_selector0, model_selector1, model_selector2, model_selector3], request + ) + # print(model_selector0) + if model_selector0 == "": + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) + +def tievote_last_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, request: gr.Request +): + igm_logger.info(f"tievote (named). ip: {get_ip(request)}") + vote_last_response_igm( + [state0, state1, state2, state3], "tievote", [model_selector0, model_selector1, model_selector2, model_selector3], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) + + +def bothbad_vote_last_response_igm( + state0, state1, state2, state3, model_selector0, model_selector1, model_selector2, model_selector3, request: gr.Request +): + igm_logger.info(f"bothbad_vote (named). ip: {get_ip(request)}") + vote_last_response_igm( + [state0, state1, state2, state3], "bothbad_vote", [model_selector0, model_selector1, model_selector2, model_selector3], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model C: {state2.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model D: {state3.model_name.split('_')[1]}", visible=True) + ) + else: + return ("",) + (disable_btn,) * 6 + ( + gr.Markdown(state0.model_name, visible=True), + gr.Markdown(state1.model_name, visible=True), + gr.Markdown(state2.model_name, visible=True), + gr.Markdown(state3.model_name, visible=True) + ) + +## Image Editing (IE) Single Model Direct Chat + +def upvote_last_response_ie(state, model_selector, request: gr.Request): + ip = get_ip(request) + ie_logger.info(f"upvote. ip: {ip}") + vote_last_response_ie(state, "upvote", model_selector, request) + return ("", "", gr.Image(height=512, width=512, type="pil"), "",) + (disable_btn,) * 3 + +def downvote_last_response_ie(state, model_selector, request: gr.Request): + ip = get_ip(request) + ie_logger.info(f"downvote. ip: {ip}") + vote_last_response_ie(state, "downvote", model_selector, request) + return ("", "", gr.Image(height=512, width=512, type="pil"), "",) + (disable_btn,) * 3 + +def flag_last_response_ie(state, model_selector, request: gr.Request): + ip = get_ip(request) + ie_logger.info(f"flag. ip: {ip}") + vote_last_response_ie(state, "flag", model_selector, request) + return ("", "", gr.Image(height=512, width=512, type="pil"), "",) + (disable_btn,) * 3 + +## Image Editing Multi (IEM) Side-by-Side and Battle +def leftvote_last_response_iem( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + iem_logger.info(f"leftvote (anony). ip: {get_ip(request)}") + vote_last_response_iem( + [state0, state1], "leftvote", [model_selector0, model_selector1], request + ) + # names = ( + # "### Model A: " + state0.model_name, + # "### Model B: " + state1.model_name, + # ) + # names = (state0.model_name, state1.model_name) + if model_selector0 == "": + names = (gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + names = (gr.Markdown(state0.model_name, visible=False), gr.Markdown(state1.model_name, visible=False)) + return names + ("", "", gr.Image(height=512, width=512, type="pil"), "") + (disable_btn,) * 4 + +def rightvote_last_response_iem( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + iem_logger.info(f"rightvote (anony). ip: {get_ip(request)}") + vote_last_response_iem( + [state0, state1], "rightvote", [model_selector0, model_selector1], request + ) + # names = ( + # "### Model A: " + state0.model_name, + # "### Model B: " + state1.model_name, + # ) + if model_selector0 == "": + names = (gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + names = (gr.Markdown(state0.model_name, visible=False), gr.Markdown(state1.model_name, visible=False)) + return names + ("", "", gr.Image(height=512, width=512, type="pil"), "") + (disable_btn,) * 4 + +def tievote_last_response_iem( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + iem_logger.info(f"tievote (anony). ip: {get_ip(request)}") + vote_last_response_iem( + [state0, state1], "tievote", [model_selector0, model_selector1], request + ) + if model_selector0 == "": + names = (gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + names = (gr.Markdown(state0.model_name, visible=False), gr.Markdown(state1.model_name, visible=False)) + return names + ("", "", gr.Image(height=512, width=512, type="pil"), "") + (disable_btn,) * 4 + +def bothbad_vote_last_response_iem( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + iem_logger.info(f"bothbad_vote (anony). ip: {get_ip(request)}") + vote_last_response_iem( + [state0, state1], "bothbad_vote", [model_selector0, model_selector1], request + ) + if model_selector0 == "": + names = (gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + names = (gr.Markdown(state0.model_name, visible=False), gr.Markdown(state1.model_name, visible=False)) + return names + ("", "", gr.Image(height=512, width=512, type="pil"), "") + (disable_btn,) * 4 + + +## Video Generation (VG) Single Model Direct Chat +def upvote_last_response_vg(state, model_selector, request: gr.Request): + ip = get_ip(request) + vg_logger.info(f"upvote. ip: {ip}") + vote_last_response_vg(state, "upvote", model_selector, request) + return ("",) + (disable_btn,) * 3 + +def downvote_last_response_vg(state, model_selector, request: gr.Request): + ip = get_ip(request) + vg_logger.info(f"downvote. ip: {ip}") + vote_last_response_vg(state, "downvote", model_selector, request) + return ("",) + (disable_btn,) * 3 + + +def flag_last_response_vg(state, model_selector, request: gr.Request): + ip = get_ip(request) + vg_logger.info(f"flag. ip: {ip}") + vote_last_response_vg(state, "flag", model_selector, request) + return ("",) + (disable_btn,) * 3 + +## Image Generation Multi (IGM) Side-by-Side and Battle + +def leftvote_last_response_vgm( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + vgm_logger.info(f"leftvote (named). ip: {get_ip(request)}") + vote_last_response_vgm( + [state0, state1], "leftvote", [model_selector0, model_selector1], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 4 + (gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(state0.model_name, visible=False), + gr.Markdown(state1.model_name, visible=False)) + + +def rightvote_last_response_vgm( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + vgm_logger.info(f"rightvote (named). ip: {get_ip(request)}") + vote_last_response_vgm( + [state0, state1], "rightvote", [model_selector0, model_selector1], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(state0.model_name, visible=False), + gr.Markdown(state1.model_name, visible=False)) + +def tievote_last_response_vgm( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + vgm_logger.info(f"tievote (named). ip: {get_ip(request)}") + vote_last_response_vgm( + [state0, state1], "tievote", [model_selector0, model_selector1], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(state0.model_name, visible=False), + gr.Markdown(state1.model_name, visible=False)) + + +def bothbad_vote_last_response_vgm( + state0, state1, model_selector0, model_selector1, request: gr.Request +): + vgm_logger.info(f"bothbad_vote (named). ip: {get_ip(request)}") + vote_last_response_vgm( + [state0, state1], "bothbad_vote", [model_selector0, model_selector1], request + ) + if model_selector0 == "": + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(f"### Model A: {state0.model_name.split('_')[1]}", visible=True), + gr.Markdown(f"### Model B: {state1.model_name.split('_')[1]}", visible=True)) + else: + return ("",) + (disable_btn,) * 4 + ( + gr.Markdown(state0.model_name, visible=False), + gr.Markdown(state1.model_name, visible=False)) + +share_js = """ +function (a, b, c, d) { + const captureElement = document.querySelector('#share-region-named'); + html2canvas(captureElement) + .then(canvas => { + canvas.style.display = 'none' + document.body.appendChild(canvas) + return canvas + }) + .then(canvas => { + const image = canvas.toDataURL('image/png') + const a = document.createElement('a') + a.setAttribute('download', 'chatbot-arena.png') + a.setAttribute('href', image) + a.click() + canvas.remove() + }); + return [a, b, c, d]; +} +""" +def share_click_igm(state0, state1, model_selector0, model_selector1, request: gr.Request): + igm_logger.info(f"share (anony). ip: {get_ip(request)}") + if state0 is not None and state1 is not None: + vote_last_response_igm( + [state0, state1], "share", [model_selector0, model_selector1], request + ) + +def share_click_iem(state0, state1, model_selector0, model_selector1, request: gr.Request): + iem_logger.info(f"share (anony). ip: {get_ip(request)}") + if state0 is not None and state1 is not None: + vote_last_response_iem( + [state0, state1], "share", [model_selector0, model_selector1], request + ) + +## All Generation Gradio Interface + +class ImageStateIG: + def __init__(self, model_name): + self.conv_id = uuid.uuid4().hex + self.model_name = model_name + self.prompt = None + self.output = None + + def dict(self): + base = { + "conv_id": self.conv_id, + "model_name": self.model_name, + "prompt": self.prompt + } + return base + +class ImageStateIE: + def __init__(self, model_name): + self.conv_id = uuid.uuid4().hex + self.model_name = model_name + self.source_prompt = None + self.target_prompt = None + self.instruct_prompt = None + self.source_image = None + self.output = None + + def dict(self): + base = { + "conv_id": self.conv_id, + "model_name": self.model_name, + "source_prompt": self.source_prompt, + "target_prompt": self.target_prompt, + "instruct_prompt": self.instruct_prompt + } + return base + +class VideoStateVG: + def __init__(self, model_name): + self.conv_id = uuid.uuid4().hex + self.model_name = model_name + self.prompt = None + self.output = None + + def dict(self): + base = { + "conv_id": self.conv_id, + "model_name": self.model_name, + "prompt": self.prompt + } + return base + + +def generate_ig(gen_func, state, text, model_name, request: gr.Request): + if not text: + raise gr.Warning("Prompt cannot be empty.") + if not model_name: + raise gr.Warning("Model name cannot be empty.") + if state is None: + state = ImageStateIG(model_name) + ip = get_ip(request) + ig_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + generated_image = gen_func(text, model_name) + state.prompt = text + state.output = generated_image + state.model_name = model_name + + yield state, generated_image + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(output_file) + +def generate_ig_museum(gen_func, state, model_name, request: gr.Request): + if not model_name: + raise gr.Warning("Model name cannot be empty.") + if state is None: + state = ImageStateIG(model_name) + ip = get_ip(request) + ig_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + generated_image, text = gen_func(model_name) + state.prompt = text + state.output = generated_image + state.model_name = model_name + + yield state, generated_image, text + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(output_file) + +def generate_igm(gen_func, state0, state1, text, model_name0, model_name1, request: gr.Request): + if not text: + raise gr.Warning("Prompt cannot be empty.") + if not model_name0: + raise gr.Warning("Model name A cannot be empty.") + if not model_name1: + raise gr.Warning("Model name B cannot be empty.") + if state0 is None: + state0 = ImageStateIG(model_name0) + if state1 is None: + state1 = ImageStateIG(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + # Remove ### Model (A|B): from model name + model_name0 = re.sub(r"### Model A: ", "", model_name0) + model_name1 = re.sub(r"### Model B: ", "", model_name1) + generated_image0, generated_image1 = gen_func(text, model_name0, model_name1) + state0.prompt = text + state1.prompt = text + state0.output = generated_image0 + state1.output = generated_image1 + state0.model_name = model_name0 + state1.model_name = model_name1 + + yield state0, state1, generated_image0, generated_image1 + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(output_file) + +def generate_igm_museum(gen_func, state0, state1, model_name0, model_name1, request: gr.Request): + if not model_name0: + raise gr.Warning("Model name A cannot be empty.") + if not model_name1: + raise gr.Warning("Model name B cannot be empty.") + if state0 is None: + state0 = ImageStateIG(model_name0) + if state1 is None: + state1 = ImageStateIG(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + # Remove ### Model (A|B): from model name + model_name0 = re.sub(r"### Model A: ", "", model_name0) + model_name1 = re.sub(r"### Model B: ", "", model_name1) + generated_image0, generated_image1, text = gen_func(model_name0, model_name1) + state0.prompt = text + state1.prompt = text + state0.output = generated_image0 + state1.output = generated_image1 + state0.model_name = model_name0 + state1.model_name = model_name1 + + yield state0, state1, generated_image0, generated_image1, text + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(output_file) + + +def generate_igm_annoy(gen_func, state0, state1, state2, state3, text, model_name0, model_name1, model_name2, model_name3, request: gr.Request): + if not text: + raise gr.Warning("Prompt cannot be empty.") + if state0 is None: + state0 = ImageStateIG(model_name0) + if state1 is None: + state1 = ImageStateIG(model_name1) + if state2 is None: + state2 = ImageStateIG(model_name2) + if state3 is None: + state3 = ImageStateIG(model_name3) + + + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = "" + model_name1 = "" + model_name2 = "" + model_name3 = "" + + generated_image0, generated_image1, generated_image2, generated_image3, model_name0, model_name1, model_name2, model_name3 \ + = gen_func(text, model_name0, model_name1, model_name2, model_name3) + state0.prompt = text + state1.prompt = text + state2.prompt = text + state3.prompt = text + + state0.output = generated_image0 + state1.output = generated_image1 + state2.output = generated_image2 + state3.output = generated_image3 + + state0.model_name = model_name0 + state1.model_name = model_name1 + state2.model_name = model_name2 + state3.model_name = model_name3 + + + + yield state0, state1, state2, state3, generated_image0, generated_image1, generated_image2, generated_image3, \ + generated_image0, generated_image1, generated_image2, generated_image3, \ + gr.Markdown(f"### Model A: {model_name0}", visible=False), gr.Markdown(f"### Model B: {model_name1}", visible=False), \ + gr.Markdown(f"### Model C: {model_name2}", visible=False), gr.Markdown(f"### Model D: {model_name3}", visible=False) + + # finish_tstamp = time.time() + # # logger.info(f"===output===: {output}") + + # with open(get_conv_log_filename(), "a") as fout: + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name0, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state0.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name1, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state1.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name2, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state2.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name3, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state3.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + + # for i, state in enumerate([state0, state1, state2, state3]): + # output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + # os.makedirs(os.path.dirname(output_file), exist_ok=True) + # with open(output_file, 'w') as f: + # save_any_image(state.output, f) + # save_image_file_on_log_server(output_file) + +def generate_igm_annoy_museum(gen_func, state0, state1, state2, state3, model_name0, model_name1, model_name2, model_name3, request: gr.Request): + if state0 is None: + state0 = ImageStateIG(model_name0) + if state1 is None: + state1 = ImageStateIG(model_name1) + if state2 is None: + state2 = ImageStateIG(model_name2) + if state3 is None: + state3 = ImageStateIG(model_name3) + + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = re.sub(r"### Model A: ", "", model_name0) + model_name1 = re.sub(r"### Model B: ", "", model_name1) + model_name2 = re.sub(r"### Model C: ", "", model_name2) + model_name3 = re.sub(r"### Model D: ", "", model_name3) + + generated_image0, generated_image1, generated_image2, generated_image3, model_name0, model_name1, model_name2, model_name3, text \ + = gen_func(model_name0, model_name1, model_name2, model_name3) + + state0.prompt = text + state1.prompt = text + state2.prompt = text + state3.prompt = text + + state0.output = generated_image0 + state1.output = generated_image1 + state2.output = generated_image2 + state3.output = generated_image3 + + state0.model_name = model_name0 + state1.model_name = model_name1 + state2.model_name = model_name2 + state3.model_name = model_name3 + + + yield state0, state1, state2, state3, generated_image0, generated_image1, generated_image2, generated_image3, \ + generated_image0, generated_image1, generated_image2, generated_image3, text, \ + gr.Markdown(f"### Model A: {model_name0}"), gr.Markdown(f"### Model B: {model_name1}"), \ + gr.Markdown(f"### Model C: {model_name2}"), gr.Markdown(f"### Model D: {model_name3}") + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + # with open(get_conv_log_filename(), "a") as fout: + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name0, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state0.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name1, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state1.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name2, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state2.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + # data = { + # "tstamp": round(finish_tstamp, 4), + # "type": "chat", + # "model": model_name3, + # "gen_params": {}, + # "start": round(start_tstamp, 4), + # "finish": round(finish_tstamp, 4), + # "state": state3.dict(), + # "ip": get_ip(request), + # } + # fout.write(json.dumps(data) + "\n") + # append_json_item_on_log_server(data, get_conv_log_filename()) + + + # for i, state in enumerate([state0, state1, state2, state3]): + # output_file = f'{IMAGE_DIR}/generation/{state.conv_id}.jpg' + # os.makedirs(os.path.dirname(output_file), exist_ok=True) + # with open(output_file, 'w') as f: + # save_any_image(state.output, f) + # save_image_file_on_log_server(output_file) + +def generate_ie(gen_func, state, source_text, target_text, instruct_text, source_image, model_name, request: gr.Request): + if not source_text: + raise gr.Warning("Source prompt cannot be empty.") + if not target_text: + raise gr.Warning("Target prompt cannot be empty.") + if not instruct_text: + raise gr.Warning("Instruction prompt cannot be empty.") + if not source_image: + raise gr.Warning("Source image cannot be empty.") + if not model_name: + raise gr.Warning("Model name cannot be empty.") + if state is None: + state = ImageStateIE(model_name) + ip = get_ip(request) + ig_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + generated_image = gen_func(source_text, target_text, instruct_text, source_image, model_name) + state.source_prompt = source_text + state.target_prompt = target_text + state.instruct_prompt = instruct_text + state.source_image = source_image + state.output = generated_image + state.model_name = model_name + + yield state, generated_image + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + src_img_file = f'{IMAGE_DIR}/edition/{state.conv_id}_src.jpg' + os.makedirs(os.path.dirname(src_img_file), exist_ok=True) + with open(src_img_file, 'w') as f: + save_any_image(state.source_image, f) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}_out.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(src_img_file) + save_image_file_on_log_server(output_file) + +def generate_ie_museum(gen_func, state, model_name, request: gr.Request): + if not model_name: + raise gr.Warning("Model name cannot be empty.") + if state is None: + state = ImageStateIE(model_name) + ip = get_ip(request) + ig_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + source_image, generated_image, source_text, target_text, instruct_text = gen_func(model_name) + state.source_prompt = source_text + state.target_prompt = target_text + state.instruct_prompt = instruct_text + state.source_image = source_image + state.output = generated_image + state.model_name = model_name + + yield state, generated_image, source_image, source_text, target_text, instruct_text + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + src_img_file = f'{IMAGE_DIR}/edition/{state.conv_id}_src.jpg' + os.makedirs(os.path.dirname(src_img_file), exist_ok=True) + with open(src_img_file, 'w') as f: + save_any_image(state.source_image, f) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}_out.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(src_img_file) + save_image_file_on_log_server(output_file) + + +def generate_iem(gen_func, state0, state1, source_text, target_text, instruct_text, source_image, model_name0, model_name1, request: gr.Request): + if not source_text: + raise gr.Warning("Source prompt cannot be empty.") + if not target_text: + raise gr.Warning("Target prompt cannot be empty.") + if not instruct_text: + raise gr.Warning("Instruction prompt cannot be empty.") + if not source_image: + raise gr.Warning("Source image cannot be empty.") + if not model_name0: + raise gr.Warning("Model name A cannot be empty.") + if not model_name1: + raise gr.Warning("Model name B cannot be empty.") + if state0 is None: + state0 = ImageStateIE(model_name0) + if state1 is None: + state1 = ImageStateIE(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = re.sub(r"### Model A: ", "", model_name0) + model_name1 = re.sub(r"### Model B: ", "", model_name1) + generated_image0, generated_image1 = gen_func(source_text, target_text, instruct_text, source_image, model_name0, model_name1) + state0.source_prompt = source_text + state0.target_prompt = target_text + state0.instruct_prompt = instruct_text + state0.source_image = source_image + state0.output = generated_image0 + state0.model_name = model_name0 + state1.source_prompt = source_text + state1.target_prompt = target_text + state1.instruct_prompt = instruct_text + state1.source_image = source_image + state1.output = generated_image1 + state1.model_name = model_name1 + + yield state0, state1, generated_image0, generated_image1 + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + src_img_file = f'{IMAGE_DIR}/edition/{state.conv_id}_src.jpg' + os.makedirs(os.path.dirname(src_img_file), exist_ok=True) + with open(src_img_file, 'w') as f: + save_any_image(state.source_image, f) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}_out.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(src_img_file) + save_image_file_on_log_server(output_file) + +def generate_iem_museum(gen_func, state0, state1, model_name0, model_name1, request: gr.Request): + if not model_name0: + raise gr.Warning("Model name A cannot be empty.") + if not model_name1: + raise gr.Warning("Model name B cannot be empty.") + if state0 is None: + state0 = ImageStateIE(model_name0) + if state1 is None: + state1 = ImageStateIE(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = re.sub(r"### Model A: ", "", model_name0) + model_name1 = re.sub(r"### Model B: ", "", model_name1) + source_image, generated_image0, generated_image1, source_text, target_text, instruct_text = gen_func(model_name0, model_name1) + state0.source_prompt = source_text + state0.target_prompt = target_text + state0.instruct_prompt = instruct_text + state0.source_image = source_image + state0.output = generated_image0 + state0.model_name = model_name0 + state1.source_prompt = source_text + state1.target_prompt = target_text + state1.instruct_prompt = instruct_text + state1.source_image = source_image + state1.output = generated_image1 + state1.model_name = model_name1 + + yield state0, state1, generated_image0, generated_image1, source_image, source_text, target_text, instruct_text + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + src_img_file = f'{IMAGE_DIR}/edition/{state.conv_id}_src.jpg' + os.makedirs(os.path.dirname(src_img_file), exist_ok=True) + with open(src_img_file, 'w') as f: + save_any_image(state.source_image, f) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}_out.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(src_img_file) + save_image_file_on_log_server(output_file) + + +def generate_iem_annoy(gen_func, state0, state1, source_text, target_text, instruct_text, source_image, model_name0, model_name1, request: gr.Request): + if not source_text: + raise gr.Warning("Source prompt cannot be empty.") + if not target_text: + raise gr.Warning("Target prompt cannot be empty.") + if not instruct_text: + raise gr.Warning("Instruction prompt cannot be empty.") + if not source_image: + raise gr.Warning("Source image cannot be empty.") + if state0 is None: + state0 = ImageStateIE(model_name0) + if state1 is None: + state1 = ImageStateIE(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = "" + model_name1 = "" + generated_image0, generated_image1, model_name0, model_name1 = gen_func(source_text, target_text, instruct_text, source_image, model_name0, model_name1) + state0.source_prompt = source_text + state0.target_prompt = target_text + state0.instruct_prompt = instruct_text + state0.source_image = source_image + state0.output = generated_image0 + state0.model_name = model_name0 + state1.source_prompt = source_text + state1.target_prompt = target_text + state1.instruct_prompt = instruct_text + state1.source_image = source_image + state1.output = generated_image1 + state1.model_name = model_name1 + + yield state0, state1, generated_image0, generated_image1, \ + gr.Markdown(f"### Model A: {model_name0}", visible=False), gr.Markdown(f"### Model B: {model_name1}", visible=False) + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + src_img_file = f'{IMAGE_DIR}/edition/{state.conv_id}_src.jpg' + os.makedirs(os.path.dirname(src_img_file), exist_ok=True) + with open(src_img_file, 'w') as f: + save_any_image(state.source_image, f) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}_out.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(src_img_file) + save_image_file_on_log_server(output_file) + +def generate_iem_annoy_museum(gen_func, state0, state1, model_name0, model_name1, request: gr.Request): + if state0 is None: + state0 = ImageStateIE(model_name0) + if state1 is None: + state1 = ImageStateIE(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = "" + model_name1 = "" + source_image, generated_image0, generated_image1, source_text, target_text, instruct_text, model_name0, model_name1 = gen_func(model_name0, model_name1) + state0.source_prompt = source_text + state0.target_prompt = target_text + state0.instruct_prompt = instruct_text + state0.source_image = source_image + state0.output = generated_image0 + state0.model_name = model_name0 + state1.source_prompt = source_text + state1.target_prompt = target_text + state1.instruct_prompt = instruct_text + state1.source_image = source_image + state1.output = generated_image1 + state1.model_name = model_name1 + + yield state0, state1, generated_image0, generated_image1, source_image, source_text, target_text, instruct_text, \ + gr.Markdown(f"### Model A: {model_name0}", visible=False), gr.Markdown(f"### Model B: {model_name1}", visible=False) + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + src_img_file = f'{IMAGE_DIR}/edition/{state.conv_id}_src.jpg' + os.makedirs(os.path.dirname(src_img_file), exist_ok=True) + with open(src_img_file, 'w') as f: + save_any_image(state.source_image, f) + output_file = f'{IMAGE_DIR}/edition/{state.conv_id}_out.jpg' + with open(output_file, 'w') as f: + save_any_image(state.output, f) + save_image_file_on_log_server(src_img_file) + save_image_file_on_log_server(output_file) + +def generate_vg(gen_func, state, text, model_name, request: gr.Request): + if not text: + raise gr.Warning("Prompt cannot be empty.") + if not model_name: + raise gr.Warning("Model name cannot be empty.") + if state is None: + state = VideoStateVG(model_name) + ip = get_ip(request) + vg_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + generated_video = gen_func(text, model_name) + state.prompt = text + state.output = generated_video + state.model_name = model_name + + # yield state, generated_video + + finish_tstamp = time.time() + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + output_file = f'{VIDEO_DIR}/generation/{state.conv_id}.mp4' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + if model_name.startswith('fal'): + r = requests.get(state.output) + with open(output_file, 'wb') as outfile: + outfile.write(r.content) + else: + print("======== video shape: ========") + print(state.output.shape) + imageio.mimwrite(output_file, state.output, fps=8, quality=9) + + save_video_file_on_log_server(output_file) + yield state, output_file + +def generate_vgm(gen_func, state0, state1, text, model_name0, model_name1, request: gr.Request): + if not text: + raise gr.Warning("Prompt cannot be empty.") + if not model_name0: + raise gr.Warning("Model name A cannot be empty.") + if not model_name1: + raise gr.Warning("Model name B cannot be empty.") + if state0 is None: + state0 = VideoStateVG(model_name0) + if state1 is None: + state1 = VideoStateVG(model_name1) + ip = get_ip(request) + igm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + # Remove ### Model (A|B): from model name + model_name0 = re.sub(r"### Model A: ", "", model_name0) + model_name1 = re.sub(r"### Model B: ", "", model_name1) + generated_video0, generated_video1 = gen_func(text, model_name0, model_name1) + state0.prompt = text + state1.prompt = text + state0.output = generated_video0 + state1.output = generated_video1 + state0.model_name = model_name0 + state1.model_name = model_name1 + + # yield state0, state1, generated_video0, generated_video1 + print("====== model name =========") + print(state0.model_name) + print(state1.model_name) + + + finish_tstamp = time.time() + + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + output_file = f'{VIDEO_DIR}/generation/{state.conv_id}.mp4' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + print(state.model_name) + + if state.model_name.startswith('fal'): + r = requests.get(state.output) + with open(output_file, 'wb') as outfile: + outfile.write(r.content) + else: + print("======== video shape: ========") + print(state.output) + print(state.output.shape) + imageio.mimwrite(output_file, state.output, fps=8, quality=9) + save_video_file_on_log_server(output_file) + yield state0, state1, f'{VIDEO_DIR}/generation/{state0.conv_id}.mp4', f'{VIDEO_DIR}/generation/{state1.conv_id}.mp4' + + +def generate_vgm_annoy(gen_func, state0, state1, text, model_name0, model_name1, request: gr.Request): + if not text: + raise gr.Warning("Prompt cannot be empty.") + if state0 is None: + state0 = VideoStateVG(model_name0) + if state1 is None: + state1 = VideoStateVG(model_name1) + ip = get_ip(request) + vgm_logger.info(f"generate. ip: {ip}") + start_tstamp = time.time() + model_name0 = "" + model_name1 = "" + generated_video0, generated_video1, model_name0, model_name1 = gen_func(text, model_name0, model_name1) + state0.prompt = text + state1.prompt = text + state0.output = generated_video0 + state1.output = generated_video1 + state0.model_name = model_name0 + state1.model_name = model_name1 + + # yield state0, state1, generated_video0, generated_video1, \ + # gr.Markdown(f"### Model A: {model_name0}"), gr.Markdown(f"### Model B: {model_name1}") + + finish_tstamp = time.time() + # logger.info(f"===output===: {output}") + + with open(get_conv_log_filename(), "a") as fout: + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name0, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state0.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + data = { + "tstamp": round(finish_tstamp, 4), + "type": "chat", + "model": model_name1, + "gen_params": {}, + "start": round(start_tstamp, 4), + "finish": round(finish_tstamp, 4), + "state": state1.dict(), + "ip": get_ip(request), + } + fout.write(json.dumps(data) + "\n") + append_json_item_on_log_server(data, get_conv_log_filename()) + + for i, state in enumerate([state0, state1]): + output_file = f'{VIDEO_DIR}/generation/{state.conv_id}.mp4' + os.makedirs(os.path.dirname(output_file), exist_ok=True) + if state.model_name.startswith('fal'): + r = requests.get(state.output) + with open(output_file, 'wb') as outfile: + outfile.write(r.content) + else: + print("======== video shape: ========") + print(state.output.shape) + imageio.mimwrite(output_file, state.output, fps=8, quality=9) + save_video_file_on_log_server(output_file) + + yield state0, state1, f'{VIDEO_DIR}/generation/{state0.conv_id}.mp4', f'{VIDEO_DIR}/generation/{state1.conv_id}.mp4', \ + gr.Markdown(f"### Model A: {model_name0}", visible=False), gr.Markdown(f"### Model B: {model_name1}", visible=False) \ No newline at end of file