自良 commited on
Commit
0ce740f
·
1 Parent(s): 215b1c3

update log server

Browse files
Files changed (41) hide show
  1. .gitignore +4 -0
  2. arena_elo/README.md +0 -46
  3. arena_elo/cut_off_date.txt +1 -1
  4. arena_elo/elo_rating/__pycache__/__init__.cpython-310.pyc +0 -0
  5. arena_elo/elo_rating/__pycache__/basic_stats.cpython-310.pyc +0 -0
  6. arena_elo/elo_rating/__pycache__/clean_battle_data.cpython-310.pyc +0 -0
  7. arena_elo/elo_rating/__pycache__/elo_analysis.cpython-310.pyc +0 -0
  8. arena_elo/elo_rating/__pycache__/generate_leaderboard.cpython-310.pyc +0 -0
  9. arena_elo/elo_rating/__pycache__/model_registry.cpython-310.pyc +0 -0
  10. arena_elo/elo_rating/__pycache__/utils.cpython-310.pyc +0 -0
  11. arena_elo/elo_rating/basic_stats.py +90 -23
  12. arena_elo/elo_rating/clean_battle_data.py +57 -3
  13. arena_elo/get_latest_data.sh +0 -17
  14. arena_elo/requirements.txt +0 -28
  15. arena_elo/results/20241227/clean_battle.json +538 -0
  16. arena_elo/results/20241227/elo_results.pkl +3 -0
  17. arena_elo/results/20241227/leaderboard.csv +9 -0
  18. arena_elo/results/20250106/clean_battle.json +610 -0
  19. arena_elo/results/20250106/elo_results.pkl +3 -0
  20. arena_elo/results/20250106/leaderboard.csv +9 -0
  21. arena_elo/results/20250107/clean_battle.json +562 -0
  22. arena_elo/results/20250107/elo_results.pkl +3 -0
  23. arena_elo/results/20250107/leaderboard.csv +9 -0
  24. arena_elo/results/latest/clean_battle.json +80 -0
  25. arena_elo/results/latest/elo_results.pkl +2 -2
  26. arena_elo/results/latest/leaderboard.csv +8 -8
  27. arena_elo/update_elo_rating.sh +0 -6
  28. logs/vote_log/2024-12-24-conv.json +0 -26
  29. logs/vote_log/2024-12-25-conv.json +0 -7
  30. logs/vote_log/2024-12-26-conv.json +0 -27
  31. logs/vote_log/2024-12-27-conv.json +0 -7
  32. logs/vote_log/gr_web_image_generation_multi.log +0 -532
  33. logs/vote_log/gr_web_image_generation_multi.log.2024-12-25 +0 -797
  34. serve/__pycache__/constants.cpython-310.pyc +0 -0
  35. serve/__pycache__/log_utils.cpython-310.pyc +0 -0
  36. serve/__pycache__/utils.cpython-310.pyc +0 -0
  37. serve/__pycache__/vote_utils.cpython-310.pyc +0 -0
  38. serve/constants.py +4 -0
  39. serve/log_utils.py +8 -2
  40. serve/utils.py +1 -1
  41. serve/vote_utils.py +46 -15
.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ .DS_Store
2
+ logs/
3
+ arena_elo/elo_rating/update_elo_rating.sh
4
+ __pycache__/
arena_elo/README.md DELETED
@@ -1,46 +0,0 @@
1
- ## Computing the Elo Ratings
2
-
3
-
4
- ```bash
5
- apt-get -y install pkg-config
6
- pip install -r requirements.txt
7
- ```
8
-
9
-
10
- ### to update the leaderboard
11
-
12
- ```bash
13
- export LOGDIR="/path/to/your/logdir"
14
- bash update_elo_rating.sh
15
- ```
16
-
17
- ### to inspect the leaderboard status
18
- ```bash
19
- python -m elo_rating.inspect_elo_rating_pkl
20
- ```
21
-
22
- ### to inspect the collected data status and cost
23
- ```bash
24
- export LOGDIR="/path/to/your/logdir"
25
- python -m elo_rating.inspect_cost
26
- ```
27
-
28
- ### to upload the battle data to hugging face🤗
29
- ```bash
30
- export HUGGINGFACE_TOKEN="your_huggingface_token"
31
- bash get_latest_data.sh
32
- python -m elo_rating.upload_battle_data --repo_id "WildVision/wildvision-bench" --log_dir "./vision-arena-logs/"
33
- ```
34
-
35
- ### to upload the chat data to hugging face🤗
36
- ```bash
37
- export HUGGINGFACE_TOKEN="your_huggingface_token"
38
- bash get_latest_data.sh
39
- python -m elo_rating.upload_chat_data --repo_id "WildVision/wildvision-bench" --log_dir "./vision-arena-logs/"
40
- ```
41
-
42
-
43
- ### to get the collected data
44
- ```bash
45
- python -m
46
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
arena_elo/cut_off_date.txt CHANGED
@@ -1 +1 @@
1
- 20241226
 
1
+ 20250107
arena_elo/elo_rating/__pycache__/__init__.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/__init__.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/__init__.cpython-310.pyc differ
 
arena_elo/elo_rating/__pycache__/basic_stats.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/basic_stats.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/basic_stats.cpython-310.pyc differ
 
arena_elo/elo_rating/__pycache__/clean_battle_data.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/clean_battle_data.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/clean_battle_data.cpython-310.pyc differ
 
arena_elo/elo_rating/__pycache__/elo_analysis.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/elo_analysis.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/elo_analysis.cpython-310.pyc differ
 
arena_elo/elo_rating/__pycache__/generate_leaderboard.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/generate_leaderboard.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/generate_leaderboard.cpython-310.pyc differ
 
arena_elo/elo_rating/__pycache__/model_registry.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/model_registry.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/model_registry.cpython-310.pyc differ
 
arena_elo/elo_rating/__pycache__/utils.cpython-310.pyc CHANGED
Binary files a/arena_elo/elo_rating/__pycache__/utils.cpython-310.pyc and b/arena_elo/elo_rating/__pycache__/utils.cpython-310.pyc differ
 
arena_elo/elo_rating/basic_stats.py CHANGED
@@ -3,6 +3,7 @@ import code
3
  import datetime
4
  import json
5
  import os
 
6
  from pytz import timezone
7
  import time
8
 
@@ -11,33 +12,42 @@ import plotly.express as px
11
  import plotly.graph_objects as go
12
  from tqdm import tqdm
13
 
 
14
  NUM_SERVERS = 1
15
- LOG_ROOT_DIR = os.getenv("LOGDIR", None)
16
- if LOG_ROOT_DIR is None:
17
- raise ValueError("LOGDIR environment variable not set, please set it by `export LOGDIR=...`")
 
 
 
 
 
 
 
18
 
19
- def get_log_files(max_num_files=None):
20
- log_root = os.path.expanduser(LOG_ROOT_DIR)
 
 
 
 
 
 
21
  filenames = []
22
- if NUM_SERVERS == 1:
23
- for filename in os.listdir(log_root):
24
- if filename.endswith("-conv.json"):
25
- filepath = f"{log_root}/{filename}"
26
- name_tstamp_tuple = (filepath, os.path.getmtime(filepath))
27
- filenames.append(name_tstamp_tuple)
28
- else:
29
- for i in range(NUM_SERVERS):
30
- for filename in os.listdir(f"{log_root}/server{i}"):
31
- if filename.endswith("-conv.json"):
32
- filepath = f"{log_root}/server{i}/{filename}"
33
- name_tstamp_tuple = (filepath, os.path.getmtime(filepath))
34
- filenames.append(name_tstamp_tuple)
35
- # sort by tstamp
36
  filenames = sorted(filenames, key=lambda x: x[1])
 
 
37
  filenames = [x[0] for x in filenames]
38
 
 
39
  max_num_files = max_num_files or len(filenames)
40
  filenames = filenames[-max_num_files:]
 
41
  return filenames
42
 
43
 
@@ -74,6 +84,63 @@ def load_log_files_parallel(log_files, num_threads=16):
74
  return data_all
75
 
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  def get_anony_vote_df(df):
78
  anony_vote_df = df[
79
  df["type"].isin(["leftvote", "rightvote", "tievote", "bothbad_vote"])
@@ -93,8 +160,8 @@ def merge_counts(series, on, names):
93
  return ret
94
 
95
 
96
- def report_basic_stats(log_files):
97
- df_all = load_log_files_parallel(log_files)
98
  df_all = pd.DataFrame(df_all)
99
  now_t = df_all["tstamp"].max()
100
  df_1_hour = df_all[df_all["tstamp"] > (now_t - 3600)]
@@ -218,8 +285,8 @@ if __name__ == "__main__":
218
  parser.add_argument("--max-num-files", type=int)
219
  args = parser.parse_args()
220
 
221
- log_files = get_log_files(args.max_num_files)
222
- basic_stats = report_basic_stats(log_files)
223
 
224
  print(basic_stats["action_hist_md"] + "\n")
225
  print(basic_stats["model_hist_md"] + "\n")
 
3
  import datetime
4
  import json
5
  import os
6
+ import oss2
7
  from pytz import timezone
8
  import time
9
 
 
12
  import plotly.graph_objects as go
13
  from tqdm import tqdm
14
 
15
+
16
  NUM_SERVERS = 1
17
+ LOG_ROOT_DIR = os.getenv("LOG_ROOT_DIR", "")
18
+ OSS_ACCESS_KEY_ID = os.getenv("OSS_ACCESS_KEY_ID", "")
19
+ OSS_ACCESS_KEY_SECRET = os.getenv("OSS_ACCESS_KEY_SECRET", "")
20
+ OSS_ENDPOINT = os.getenv("OSS_ENDPOINT", "")
21
+ OSS_BUCKET_NAME = os.getenv("OSS_BUCKET_NAME", "")
22
+ OSS_FILE_PREFIX = "logs/vote_log/"
23
+
24
+ auth = oss2.Auth(OSS_ACCESS_KEY_ID, OSS_ACCESS_KEY_SECRET)
25
+ bucket = oss2.Bucket(auth, OSS_ENDPOINT, OSS_BUCKET_NAME)
26
+
27
 
28
+ def get_log_files(bucket, max_num_files=None):
29
+ """
30
+ Fetch log file paths from OSS, sorted by last modified timestamp.
31
+ :param bucket: oss2.Bucket instance
32
+ :param max_num_files: Maximum number of files to return
33
+ :return: List of log file paths (sorted by timestamp)
34
+ """
35
+ # List objects in the OSS bucket with the specified prefix
36
  filenames = []
37
+ for obj in oss2.ObjectIterator(bucket, prefix=OSS_FILE_PREFIX):
38
+ if obj.key.endswith("-conv.json"): # Filter log files by extension
39
+ filenames.append((obj.key, obj.last_modified))
40
+
41
+ # Sort filenames by the last modified timestamp
 
 
 
 
 
 
 
 
 
42
  filenames = sorted(filenames, key=lambda x: x[1])
43
+
44
+ # Extract only the file paths (keys)
45
  filenames = [x[0] for x in filenames]
46
 
47
+ # Apply the max_num_files limit if specified
48
  max_num_files = max_num_files or len(filenames)
49
  filenames = filenames[-max_num_files:]
50
+
51
  return filenames
52
 
53
 
 
84
  return data_all
85
 
86
 
87
+ def load_log_files_from_oss(bucket, filename):
88
+ """
89
+ Load log data from a file stored in OSS.
90
+ :param bucket: oss2.Bucket instance
91
+ :param filename: Path to the file in OSS
92
+ :return: Parsed log data as a list of dictionaries
93
+ """
94
+ data = []
95
+ for retry in range(5):
96
+ try:
97
+ # Read the file from OSS
98
+ result = bucket.get_object(filename)
99
+ lines = result.read().decode('utf-8').splitlines() # Read file content and split into lines
100
+ break
101
+ except oss2.exceptions.NoSuchKey:
102
+ print(f"File not found in OSS: {filename}, retrying ({retry + 1}/5)...")
103
+ time.sleep(2)
104
+ except Exception as e:
105
+ print(f"Error reading file {filename} from OSS: {e}")
106
+ time.sleep(2)
107
+
108
+ for line in lines:
109
+ row = json.loads(line)
110
+ data.append(
111
+ dict(
112
+ type=row["type"],
113
+ tstamp=row["tstamp"],
114
+ model=row.get("model", ""),
115
+ models=row.get("models", ["", ""]),
116
+ )
117
+ )
118
+ return data
119
+
120
+
121
+ def load_log_files_parallel_from_oss(bucket, log_files, num_threads=16):
122
+ """
123
+ Load log files from OSS in parallel using multiple threads.
124
+ :param bucket: oss2.Bucket instance
125
+ :param log_files: List of log file paths in OSS
126
+ :param num_threads: Number of threads to use for parallel loading
127
+ :return: Combined log data from all files
128
+ """
129
+ data_all = []
130
+ from multiprocessing import Pool
131
+ from functools import partial
132
+
133
+ # Partial function to include the bucket in the function arguments
134
+ load_function = partial(load_log_files_from_oss, bucket)
135
+
136
+ # Parallel processing using multiple threads
137
+ with Pool(num_threads) as p:
138
+ ret_all = list(tqdm(p.imap(load_function, log_files), total=len(log_files)))
139
+ for ret in ret_all:
140
+ data_all.extend(ret)
141
+ return data_all
142
+
143
+
144
  def get_anony_vote_df(df):
145
  anony_vote_df = df[
146
  df["type"].isin(["leftvote", "rightvote", "tievote", "bothbad_vote"])
 
160
  return ret
161
 
162
 
163
+ def report_basic_stats(bucket, log_files):
164
+ df_all = load_log_files_parallel_from_oss(bucket, log_files)
165
  df_all = pd.DataFrame(df_all)
166
  now_t = df_all["tstamp"].max()
167
  df_1_hour = df_all[df_all["tstamp"] > (now_t - 3600)]
 
285
  parser.add_argument("--max-num-files", type=int)
286
  args = parser.parse_args()
287
 
288
+ log_files = get_log_files(bucket, args.max_num_files)
289
+ basic_stats = report_basic_stats(bucket, log_files)
290
 
291
  print(basic_stats["action_hist_md"] + "\n")
292
  print(basic_stats["model_hist_md"] + "\n")
arena_elo/elo_rating/clean_battle_data.py CHANGED
@@ -8,6 +8,7 @@ import argparse
8
  import datetime
9
  import json
10
  import os
 
11
  import sys
12
  from pytz import timezone
13
  import time
@@ -17,7 +18,7 @@ ImageFile.LOAD_TRUNCATED_IMAGES = True
17
 
18
  from tqdm import tqdm
19
 
20
- from .basic_stats import get_log_files, NUM_SERVERS, LOG_ROOT_DIR
21
  from .utils import detect_language, get_time_stamp_from_date
22
 
23
  VOTES = ["tievote", "leftvote", "rightvote", "bothbad_vote"]
@@ -124,6 +125,59 @@ def read_file_parallel(log_files, num_threads=16):
124
  data_all.extend(ret)
125
  return data_all
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  def load_image(image_path):
128
  try:
129
  return PIL.Image.open(image_path)
@@ -131,7 +185,7 @@ def load_image(image_path):
131
  return None
132
 
133
  def clean_battle_data(log_files, exclude_model_names, ban_ip_list=None, sanitize_ip=False, mode="simple"):
134
- data = read_file_parallel(log_files, num_threads=16)
135
 
136
  convert_type = {
137
  "leftvote": "model_a",
@@ -307,7 +361,7 @@ if __name__ == "__main__":
307
  parser.add_argument("--sanitize-ip", action="store_true", default=False)
308
  args = parser.parse_args()
309
 
310
- log_files = get_log_files(args.max_num_files)
311
  ban_ip_list = json.load(open(args.ban_ip_file)) if args.ban_ip_file else None
312
 
313
  battles = clean_battle_data(
 
8
  import datetime
9
  import json
10
  import os
11
+ import oss2
12
  import sys
13
  from pytz import timezone
14
  import time
 
18
 
19
  from tqdm import tqdm
20
 
21
+ from .basic_stats import get_log_files, NUM_SERVERS, LOG_ROOT_DIR, bucket
22
  from .utils import detect_language, get_time_stamp_from_date
23
 
24
  VOTES = ["tievote", "leftvote", "rightvote", "bothbad_vote"]
 
125
  data_all.extend(ret)
126
  return data_all
127
 
128
+
129
+ def read_file_from_oss(bucket, filename):
130
+ """
131
+ Read and parse a log file stored in OSS.
132
+ :param bucket: oss2.Bucket instance
133
+ :param filename: Path to the file in OSS
134
+ :return: List of parsed log data
135
+ """
136
+ data = []
137
+ for retry in range(5):
138
+ try:
139
+ # Get the file content from OSS
140
+ result = bucket.get_object(filename)
141
+ for line in result.read().decode('utf-8').splitlines(): # Read file content line by line
142
+ row = json.loads(line)
143
+ if row["type"] in VOTES: # Filter rows based on type
144
+ data.append(row)
145
+ break
146
+ except oss2.exceptions.NoSuchKey:
147
+ print(f"File not found in OSS: {filename}. Retrying ({retry + 1}/5)...")
148
+ time.sleep(2)
149
+ except json.JSONDecodeError as e:
150
+ print(f"Error decoding JSON in file {filename}: {e}")
151
+ exit(0)
152
+ except Exception as e:
153
+ print(f"Error reading file {filename} from OSS: {e}")
154
+ time.sleep(2)
155
+ return data
156
+
157
+
158
+ def read_file_parallel_from_oss(bucket, log_files, num_threads=16):
159
+ """
160
+ Read multiple log files from OSS in parallel.
161
+ :param bucket: oss2.Bucket instance
162
+ :param log_files: List of log file paths in OSS
163
+ :param num_threads: Number of threads to use for parallel processing
164
+ :return: Combined log data from all files
165
+ """
166
+ data_all = []
167
+ from multiprocessing import Pool
168
+ from functools import partial
169
+
170
+ # Partial function to include the bucket as a fixed argument
171
+ read_function = partial(read_file_from_oss, bucket)
172
+
173
+ # Parallel processing using multiprocessing Pool
174
+ with Pool(num_threads) as p:
175
+ ret_all = list(tqdm(p.imap(read_function, log_files), total=len(log_files)))
176
+ for ret in ret_all:
177
+ data_all.extend(ret)
178
+ return data_all
179
+
180
+
181
  def load_image(image_path):
182
  try:
183
  return PIL.Image.open(image_path)
 
185
  return None
186
 
187
  def clean_battle_data(log_files, exclude_model_names, ban_ip_list=None, sanitize_ip=False, mode="simple"):
188
+ data = read_file_parallel_from_oss(bucket, log_files, num_threads=16)
189
 
190
  convert_type = {
191
  "leftvote": "model_a",
 
361
  parser.add_argument("--sanitize-ip", action="store_true", default=False)
362
  args = parser.parse_args()
363
 
364
+ log_files = get_log_files(bucket, args.max_num_files)
365
  ban_ip_list = json.load(open(args.ban_ip_file)) if args.ban_ip_file else None
366
 
367
  battles = clean_battle_data(
arena_elo/get_latest_data.sh DELETED
@@ -1,17 +0,0 @@
1
-
2
- # set LOGDIR to default if not set before
3
- if [ -z "$LOGDIR" ]; then
4
- export LOGDIR="./vision-arena-logs"
5
- fi
6
- mkdir -p results
7
-
8
-
9
- # # for battle data
10
- python -m elo_rating.clean_battle_data --model_infos_file "./model_infos.json" --mode conv_release
11
- battle_cutoff_date=`cat cut_off_date.txt` && rm cut_off_date.txt && echo "Battle data last updated on $battle_cutoff_date"
12
-
13
- mkdir -p ./results/latest
14
- mkdir -p ./results/$battle_cutoff_date && mv ./clean_battle_conv_$battle_cutoff_date.json ./results/$battle_cutoff_date/clean_battle_conv.json
15
- cp ./results/$battle_cutoff_date/clean_battle_conv.json ./results/latest/clean_battle_conv.json
16
-
17
- echo "Battle data last updated on $battle_cutoff_date" >> ./results/latest/latest_updated_date.txt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
arena_elo/requirements.txt DELETED
@@ -1,28 +0,0 @@
1
- -e git+https://github.com/WildVision-Bench/Arena-Elo.git@9dc2fa8543a2e9eda3d5bc01c2212fdfcdd4bfb5#egg=arena_elo
2
- click==8.1.7
3
- fire==0.5.0
4
- h11==0.14.0
5
- joblib==1.3.2
6
- Morfessor==2.0.6
7
- numpy==1.26.4
8
- packaging==23.2
9
- pandas==2.2.0
10
- pillow==10.2.0
11
- plotly==5.18.0
12
- polyglot==16.7.4
13
- prompt-toolkit==3.0.43
14
- pycld2==0.41
15
- PyICU==2.12
16
- python-dateutil==2.8.2
17
- pytz==2024.1
18
- scikit-learn==1.4.0
19
- scipy==1.12.0
20
- six==1.16.0
21
- tenacity==8.2.3
22
- termcolor==2.4.0
23
- threadpoolctl==3.2.0
24
- tqdm==4.66.2
25
- typing_extensions==4.9.0
26
- tzdata==2024.1
27
- uvicorn==0.27.1
28
- wcwidth==0.2.13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
arena_elo/results/20241227/clean_battle.json ADDED
@@ -0,0 +1,538 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "model_a": "FLUX-1",
4
+ "model_b": "ChatDiT",
5
+ "winner": "model_b",
6
+ "judge": "arena_user_127.0.0.1",
7
+ "anony": true,
8
+ "tstamp": 1735030427.6669
9
+ },
10
+ {
11
+ "model_a": "FLUX-1",
12
+ "model_b": "ChatDiT",
13
+ "winner": "model_a",
14
+ "judge": "arena_user_127.0.0.1",
15
+ "anony": true,
16
+ "tstamp": 1735030452.0238
17
+ },
18
+ {
19
+ "model_a": "ChatDiT",
20
+ "model_b": "FLUX-1",
21
+ "winner": "model_a",
22
+ "judge": "arena_user_127.0.0.1",
23
+ "anony": true,
24
+ "tstamp": 1735030464.2602
25
+ },
26
+ {
27
+ "model_a": "ChatDiT",
28
+ "model_b": "FLUX-1",
29
+ "winner": "model_a",
30
+ "judge": "arena_user_127.0.0.1",
31
+ "anony": true,
32
+ "tstamp": 1735030476.2328
33
+ },
34
+ {
35
+ "model_a": "FLUX-1",
36
+ "model_b": "ChatDiT",
37
+ "winner": "tie (bothbad)",
38
+ "judge": "arena_user_127.0.0.1",
39
+ "anony": true,
40
+ "tstamp": 1735030495.2955
41
+ },
42
+ {
43
+ "model_a": "ChatDiT",
44
+ "model_b": "FLUX-1",
45
+ "winner": "tie (bothbad)",
46
+ "judge": "arena_user_127.0.0.1",
47
+ "anony": true,
48
+ "tstamp": 1735030503.418
49
+ },
50
+ {
51
+ "model_a": "ChatDiT",
52
+ "model_b": "FLUX-1",
53
+ "winner": "model_a",
54
+ "judge": "arena_user_127.0.0.1",
55
+ "anony": true,
56
+ "tstamp": 1735030511.3926
57
+ },
58
+ {
59
+ "model_a": "ChatDiT",
60
+ "model_b": "FLUX-1",
61
+ "winner": "tie (bothbad)",
62
+ "judge": "arena_user_127.0.0.1",
63
+ "anony": true,
64
+ "tstamp": 1735034259.9984
65
+ },
66
+ {
67
+ "model_a": "ChatDiT",
68
+ "model_b": "FLUX-1",
69
+ "winner": "model_a",
70
+ "judge": "arena_user_127.0.0.1",
71
+ "anony": true,
72
+ "tstamp": 1735034275.6871
73
+ },
74
+ {
75
+ "model_a": "ChatDiT",
76
+ "model_b": "FLUX-1",
77
+ "winner": "model_a",
78
+ "judge": "arena_user_127.0.0.1",
79
+ "anony": true,
80
+ "tstamp": 1735034284.7354
81
+ },
82
+ {
83
+ "model_a": "FLUX-1",
84
+ "model_b": "ChatDiT",
85
+ "winner": "model_a",
86
+ "judge": "arena_user_127.0.0.1",
87
+ "anony": true,
88
+ "tstamp": 1735034293.468
89
+ },
90
+ {
91
+ "model_a": "ChatDiT",
92
+ "model_b": "FLUX-1",
93
+ "winner": "model_b",
94
+ "judge": "arena_user_127.0.0.1",
95
+ "anony": true,
96
+ "tstamp": 1735034303.2042
97
+ },
98
+ {
99
+ "model_a": "ChatDiT",
100
+ "model_b": "FLUX-1",
101
+ "winner": "model_a",
102
+ "judge": "arena_user_127.0.0.1",
103
+ "anony": true,
104
+ "tstamp": 1735034314.1941
105
+ },
106
+ {
107
+ "model_a": "FLUX-1",
108
+ "model_b": "ChatDiT",
109
+ "winner": "model_a",
110
+ "judge": "arena_user_127.0.0.1",
111
+ "anony": true,
112
+ "tstamp": 1735034326.5092
113
+ },
114
+ {
115
+ "model_a": "FLUX-1",
116
+ "model_b": "ChatDiT",
117
+ "winner": "model_b",
118
+ "judge": "arena_user_127.0.0.1",
119
+ "anony": true,
120
+ "tstamp": 1735034331.6963
121
+ },
122
+ {
123
+ "model_a": "FLUX-1",
124
+ "model_b": "ChatDiT",
125
+ "winner": "tie (bothbad)",
126
+ "judge": "arena_user_127.0.0.1",
127
+ "anony": true,
128
+ "tstamp": 1735034336.5346
129
+ },
130
+ {
131
+ "model_a": "ChatDiT",
132
+ "model_b": "FLUX-1",
133
+ "winner": "model_b",
134
+ "judge": "arena_user_127.0.0.1",
135
+ "anony": true,
136
+ "tstamp": 1735034351.9521
137
+ },
138
+ {
139
+ "model_a": "FLUX-1",
140
+ "model_b": "ChatDiT",
141
+ "winner": "model_b",
142
+ "judge": "arena_user_127.0.0.1",
143
+ "anony": true,
144
+ "tstamp": 1735034366.1775
145
+ },
146
+ {
147
+ "model_a": "FLUX-1",
148
+ "model_b": "ChatDiT",
149
+ "winner": "model_a",
150
+ "judge": "arena_user_127.0.0.1",
151
+ "anony": true,
152
+ "tstamp": 1735034380.5877
153
+ },
154
+ {
155
+ "model_a": "ChatDiT",
156
+ "model_b": "FLUX-1",
157
+ "winner": "model_b",
158
+ "judge": "arena_user_127.0.0.1",
159
+ "anony": true,
160
+ "tstamp": 1735034384.3087
161
+ },
162
+ {
163
+ "model_a": "FLUX-1",
164
+ "model_b": "ChatDiT",
165
+ "winner": "model_a",
166
+ "judge": "arena_user_127.0.0.1",
167
+ "anony": true,
168
+ "tstamp": 1735034389.1583
169
+ },
170
+ {
171
+ "model_a": "FLUX-1",
172
+ "model_b": "ChatDiT",
173
+ "winner": "model_b",
174
+ "judge": "arena_user_127.0.0.1",
175
+ "anony": true,
176
+ "tstamp": 1735034405.9359
177
+ },
178
+ {
179
+ "model_a": "FLUX-1",
180
+ "model_b": "ChatDiT",
181
+ "winner": "model_b",
182
+ "judge": "arena_user_127.0.0.1",
183
+ "anony": true,
184
+ "tstamp": 1735034412.3533
185
+ },
186
+ {
187
+ "model_a": "FLUX-1",
188
+ "model_b": "ChatDiT",
189
+ "winner": "model_a",
190
+ "judge": "arena_user_127.0.0.1",
191
+ "anony": true,
192
+ "tstamp": 1735034419.0118
193
+ },
194
+ {
195
+ "model_a": "FLUX-1",
196
+ "model_b": "ChatDiT",
197
+ "winner": "model_b",
198
+ "judge": "arena_user_127.0.0.1",
199
+ "anony": true,
200
+ "tstamp": 1735034425.6972
201
+ },
202
+ {
203
+ "model_a": "FLUX-1",
204
+ "model_b": "ChatDiT",
205
+ "winner": "model_b",
206
+ "judge": "arena_user_127.0.0.1",
207
+ "anony": true,
208
+ "tstamp": 1735034432.5891
209
+ },
210
+ {
211
+ "model_a": "ChatDiT",
212
+ "model_b": "FLUX-1",
213
+ "winner": "model_a",
214
+ "judge": "arena_user_127.0.0.1",
215
+ "anony": true,
216
+ "tstamp": 1735092762.0
217
+ },
218
+ {
219
+ "model_a": "FLUX-1",
220
+ "model_b": "ChatDiT",
221
+ "winner": "tie (bothbad)",
222
+ "judge": "arena_user_127.0.0.1",
223
+ "anony": true,
224
+ "tstamp": 1735092774.618
225
+ },
226
+ {
227
+ "model_a": "FLUX-1",
228
+ "model_b": "ChatDiT",
229
+ "winner": "model_a",
230
+ "judge": "arena_user_127.0.0.1",
231
+ "anony": true,
232
+ "tstamp": 1735092797.2067
233
+ },
234
+ {
235
+ "model_a": "FLUX-1",
236
+ "model_b": "ChatDiT",
237
+ "winner": "model_b",
238
+ "judge": "arena_user_127.0.0.1",
239
+ "anony": true,
240
+ "tstamp": 1735092804.6699
241
+ },
242
+ {
243
+ "model_a": "FLUX-1",
244
+ "model_b": "ChatDiT",
245
+ "winner": "model_a",
246
+ "judge": "arena_user_127.0.0.1",
247
+ "anony": true,
248
+ "tstamp": 1735092810.2635
249
+ },
250
+ {
251
+ "model_a": "FLUX-1",
252
+ "model_b": "ChatDiT",
253
+ "winner": "model_b",
254
+ "judge": "arena_user_127.0.0.1",
255
+ "anony": true,
256
+ "tstamp": 1735093113.5724
257
+ },
258
+ {
259
+ "model_a": "ChatDiT",
260
+ "model_b": "FLUX-1",
261
+ "winner": "tie (bothbad)",
262
+ "judge": "arena_user_127.0.0.1",
263
+ "anony": true,
264
+ "tstamp": 1735093133.2436
265
+ },
266
+ {
267
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
268
+ "model_b": "GPT-4o + OmniGen",
269
+ "winner": "model_a",
270
+ "judge": "arena_user_127.0.0.1",
271
+ "anony": true,
272
+ "tstamp": 1735187628.4881
273
+ },
274
+ {
275
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
276
+ "model_b": "GPT-4o + PixArt-Sigma",
277
+ "winner": "model_b",
278
+ "judge": "arena_user_127.0.0.1",
279
+ "anony": true,
280
+ "tstamp": 1735187649.4872
281
+ },
282
+ {
283
+ "model_a": "GPT-4o + Emu2",
284
+ "model_b": "ChatDiT",
285
+ "winner": "model_a",
286
+ "judge": "arena_user_127.0.0.1",
287
+ "anony": true,
288
+ "tstamp": 1735197562.2637
289
+ },
290
+ {
291
+ "model_a": "GPT-4o + FLUX.1 [dev]",
292
+ "model_b": "GPT-4o + PixArt-Sigma",
293
+ "winner": "model_a",
294
+ "judge": "arena_user_127.0.0.1",
295
+ "anony": true,
296
+ "tstamp": 1735197586.8438
297
+ },
298
+ {
299
+ "model_a": "ChatDiT",
300
+ "model_b": "GPT-4o + FLUX.1 [dev]",
301
+ "winner": "model_a",
302
+ "judge": "arena_user_127.0.0.1",
303
+ "anony": false,
304
+ "tstamp": 1735201758.7145
305
+ },
306
+ {
307
+ "model_a": "GPT-4o + DALLE-3",
308
+ "model_b": "GPT-4o + PixArt-Sigma",
309
+ "winner": "model_b",
310
+ "judge": "arena_user_127.0.0.1",
311
+ "anony": false,
312
+ "tstamp": 1735202083.631
313
+ },
314
+ {
315
+ "model_a": "GPT-4o + DALLE-3",
316
+ "model_b": "GPT-4o + PixArt-Sigma",
317
+ "winner": "model_a",
318
+ "judge": "arena_user_127.0.0.1",
319
+ "anony": false,
320
+ "tstamp": 1735202099.4377
321
+ },
322
+ {
323
+ "model_a": "GPT-4o + OmniGen",
324
+ "model_b": "ChatDiT",
325
+ "winner": "model_b",
326
+ "judge": "arena_user_127.0.0.1",
327
+ "anony": true,
328
+ "tstamp": 1735202132.8592
329
+ },
330
+ {
331
+ "model_a": "GPT-4o + DALLE-3",
332
+ "model_b": "GPT-4o + PixArt-Sigma",
333
+ "winner": "model_b",
334
+ "judge": "arena_user_127.0.0.1",
335
+ "anony": false,
336
+ "tstamp": 1735202545.8694
337
+ },
338
+ {
339
+ "model_a": "GPT-4o + DALLE-3",
340
+ "model_b": "GPT-4o + PixArt-Sigma",
341
+ "winner": "model_a",
342
+ "judge": "arena_user_127.0.0.1",
343
+ "anony": false,
344
+ "tstamp": 1735202565.5723
345
+ },
346
+ {
347
+ "model_a": "GPT-4o + DALLE-3",
348
+ "model_b": "GPT-4o + PixArt-Sigma",
349
+ "winner": "tie (bothbad)",
350
+ "judge": "arena_user_127.0.0.1",
351
+ "anony": false,
352
+ "tstamp": 1735202573.0118
353
+ },
354
+ {
355
+ "model_a": "GPT-4o + DALLE-3",
356
+ "model_b": "GPT-4o + PixArt-Sigma",
357
+ "winner": "tie (bothbad)",
358
+ "judge": "arena_user_127.0.0.1",
359
+ "anony": false,
360
+ "tstamp": 1735203523.809
361
+ },
362
+ {
363
+ "model_a": "GPT-4o + OmniGen",
364
+ "model_b": "GPT-4o + DALLE-3",
365
+ "winner": "model_b",
366
+ "judge": "arena_user_127.0.0.1",
367
+ "anony": true,
368
+ "tstamp": 1735205600.7414
369
+ },
370
+ {
371
+ "model_a": "ChatDiT",
372
+ "model_b": "GPT-4o + DALLE-3",
373
+ "winner": "model_a",
374
+ "judge": "arena_user_127.0.0.1",
375
+ "anony": true,
376
+ "tstamp": 1735207454.8251
377
+ },
378
+ {
379
+ "model_a": "GPT-4o + OmniGen",
380
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
381
+ "winner": "model_b",
382
+ "judge": "arena_user_127.0.0.1",
383
+ "anony": true,
384
+ "tstamp": 1735207466.0131
385
+ },
386
+ {
387
+ "model_a": "GPT-4o + DALLE-3",
388
+ "model_b": "GPT-4o + Emu2",
389
+ "winner": "model_b",
390
+ "judge": "arena_user_127.0.0.1",
391
+ "anony": true,
392
+ "tstamp": 1735215923.1589
393
+ },
394
+ {
395
+ "model_a": "GPT-4o + PixArt-Sigma",
396
+ "model_b": "GPT-4o + DALLE-3",
397
+ "winner": "model_a",
398
+ "judge": "arena_user_127.0.0.1",
399
+ "anony": true,
400
+ "tstamp": 1735215935.7597
401
+ },
402
+ {
403
+ "model_a": "GPT-4o + OmniGen",
404
+ "model_b": "GPT-4o + PixArt-Sigma",
405
+ "winner": "tie (bothbad)",
406
+ "judge": "arena_user_127.0.0.1",
407
+ "anony": true,
408
+ "tstamp": 1735215942.7093
409
+ },
410
+ {
411
+ "model_a": "GPT-4o + PixArt-Sigma",
412
+ "model_b": "GPT-4o + OmniGen",
413
+ "winner": "model_a",
414
+ "judge": "arena_user_127.0.0.1",
415
+ "anony": true,
416
+ "tstamp": 1735215949.7965
417
+ },
418
+ {
419
+ "model_a": "GPT-4o + DALLE-3",
420
+ "model_b": "ChatDiT",
421
+ "winner": "model_b",
422
+ "judge": "arena_user_127.0.0.1",
423
+ "anony": true,
424
+ "tstamp": 1735215962.6898
425
+ },
426
+ {
427
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
428
+ "model_b": "GPT-4o + DALLE-3",
429
+ "winner": "tie (bothbad)",
430
+ "judge": "arena_user_127.0.0.1",
431
+ "anony": true,
432
+ "tstamp": 1735215968.9052
433
+ },
434
+ {
435
+ "model_a": "GPT-4o + FLUX.1 [dev]",
436
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
437
+ "winner": "tie (bothbad)",
438
+ "judge": "arena_user_127.0.0.1",
439
+ "anony": true,
440
+ "tstamp": 1735215976.5079
441
+ },
442
+ {
443
+ "model_a": "GPT-4o + Emu2",
444
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
445
+ "winner": "model_b",
446
+ "judge": "arena_user_127.0.0.1",
447
+ "anony": true,
448
+ "tstamp": 1735215982.9709
449
+ },
450
+ {
451
+ "model_a": "ChatDiT",
452
+ "model_b": "GPT-4o + PixArt-Sigma",
453
+ "winner": "model_a",
454
+ "judge": "arena_user_127.0.0.1",
455
+ "anony": true,
456
+ "tstamp": 1735215993.2305
457
+ },
458
+ {
459
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
460
+ "model_b": "GPT-4o + FLUX.1 [dev]",
461
+ "winner": "tie (bothbad)",
462
+ "judge": "arena_user_127.0.0.1",
463
+ "anony": true,
464
+ "tstamp": 1735215999.8713
465
+ },
466
+ {
467
+ "model_a": "GPT-4o + PixArt-Sigma",
468
+ "model_b": "GPT-4o + FLUX.1 [dev]",
469
+ "winner": "model_b",
470
+ "judge": "arena_user_127.0.0.1",
471
+ "anony": true,
472
+ "tstamp": 1735216012.8216
473
+ },
474
+ {
475
+ "model_a": "ChatDiT",
476
+ "model_b": "GPT-4o + PixArt-Sigma",
477
+ "winner": "model_a",
478
+ "judge": "arena_user_127.0.0.1",
479
+ "anony": true,
480
+ "tstamp": 1735216021.653
481
+ },
482
+ {
483
+ "model_a": "GPT-4o + PixArt-Sigma",
484
+ "model_b": "GPT-4o + OmniGen",
485
+ "winner": "model_b",
486
+ "judge": "arena_user_127.0.0.1",
487
+ "anony": true,
488
+ "tstamp": 1735286354.5764
489
+ },
490
+ {
491
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
492
+ "model_b": "ChatDiT",
493
+ "winner": "tie (bothbad)",
494
+ "judge": "arena_user_127.0.0.1",
495
+ "anony": true,
496
+ "tstamp": 1735286365.2329
497
+ },
498
+ {
499
+ "model_a": "GPT-4o + Emu2",
500
+ "model_b": "ChatDiT",
501
+ "winner": "model_a",
502
+ "judge": "arena_user_127.0.0.1",
503
+ "anony": true,
504
+ "tstamp": 1735286374.6751
505
+ },
506
+ {
507
+ "model_a": "GPT-4o + FLUX.1 [dev]",
508
+ "model_b": "GPT-4o + Emu2",
509
+ "winner": "model_a",
510
+ "judge": "arena_user_127.0.0.1",
511
+ "anony": true,
512
+ "tstamp": 1735286382.1211
513
+ },
514
+ {
515
+ "model_a": "GPT-4o + PixArt-Sigma",
516
+ "model_b": "GPT-4o + OmniGen",
517
+ "winner": "model_a",
518
+ "judge": "arena_user_127.0.0.1",
519
+ "anony": true,
520
+ "tstamp": 1735288723.7052
521
+ },
522
+ {
523
+ "model_a": "GPT-4o + FLUX.1 [dev]",
524
+ "model_b": "GPT-4o + DALLE-3",
525
+ "winner": "model_a",
526
+ "judge": "arena_user_127.0.0.1",
527
+ "anony": true,
528
+ "tstamp": 1735288729.3576
529
+ },
530
+ {
531
+ "model_a": "GPT-4o + PixArt-Sigma",
532
+ "model_b": "GPT-4o + OmniGen",
533
+ "winner": "model_a",
534
+ "judge": "arena_user_127.0.0.1",
535
+ "anony": true,
536
+ "tstamp": 1735288749.1708
537
+ }
538
+ ]
arena_elo/results/20241227/elo_results.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e5fdd3be0f9c41a3045bde26ae76150891a7cc90ed96acdc196cca858edcc42
3
+ size 59935
arena_elo/results/20241227/leaderboard.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ key,Model,Arena Elo rating (anony),Arena Elo rating (full),license,creator,link
2
+ GPT-4o + FLUX.1 [dev],GPT-4o + FLUX.1 [dev],1268.53841915675,1171.0871848862223,FLUX.1 [dev] Non-Commercial License,Black Forest Labs,https://huggingface.co/black-forest-labs/FLUX.1-dev
3
+ GPT-4o + Emu2,GPT-4o + Emu2,1141.6823347451807,1146.1606441964816,Apache License 2.0,BAAI,https://huggingface.co/BAAI/Emu2
4
+ GPT-4o + Stable Diffusion 3 Medium,GPT-4o + Stable Diffusion 3 Medium,1098.1990787060013,1078.9864643891415,Stability AI Community License,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-3-medium
5
+ ChatDiT,ChatDiT,1087.8538878970403,1145.2506716658772,MIT License,Tongyi Lab,https://github.com/ali-vilab/ChatDiT
6
+ FLUX-1,FLUX-1,1034.375990953325,1091.140144426346,N/A,N/A,N/A
7
+ GPT-4o + PixArt-Sigma,GPT-4o + PixArt-Sigma,902.6068236830082,869.8479242088567,CreativeML Open RAIL++-M License,Huawei Noah's Ark Lab,https://huggingface.co/PixArt-alpha/PixArt-Sigma-XL-2-1024-MS
8
+ GPT-4o + DALLE-3,GPT-4o + DALLE-3,788.4718598539399,832.3958321181424,OpenAI Terms of Use,OpenAI,https://openai.com/index/dall-e-3/
9
+ GPT-4o + OmniGen,GPT-4o + OmniGen,678.2716050047543,665.1311341089321,MIT License,BAAI,https://huggingface.co/spaces/Shitao/OmniGen
arena_elo/results/20250106/clean_battle.json ADDED
@@ -0,0 +1,610 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "model_a": "FLUX-1",
4
+ "model_b": "ChatDiT",
5
+ "winner": "model_b",
6
+ "judge": "arena_user_127.0.0.1",
7
+ "anony": true,
8
+ "tstamp": 1735030427.6669
9
+ },
10
+ {
11
+ "model_a": "FLUX-1",
12
+ "model_b": "ChatDiT",
13
+ "winner": "model_a",
14
+ "judge": "arena_user_127.0.0.1",
15
+ "anony": true,
16
+ "tstamp": 1735030452.0238
17
+ },
18
+ {
19
+ "model_a": "ChatDiT",
20
+ "model_b": "FLUX-1",
21
+ "winner": "model_a",
22
+ "judge": "arena_user_127.0.0.1",
23
+ "anony": true,
24
+ "tstamp": 1735030464.2602
25
+ },
26
+ {
27
+ "model_a": "ChatDiT",
28
+ "model_b": "FLUX-1",
29
+ "winner": "model_a",
30
+ "judge": "arena_user_127.0.0.1",
31
+ "anony": true,
32
+ "tstamp": 1735030476.2328
33
+ },
34
+ {
35
+ "model_a": "FLUX-1",
36
+ "model_b": "ChatDiT",
37
+ "winner": "tie (bothbad)",
38
+ "judge": "arena_user_127.0.0.1",
39
+ "anony": true,
40
+ "tstamp": 1735030495.2955
41
+ },
42
+ {
43
+ "model_a": "ChatDiT",
44
+ "model_b": "FLUX-1",
45
+ "winner": "tie (bothbad)",
46
+ "judge": "arena_user_127.0.0.1",
47
+ "anony": true,
48
+ "tstamp": 1735030503.418
49
+ },
50
+ {
51
+ "model_a": "ChatDiT",
52
+ "model_b": "FLUX-1",
53
+ "winner": "model_a",
54
+ "judge": "arena_user_127.0.0.1",
55
+ "anony": true,
56
+ "tstamp": 1735030511.3926
57
+ },
58
+ {
59
+ "model_a": "ChatDiT",
60
+ "model_b": "FLUX-1",
61
+ "winner": "tie (bothbad)",
62
+ "judge": "arena_user_127.0.0.1",
63
+ "anony": true,
64
+ "tstamp": 1735034259.9984
65
+ },
66
+ {
67
+ "model_a": "ChatDiT",
68
+ "model_b": "FLUX-1",
69
+ "winner": "model_a",
70
+ "judge": "arena_user_127.0.0.1",
71
+ "anony": true,
72
+ "tstamp": 1735034275.6871
73
+ },
74
+ {
75
+ "model_a": "ChatDiT",
76
+ "model_b": "FLUX-1",
77
+ "winner": "model_a",
78
+ "judge": "arena_user_127.0.0.1",
79
+ "anony": true,
80
+ "tstamp": 1735034284.7354
81
+ },
82
+ {
83
+ "model_a": "FLUX-1",
84
+ "model_b": "ChatDiT",
85
+ "winner": "model_a",
86
+ "judge": "arena_user_127.0.0.1",
87
+ "anony": true,
88
+ "tstamp": 1735034293.468
89
+ },
90
+ {
91
+ "model_a": "ChatDiT",
92
+ "model_b": "FLUX-1",
93
+ "winner": "model_b",
94
+ "judge": "arena_user_127.0.0.1",
95
+ "anony": true,
96
+ "tstamp": 1735034303.2042
97
+ },
98
+ {
99
+ "model_a": "ChatDiT",
100
+ "model_b": "FLUX-1",
101
+ "winner": "model_a",
102
+ "judge": "arena_user_127.0.0.1",
103
+ "anony": true,
104
+ "tstamp": 1735034314.1941
105
+ },
106
+ {
107
+ "model_a": "FLUX-1",
108
+ "model_b": "ChatDiT",
109
+ "winner": "model_a",
110
+ "judge": "arena_user_127.0.0.1",
111
+ "anony": true,
112
+ "tstamp": 1735034326.5092
113
+ },
114
+ {
115
+ "model_a": "FLUX-1",
116
+ "model_b": "ChatDiT",
117
+ "winner": "model_b",
118
+ "judge": "arena_user_127.0.0.1",
119
+ "anony": true,
120
+ "tstamp": 1735034331.6963
121
+ },
122
+ {
123
+ "model_a": "FLUX-1",
124
+ "model_b": "ChatDiT",
125
+ "winner": "tie (bothbad)",
126
+ "judge": "arena_user_127.0.0.1",
127
+ "anony": true,
128
+ "tstamp": 1735034336.5346
129
+ },
130
+ {
131
+ "model_a": "ChatDiT",
132
+ "model_b": "FLUX-1",
133
+ "winner": "model_b",
134
+ "judge": "arena_user_127.0.0.1",
135
+ "anony": true,
136
+ "tstamp": 1735034351.9521
137
+ },
138
+ {
139
+ "model_a": "FLUX-1",
140
+ "model_b": "ChatDiT",
141
+ "winner": "model_b",
142
+ "judge": "arena_user_127.0.0.1",
143
+ "anony": true,
144
+ "tstamp": 1735034366.1775
145
+ },
146
+ {
147
+ "model_a": "FLUX-1",
148
+ "model_b": "ChatDiT",
149
+ "winner": "model_a",
150
+ "judge": "arena_user_127.0.0.1",
151
+ "anony": true,
152
+ "tstamp": 1735034380.5877
153
+ },
154
+ {
155
+ "model_a": "ChatDiT",
156
+ "model_b": "FLUX-1",
157
+ "winner": "model_b",
158
+ "judge": "arena_user_127.0.0.1",
159
+ "anony": true,
160
+ "tstamp": 1735034384.3087
161
+ },
162
+ {
163
+ "model_a": "FLUX-1",
164
+ "model_b": "ChatDiT",
165
+ "winner": "model_a",
166
+ "judge": "arena_user_127.0.0.1",
167
+ "anony": true,
168
+ "tstamp": 1735034389.1583
169
+ },
170
+ {
171
+ "model_a": "FLUX-1",
172
+ "model_b": "ChatDiT",
173
+ "winner": "model_b",
174
+ "judge": "arena_user_127.0.0.1",
175
+ "anony": true,
176
+ "tstamp": 1735034405.9359
177
+ },
178
+ {
179
+ "model_a": "FLUX-1",
180
+ "model_b": "ChatDiT",
181
+ "winner": "model_b",
182
+ "judge": "arena_user_127.0.0.1",
183
+ "anony": true,
184
+ "tstamp": 1735034412.3533
185
+ },
186
+ {
187
+ "model_a": "FLUX-1",
188
+ "model_b": "ChatDiT",
189
+ "winner": "model_a",
190
+ "judge": "arena_user_127.0.0.1",
191
+ "anony": true,
192
+ "tstamp": 1735034419.0118
193
+ },
194
+ {
195
+ "model_a": "FLUX-1",
196
+ "model_b": "ChatDiT",
197
+ "winner": "model_b",
198
+ "judge": "arena_user_127.0.0.1",
199
+ "anony": true,
200
+ "tstamp": 1735034425.6972
201
+ },
202
+ {
203
+ "model_a": "FLUX-1",
204
+ "model_b": "ChatDiT",
205
+ "winner": "model_b",
206
+ "judge": "arena_user_127.0.0.1",
207
+ "anony": true,
208
+ "tstamp": 1735034432.5891
209
+ },
210
+ {
211
+ "model_a": "ChatDiT",
212
+ "model_b": "FLUX-1",
213
+ "winner": "model_a",
214
+ "judge": "arena_user_127.0.0.1",
215
+ "anony": true,
216
+ "tstamp": 1735092762.0
217
+ },
218
+ {
219
+ "model_a": "FLUX-1",
220
+ "model_b": "ChatDiT",
221
+ "winner": "tie (bothbad)",
222
+ "judge": "arena_user_127.0.0.1",
223
+ "anony": true,
224
+ "tstamp": 1735092774.618
225
+ },
226
+ {
227
+ "model_a": "FLUX-1",
228
+ "model_b": "ChatDiT",
229
+ "winner": "model_a",
230
+ "judge": "arena_user_127.0.0.1",
231
+ "anony": true,
232
+ "tstamp": 1735092797.2067
233
+ },
234
+ {
235
+ "model_a": "FLUX-1",
236
+ "model_b": "ChatDiT",
237
+ "winner": "model_b",
238
+ "judge": "arena_user_127.0.0.1",
239
+ "anony": true,
240
+ "tstamp": 1735092804.6699
241
+ },
242
+ {
243
+ "model_a": "FLUX-1",
244
+ "model_b": "ChatDiT",
245
+ "winner": "model_a",
246
+ "judge": "arena_user_127.0.0.1",
247
+ "anony": true,
248
+ "tstamp": 1735092810.2635
249
+ },
250
+ {
251
+ "model_a": "FLUX-1",
252
+ "model_b": "ChatDiT",
253
+ "winner": "model_b",
254
+ "judge": "arena_user_127.0.0.1",
255
+ "anony": true,
256
+ "tstamp": 1735093113.5724
257
+ },
258
+ {
259
+ "model_a": "ChatDiT",
260
+ "model_b": "FLUX-1",
261
+ "winner": "tie (bothbad)",
262
+ "judge": "arena_user_127.0.0.1",
263
+ "anony": true,
264
+ "tstamp": 1735093133.2436
265
+ },
266
+ {
267
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
268
+ "model_b": "GPT-4o + OmniGen",
269
+ "winner": "model_a",
270
+ "judge": "arena_user_127.0.0.1",
271
+ "anony": true,
272
+ "tstamp": 1735187628.4881
273
+ },
274
+ {
275
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
276
+ "model_b": "GPT-4o + PixArt-Sigma",
277
+ "winner": "model_b",
278
+ "judge": "arena_user_127.0.0.1",
279
+ "anony": true,
280
+ "tstamp": 1735187649.4872
281
+ },
282
+ {
283
+ "model_a": "GPT-4o + Emu2",
284
+ "model_b": "ChatDiT",
285
+ "winner": "model_a",
286
+ "judge": "arena_user_127.0.0.1",
287
+ "anony": true,
288
+ "tstamp": 1735197562.2637
289
+ },
290
+ {
291
+ "model_a": "GPT-4o + FLUX.1 [dev]",
292
+ "model_b": "GPT-4o + PixArt-Sigma",
293
+ "winner": "model_a",
294
+ "judge": "arena_user_127.0.0.1",
295
+ "anony": true,
296
+ "tstamp": 1735197586.8438
297
+ },
298
+ {
299
+ "model_a": "ChatDiT",
300
+ "model_b": "GPT-4o + FLUX.1 [dev]",
301
+ "winner": "model_a",
302
+ "judge": "arena_user_127.0.0.1",
303
+ "anony": false,
304
+ "tstamp": 1735201758.7145
305
+ },
306
+ {
307
+ "model_a": "GPT-4o + DALLE-3",
308
+ "model_b": "GPT-4o + PixArt-Sigma",
309
+ "winner": "model_b",
310
+ "judge": "arena_user_127.0.0.1",
311
+ "anony": false,
312
+ "tstamp": 1735202083.631
313
+ },
314
+ {
315
+ "model_a": "GPT-4o + DALLE-3",
316
+ "model_b": "GPT-4o + PixArt-Sigma",
317
+ "winner": "model_a",
318
+ "judge": "arena_user_127.0.0.1",
319
+ "anony": false,
320
+ "tstamp": 1735202099.4377
321
+ },
322
+ {
323
+ "model_a": "GPT-4o + OmniGen",
324
+ "model_b": "ChatDiT",
325
+ "winner": "model_b",
326
+ "judge": "arena_user_127.0.0.1",
327
+ "anony": true,
328
+ "tstamp": 1735202132.8592
329
+ },
330
+ {
331
+ "model_a": "GPT-4o + DALLE-3",
332
+ "model_b": "GPT-4o + PixArt-Sigma",
333
+ "winner": "model_b",
334
+ "judge": "arena_user_127.0.0.1",
335
+ "anony": false,
336
+ "tstamp": 1735202545.8694
337
+ },
338
+ {
339
+ "model_a": "GPT-4o + DALLE-3",
340
+ "model_b": "GPT-4o + PixArt-Sigma",
341
+ "winner": "model_a",
342
+ "judge": "arena_user_127.0.0.1",
343
+ "anony": false,
344
+ "tstamp": 1735202565.5723
345
+ },
346
+ {
347
+ "model_a": "GPT-4o + DALLE-3",
348
+ "model_b": "GPT-4o + PixArt-Sigma",
349
+ "winner": "tie (bothbad)",
350
+ "judge": "arena_user_127.0.0.1",
351
+ "anony": false,
352
+ "tstamp": 1735202573.0118
353
+ },
354
+ {
355
+ "model_a": "GPT-4o + DALLE-3",
356
+ "model_b": "GPT-4o + PixArt-Sigma",
357
+ "winner": "tie (bothbad)",
358
+ "judge": "arena_user_127.0.0.1",
359
+ "anony": false,
360
+ "tstamp": 1735203523.809
361
+ },
362
+ {
363
+ "model_a": "GPT-4o + OmniGen",
364
+ "model_b": "GPT-4o + DALLE-3",
365
+ "winner": "model_b",
366
+ "judge": "arena_user_127.0.0.1",
367
+ "anony": true,
368
+ "tstamp": 1735205600.7414
369
+ },
370
+ {
371
+ "model_a": "ChatDiT",
372
+ "model_b": "GPT-4o + DALLE-3",
373
+ "winner": "model_a",
374
+ "judge": "arena_user_127.0.0.1",
375
+ "anony": true,
376
+ "tstamp": 1735207454.8251
377
+ },
378
+ {
379
+ "model_a": "GPT-4o + OmniGen",
380
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
381
+ "winner": "model_b",
382
+ "judge": "arena_user_127.0.0.1",
383
+ "anony": true,
384
+ "tstamp": 1735207466.0131
385
+ },
386
+ {
387
+ "model_a": "GPT-4o + DALLE-3",
388
+ "model_b": "GPT-4o + Emu2",
389
+ "winner": "model_b",
390
+ "judge": "arena_user_127.0.0.1",
391
+ "anony": true,
392
+ "tstamp": 1735215923.1589
393
+ },
394
+ {
395
+ "model_a": "GPT-4o + PixArt-Sigma",
396
+ "model_b": "GPT-4o + DALLE-3",
397
+ "winner": "model_a",
398
+ "judge": "arena_user_127.0.0.1",
399
+ "anony": true,
400
+ "tstamp": 1735215935.7597
401
+ },
402
+ {
403
+ "model_a": "GPT-4o + OmniGen",
404
+ "model_b": "GPT-4o + PixArt-Sigma",
405
+ "winner": "tie (bothbad)",
406
+ "judge": "arena_user_127.0.0.1",
407
+ "anony": true,
408
+ "tstamp": 1735215942.7093
409
+ },
410
+ {
411
+ "model_a": "GPT-4o + PixArt-Sigma",
412
+ "model_b": "GPT-4o + OmniGen",
413
+ "winner": "model_a",
414
+ "judge": "arena_user_127.0.0.1",
415
+ "anony": true,
416
+ "tstamp": 1735215949.7965
417
+ },
418
+ {
419
+ "model_a": "GPT-4o + DALLE-3",
420
+ "model_b": "ChatDiT",
421
+ "winner": "model_b",
422
+ "judge": "arena_user_127.0.0.1",
423
+ "anony": true,
424
+ "tstamp": 1735215962.6898
425
+ },
426
+ {
427
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
428
+ "model_b": "GPT-4o + DALLE-3",
429
+ "winner": "tie (bothbad)",
430
+ "judge": "arena_user_127.0.0.1",
431
+ "anony": true,
432
+ "tstamp": 1735215968.9052
433
+ },
434
+ {
435
+ "model_a": "GPT-4o + FLUX.1 [dev]",
436
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
437
+ "winner": "tie (bothbad)",
438
+ "judge": "arena_user_127.0.0.1",
439
+ "anony": true,
440
+ "tstamp": 1735215976.5079
441
+ },
442
+ {
443
+ "model_a": "GPT-4o + Emu2",
444
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
445
+ "winner": "model_b",
446
+ "judge": "arena_user_127.0.0.1",
447
+ "anony": true,
448
+ "tstamp": 1735215982.9709
449
+ },
450
+ {
451
+ "model_a": "ChatDiT",
452
+ "model_b": "GPT-4o + PixArt-Sigma",
453
+ "winner": "model_a",
454
+ "judge": "arena_user_127.0.0.1",
455
+ "anony": true,
456
+ "tstamp": 1735215993.2305
457
+ },
458
+ {
459
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
460
+ "model_b": "GPT-4o + FLUX.1 [dev]",
461
+ "winner": "tie (bothbad)",
462
+ "judge": "arena_user_127.0.0.1",
463
+ "anony": true,
464
+ "tstamp": 1735215999.8713
465
+ },
466
+ {
467
+ "model_a": "GPT-4o + PixArt-Sigma",
468
+ "model_b": "GPT-4o + FLUX.1 [dev]",
469
+ "winner": "model_b",
470
+ "judge": "arena_user_127.0.0.1",
471
+ "anony": true,
472
+ "tstamp": 1735216012.8216
473
+ },
474
+ {
475
+ "model_a": "ChatDiT",
476
+ "model_b": "GPT-4o + PixArt-Sigma",
477
+ "winner": "model_a",
478
+ "judge": "arena_user_127.0.0.1",
479
+ "anony": true,
480
+ "tstamp": 1735216021.653
481
+ },
482
+ {
483
+ "model_a": "GPT-4o + PixArt-Sigma",
484
+ "model_b": "GPT-4o + OmniGen",
485
+ "winner": "model_b",
486
+ "judge": "arena_user_127.0.0.1",
487
+ "anony": true,
488
+ "tstamp": 1735286354.5764
489
+ },
490
+ {
491
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
492
+ "model_b": "ChatDiT",
493
+ "winner": "tie (bothbad)",
494
+ "judge": "arena_user_127.0.0.1",
495
+ "anony": true,
496
+ "tstamp": 1735286365.2329
497
+ },
498
+ {
499
+ "model_a": "GPT-4o + Emu2",
500
+ "model_b": "ChatDiT",
501
+ "winner": "model_a",
502
+ "judge": "arena_user_127.0.0.1",
503
+ "anony": true,
504
+ "tstamp": 1735286374.6751
505
+ },
506
+ {
507
+ "model_a": "GPT-4o + FLUX.1 [dev]",
508
+ "model_b": "GPT-4o + Emu2",
509
+ "winner": "model_a",
510
+ "judge": "arena_user_127.0.0.1",
511
+ "anony": true,
512
+ "tstamp": 1735286382.1211
513
+ },
514
+ {
515
+ "model_a": "GPT-4o + PixArt-Sigma",
516
+ "model_b": "GPT-4o + OmniGen",
517
+ "winner": "model_a",
518
+ "judge": "arena_user_127.0.0.1",
519
+ "anony": true,
520
+ "tstamp": 1735288723.7052
521
+ },
522
+ {
523
+ "model_a": "GPT-4o + FLUX.1 [dev]",
524
+ "model_b": "GPT-4o + DALLE-3",
525
+ "winner": "model_a",
526
+ "judge": "arena_user_127.0.0.1",
527
+ "anony": true,
528
+ "tstamp": 1735288729.3576
529
+ },
530
+ {
531
+ "model_a": "GPT-4o + PixArt-Sigma",
532
+ "model_b": "GPT-4o + OmniGen",
533
+ "winner": "model_a",
534
+ "judge": "arena_user_127.0.0.1",
535
+ "anony": true,
536
+ "tstamp": 1735288749.1708
537
+ },
538
+ {
539
+ "model_a": "ChatDiT",
540
+ "model_b": "GPT-4o + FLUX.1 [dev]",
541
+ "winner": "model_a",
542
+ "judge": "arena_user_127.0.0.1",
543
+ "anony": true,
544
+ "tstamp": 1736217362.4857
545
+ },
546
+ {
547
+ "model_a": "ChatDiT",
548
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
549
+ "winner": "model_b",
550
+ "judge": "arena_user_127.0.0.1",
551
+ "anony": true,
552
+ "tstamp": 1736217415.3496
553
+ },
554
+ {
555
+ "model_a": "GPT-4o + PixArt-Sigma",
556
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
557
+ "winner": "tie (bothbad)",
558
+ "judge": "arena_user_127.0.0.1",
559
+ "anony": true,
560
+ "tstamp": 1736217467.4213
561
+ },
562
+ {
563
+ "model_a": "GPT-4o + Emu2",
564
+ "model_b": "GPT-4o + PixArt-Sigma",
565
+ "winner": "model_a",
566
+ "judge": "arena_user_127.0.0.1",
567
+ "anony": true,
568
+ "tstamp": 1736231106.774
569
+ },
570
+ {
571
+ "model_a": "GPT-4o + DALLE-3",
572
+ "model_b": "GPT-4o + OmniGen",
573
+ "winner": "model_a",
574
+ "judge": "arena_user_127.0.0.1",
575
+ "anony": true,
576
+ "tstamp": 1736231352.2979
577
+ },
578
+ {
579
+ "model_a": "GPT-4o + PixArt-Sigma",
580
+ "model_b": "ChatDiT",
581
+ "winner": "model_b",
582
+ "judge": "arena_user_127.0.0.1",
583
+ "anony": true,
584
+ "tstamp": 1736231359.2637
585
+ },
586
+ {
587
+ "model_a": "GPT-4o + FLUX.1 [dev]",
588
+ "model_b": "ChatDiT",
589
+ "winner": "model_a",
590
+ "judge": "arena_user_127.0.0.1",
591
+ "anony": true,
592
+ "tstamp": 1736231379.8023
593
+ },
594
+ {
595
+ "model_a": "GPT-4o + OmniGen",
596
+ "model_b": "GPT-4o + FLUX.1 [dev]",
597
+ "winner": "model_b",
598
+ "judge": "arena_user_127.0.0.1",
599
+ "anony": true,
600
+ "tstamp": 1736231388.242
601
+ },
602
+ {
603
+ "model_a": "GPT-4o + OmniGen",
604
+ "model_b": "GPT-4o + Emu2",
605
+ "winner": "tie (bothbad)",
606
+ "judge": "arena_user_127.0.0.1",
607
+ "anony": true,
608
+ "tstamp": 1736231396.2196
609
+ }
610
+ ]
arena_elo/results/20250106/elo_results.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:535e659b75ef384697943e4004940bf7d4b979c1321477705f236a8e3208e43e
3
+ size 60106
arena_elo/results/20250106/leaderboard.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ key,Model,Arena Elo rating (anony),Arena Elo rating (full),license,creator,link
2
+ GPT-4o + FLUX.1 [dev],GPT-4o + FLUX.1 [dev],1219.1427794795216,1166.0549975690838,FLUX.1 [dev] Non-Commercial License,Black Forest Labs,https://huggingface.co/black-forest-labs/FLUX.1-dev
3
+ GPT-4o + Emu2,GPT-4o + Emu2,1113.4806355484614,1113.5981443985163,Apache License 2.0,BAAI,https://huggingface.co/BAAI/Emu2
4
+ GPT-4o + Stable Diffusion 3 Medium,GPT-4o + Stable Diffusion 3 Medium,1109.4402088463034,1102.7675458419603,Stability AI Community License,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-3-medium
5
+ ChatDiT,ChatDiT,1097.230859017367,1124.1575718774789,MIT License,Tongyi Lab,https://github.com/ali-vilab/ChatDiT
6
+ FLUX-1,FLUX-1,1043.672356246084,1070.2761983047615,N/A,N/A,N/A
7
+ GPT-4o + PixArt-Sigma,GPT-4o + PixArt-Sigma,894.3258187233941,880.2523546802219,CreativeML Open RAIL++-M License,Huawei Noah's Ark Lab,https://huggingface.co/PixArt-alpha/PixArt-Sigma-XL-2-1024-MS
8
+ GPT-4o + DALLE-3,GPT-4o + DALLE-3,832.642153179771,855.7527047180981,OpenAI Terms of Use,OpenAI,https://openai.com/index/dall-e-3/
9
+ GPT-4o + OmniGen,GPT-4o + OmniGen,690.0651889590974,687.1404826098799,MIT License,BAAI,https://huggingface.co/spaces/Shitao/OmniGen
arena_elo/results/20250107/clean_battle.json ADDED
@@ -0,0 +1,562 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "model_a": "FLUX-1",
4
+ "model_b": "ChatDiT",
5
+ "winner": "model_b",
6
+ "judge": "arena_user_127.0.0.1",
7
+ "anony": true,
8
+ "tstamp": 1735030427.6669
9
+ },
10
+ {
11
+ "model_a": "FLUX-1",
12
+ "model_b": "ChatDiT",
13
+ "winner": "model_a",
14
+ "judge": "arena_user_127.0.0.1",
15
+ "anony": true,
16
+ "tstamp": 1735030452.0238
17
+ },
18
+ {
19
+ "model_a": "ChatDiT",
20
+ "model_b": "FLUX-1",
21
+ "winner": "model_a",
22
+ "judge": "arena_user_127.0.0.1",
23
+ "anony": true,
24
+ "tstamp": 1735030464.2602
25
+ },
26
+ {
27
+ "model_a": "ChatDiT",
28
+ "model_b": "FLUX-1",
29
+ "winner": "model_a",
30
+ "judge": "arena_user_127.0.0.1",
31
+ "anony": true,
32
+ "tstamp": 1735030476.2328
33
+ },
34
+ {
35
+ "model_a": "FLUX-1",
36
+ "model_b": "ChatDiT",
37
+ "winner": "tie (bothbad)",
38
+ "judge": "arena_user_127.0.0.1",
39
+ "anony": true,
40
+ "tstamp": 1735030495.2955
41
+ },
42
+ {
43
+ "model_a": "ChatDiT",
44
+ "model_b": "FLUX-1",
45
+ "winner": "tie (bothbad)",
46
+ "judge": "arena_user_127.0.0.1",
47
+ "anony": true,
48
+ "tstamp": 1735030503.418
49
+ },
50
+ {
51
+ "model_a": "ChatDiT",
52
+ "model_b": "FLUX-1",
53
+ "winner": "model_a",
54
+ "judge": "arena_user_127.0.0.1",
55
+ "anony": true,
56
+ "tstamp": 1735030511.3926
57
+ },
58
+ {
59
+ "model_a": "ChatDiT",
60
+ "model_b": "FLUX-1",
61
+ "winner": "tie (bothbad)",
62
+ "judge": "arena_user_127.0.0.1",
63
+ "anony": true,
64
+ "tstamp": 1735034259.9984
65
+ },
66
+ {
67
+ "model_a": "ChatDiT",
68
+ "model_b": "FLUX-1",
69
+ "winner": "model_a",
70
+ "judge": "arena_user_127.0.0.1",
71
+ "anony": true,
72
+ "tstamp": 1735034275.6871
73
+ },
74
+ {
75
+ "model_a": "ChatDiT",
76
+ "model_b": "FLUX-1",
77
+ "winner": "model_a",
78
+ "judge": "arena_user_127.0.0.1",
79
+ "anony": true,
80
+ "tstamp": 1735034284.7354
81
+ },
82
+ {
83
+ "model_a": "FLUX-1",
84
+ "model_b": "ChatDiT",
85
+ "winner": "model_a",
86
+ "judge": "arena_user_127.0.0.1",
87
+ "anony": true,
88
+ "tstamp": 1735034293.468
89
+ },
90
+ {
91
+ "model_a": "ChatDiT",
92
+ "model_b": "FLUX-1",
93
+ "winner": "model_b",
94
+ "judge": "arena_user_127.0.0.1",
95
+ "anony": true,
96
+ "tstamp": 1735034303.2042
97
+ },
98
+ {
99
+ "model_a": "ChatDiT",
100
+ "model_b": "FLUX-1",
101
+ "winner": "model_a",
102
+ "judge": "arena_user_127.0.0.1",
103
+ "anony": true,
104
+ "tstamp": 1735034314.1941
105
+ },
106
+ {
107
+ "model_a": "FLUX-1",
108
+ "model_b": "ChatDiT",
109
+ "winner": "model_a",
110
+ "judge": "arena_user_127.0.0.1",
111
+ "anony": true,
112
+ "tstamp": 1735034326.5092
113
+ },
114
+ {
115
+ "model_a": "FLUX-1",
116
+ "model_b": "ChatDiT",
117
+ "winner": "model_b",
118
+ "judge": "arena_user_127.0.0.1",
119
+ "anony": true,
120
+ "tstamp": 1735034331.6963
121
+ },
122
+ {
123
+ "model_a": "FLUX-1",
124
+ "model_b": "ChatDiT",
125
+ "winner": "tie (bothbad)",
126
+ "judge": "arena_user_127.0.0.1",
127
+ "anony": true,
128
+ "tstamp": 1735034336.5346
129
+ },
130
+ {
131
+ "model_a": "ChatDiT",
132
+ "model_b": "FLUX-1",
133
+ "winner": "model_b",
134
+ "judge": "arena_user_127.0.0.1",
135
+ "anony": true,
136
+ "tstamp": 1735034351.9521
137
+ },
138
+ {
139
+ "model_a": "FLUX-1",
140
+ "model_b": "ChatDiT",
141
+ "winner": "model_b",
142
+ "judge": "arena_user_127.0.0.1",
143
+ "anony": true,
144
+ "tstamp": 1735034366.1775
145
+ },
146
+ {
147
+ "model_a": "FLUX-1",
148
+ "model_b": "ChatDiT",
149
+ "winner": "model_a",
150
+ "judge": "arena_user_127.0.0.1",
151
+ "anony": true,
152
+ "tstamp": 1735034380.5877
153
+ },
154
+ {
155
+ "model_a": "ChatDiT",
156
+ "model_b": "FLUX-1",
157
+ "winner": "model_b",
158
+ "judge": "arena_user_127.0.0.1",
159
+ "anony": true,
160
+ "tstamp": 1735034384.3087
161
+ },
162
+ {
163
+ "model_a": "FLUX-1",
164
+ "model_b": "ChatDiT",
165
+ "winner": "model_a",
166
+ "judge": "arena_user_127.0.0.1",
167
+ "anony": true,
168
+ "tstamp": 1735034389.1583
169
+ },
170
+ {
171
+ "model_a": "FLUX-1",
172
+ "model_b": "ChatDiT",
173
+ "winner": "model_b",
174
+ "judge": "arena_user_127.0.0.1",
175
+ "anony": true,
176
+ "tstamp": 1735034405.9359
177
+ },
178
+ {
179
+ "model_a": "FLUX-1",
180
+ "model_b": "ChatDiT",
181
+ "winner": "model_b",
182
+ "judge": "arena_user_127.0.0.1",
183
+ "anony": true,
184
+ "tstamp": 1735034412.3533
185
+ },
186
+ {
187
+ "model_a": "FLUX-1",
188
+ "model_b": "ChatDiT",
189
+ "winner": "model_a",
190
+ "judge": "arena_user_127.0.0.1",
191
+ "anony": true,
192
+ "tstamp": 1735034419.0118
193
+ },
194
+ {
195
+ "model_a": "FLUX-1",
196
+ "model_b": "ChatDiT",
197
+ "winner": "model_b",
198
+ "judge": "arena_user_127.0.0.1",
199
+ "anony": true,
200
+ "tstamp": 1735034425.6972
201
+ },
202
+ {
203
+ "model_a": "FLUX-1",
204
+ "model_b": "ChatDiT",
205
+ "winner": "model_b",
206
+ "judge": "arena_user_127.0.0.1",
207
+ "anony": true,
208
+ "tstamp": 1735034432.5891
209
+ },
210
+ {
211
+ "model_a": "ChatDiT",
212
+ "model_b": "FLUX-1",
213
+ "winner": "model_a",
214
+ "judge": "arena_user_127.0.0.1",
215
+ "anony": true,
216
+ "tstamp": 1735092762.0
217
+ },
218
+ {
219
+ "model_a": "FLUX-1",
220
+ "model_b": "ChatDiT",
221
+ "winner": "tie (bothbad)",
222
+ "judge": "arena_user_127.0.0.1",
223
+ "anony": true,
224
+ "tstamp": 1735092774.618
225
+ },
226
+ {
227
+ "model_a": "FLUX-1",
228
+ "model_b": "ChatDiT",
229
+ "winner": "model_a",
230
+ "judge": "arena_user_127.0.0.1",
231
+ "anony": true,
232
+ "tstamp": 1735092797.2067
233
+ },
234
+ {
235
+ "model_a": "FLUX-1",
236
+ "model_b": "ChatDiT",
237
+ "winner": "model_b",
238
+ "judge": "arena_user_127.0.0.1",
239
+ "anony": true,
240
+ "tstamp": 1735092804.6699
241
+ },
242
+ {
243
+ "model_a": "FLUX-1",
244
+ "model_b": "ChatDiT",
245
+ "winner": "model_a",
246
+ "judge": "arena_user_127.0.0.1",
247
+ "anony": true,
248
+ "tstamp": 1735092810.2635
249
+ },
250
+ {
251
+ "model_a": "FLUX-1",
252
+ "model_b": "ChatDiT",
253
+ "winner": "model_b",
254
+ "judge": "arena_user_127.0.0.1",
255
+ "anony": true,
256
+ "tstamp": 1735093113.5724
257
+ },
258
+ {
259
+ "model_a": "ChatDiT",
260
+ "model_b": "FLUX-1",
261
+ "winner": "tie (bothbad)",
262
+ "judge": "arena_user_127.0.0.1",
263
+ "anony": true,
264
+ "tstamp": 1735093133.2436
265
+ },
266
+ {
267
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
268
+ "model_b": "GPT-4o + OmniGen",
269
+ "winner": "model_a",
270
+ "judge": "arena_user_127.0.0.1",
271
+ "anony": true,
272
+ "tstamp": 1735187628.4881
273
+ },
274
+ {
275
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
276
+ "model_b": "GPT-4o + PixArt-Sigma",
277
+ "winner": "model_b",
278
+ "judge": "arena_user_127.0.0.1",
279
+ "anony": true,
280
+ "tstamp": 1735187649.4872
281
+ },
282
+ {
283
+ "model_a": "GPT-4o + Emu2",
284
+ "model_b": "ChatDiT",
285
+ "winner": "model_a",
286
+ "judge": "arena_user_127.0.0.1",
287
+ "anony": true,
288
+ "tstamp": 1735197562.2637
289
+ },
290
+ {
291
+ "model_a": "GPT-4o + FLUX.1 [dev]",
292
+ "model_b": "GPT-4o + PixArt-Sigma",
293
+ "winner": "model_a",
294
+ "judge": "arena_user_127.0.0.1",
295
+ "anony": true,
296
+ "tstamp": 1735197586.8438
297
+ },
298
+ {
299
+ "model_a": "ChatDiT",
300
+ "model_b": "GPT-4o + FLUX.1 [dev]",
301
+ "winner": "model_a",
302
+ "judge": "arena_user_127.0.0.1",
303
+ "anony": false,
304
+ "tstamp": 1735201758.7145
305
+ },
306
+ {
307
+ "model_a": "GPT-4o + DALLE-3",
308
+ "model_b": "GPT-4o + PixArt-Sigma",
309
+ "winner": "model_b",
310
+ "judge": "arena_user_127.0.0.1",
311
+ "anony": false,
312
+ "tstamp": 1735202083.631
313
+ },
314
+ {
315
+ "model_a": "GPT-4o + DALLE-3",
316
+ "model_b": "GPT-4o + PixArt-Sigma",
317
+ "winner": "model_a",
318
+ "judge": "arena_user_127.0.0.1",
319
+ "anony": false,
320
+ "tstamp": 1735202099.4377
321
+ },
322
+ {
323
+ "model_a": "GPT-4o + OmniGen",
324
+ "model_b": "ChatDiT",
325
+ "winner": "model_b",
326
+ "judge": "arena_user_127.0.0.1",
327
+ "anony": true,
328
+ "tstamp": 1735202132.8592
329
+ },
330
+ {
331
+ "model_a": "GPT-4o + DALLE-3",
332
+ "model_b": "GPT-4o + PixArt-Sigma",
333
+ "winner": "model_b",
334
+ "judge": "arena_user_127.0.0.1",
335
+ "anony": false,
336
+ "tstamp": 1735202545.8694
337
+ },
338
+ {
339
+ "model_a": "GPT-4o + DALLE-3",
340
+ "model_b": "GPT-4o + PixArt-Sigma",
341
+ "winner": "model_a",
342
+ "judge": "arena_user_127.0.0.1",
343
+ "anony": false,
344
+ "tstamp": 1735202565.5723
345
+ },
346
+ {
347
+ "model_a": "GPT-4o + DALLE-3",
348
+ "model_b": "GPT-4o + PixArt-Sigma",
349
+ "winner": "tie (bothbad)",
350
+ "judge": "arena_user_127.0.0.1",
351
+ "anony": false,
352
+ "tstamp": 1735202573.0118
353
+ },
354
+ {
355
+ "model_a": "GPT-4o + DALLE-3",
356
+ "model_b": "GPT-4o + PixArt-Sigma",
357
+ "winner": "tie (bothbad)",
358
+ "judge": "arena_user_127.0.0.1",
359
+ "anony": false,
360
+ "tstamp": 1735203523.809
361
+ },
362
+ {
363
+ "model_a": "GPT-4o + OmniGen",
364
+ "model_b": "GPT-4o + DALLE-3",
365
+ "winner": "model_b",
366
+ "judge": "arena_user_127.0.0.1",
367
+ "anony": true,
368
+ "tstamp": 1735205600.7414
369
+ },
370
+ {
371
+ "model_a": "ChatDiT",
372
+ "model_b": "GPT-4o + DALLE-3",
373
+ "winner": "model_a",
374
+ "judge": "arena_user_127.0.0.1",
375
+ "anony": true,
376
+ "tstamp": 1735207454.8251
377
+ },
378
+ {
379
+ "model_a": "GPT-4o + OmniGen",
380
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
381
+ "winner": "model_b",
382
+ "judge": "arena_user_127.0.0.1",
383
+ "anony": true,
384
+ "tstamp": 1735207466.0131
385
+ },
386
+ {
387
+ "model_a": "GPT-4o + DALLE-3",
388
+ "model_b": "GPT-4o + Emu2",
389
+ "winner": "model_b",
390
+ "judge": "arena_user_127.0.0.1",
391
+ "anony": true,
392
+ "tstamp": 1735215923.1589
393
+ },
394
+ {
395
+ "model_a": "GPT-4o + PixArt-Sigma",
396
+ "model_b": "GPT-4o + DALLE-3",
397
+ "winner": "model_a",
398
+ "judge": "arena_user_127.0.0.1",
399
+ "anony": true,
400
+ "tstamp": 1735215935.7597
401
+ },
402
+ {
403
+ "model_a": "GPT-4o + OmniGen",
404
+ "model_b": "GPT-4o + PixArt-Sigma",
405
+ "winner": "tie (bothbad)",
406
+ "judge": "arena_user_127.0.0.1",
407
+ "anony": true,
408
+ "tstamp": 1735215942.7093
409
+ },
410
+ {
411
+ "model_a": "GPT-4o + PixArt-Sigma",
412
+ "model_b": "GPT-4o + OmniGen",
413
+ "winner": "model_a",
414
+ "judge": "arena_user_127.0.0.1",
415
+ "anony": true,
416
+ "tstamp": 1735215949.7965
417
+ },
418
+ {
419
+ "model_a": "GPT-4o + DALLE-3",
420
+ "model_b": "ChatDiT",
421
+ "winner": "model_b",
422
+ "judge": "arena_user_127.0.0.1",
423
+ "anony": true,
424
+ "tstamp": 1735215962.6898
425
+ },
426
+ {
427
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
428
+ "model_b": "GPT-4o + DALLE-3",
429
+ "winner": "tie (bothbad)",
430
+ "judge": "arena_user_127.0.0.1",
431
+ "anony": true,
432
+ "tstamp": 1735215968.9052
433
+ },
434
+ {
435
+ "model_a": "GPT-4o + FLUX.1 [dev]",
436
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
437
+ "winner": "tie (bothbad)",
438
+ "judge": "arena_user_127.0.0.1",
439
+ "anony": true,
440
+ "tstamp": 1735215976.5079
441
+ },
442
+ {
443
+ "model_a": "GPT-4o + Emu2",
444
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
445
+ "winner": "model_b",
446
+ "judge": "arena_user_127.0.0.1",
447
+ "anony": true,
448
+ "tstamp": 1735215982.9709
449
+ },
450
+ {
451
+ "model_a": "ChatDiT",
452
+ "model_b": "GPT-4o + PixArt-Sigma",
453
+ "winner": "model_a",
454
+ "judge": "arena_user_127.0.0.1",
455
+ "anony": true,
456
+ "tstamp": 1735215993.2305
457
+ },
458
+ {
459
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
460
+ "model_b": "GPT-4o + FLUX.1 [dev]",
461
+ "winner": "tie (bothbad)",
462
+ "judge": "arena_user_127.0.0.1",
463
+ "anony": true,
464
+ "tstamp": 1735215999.8713
465
+ },
466
+ {
467
+ "model_a": "GPT-4o + PixArt-Sigma",
468
+ "model_b": "GPT-4o + FLUX.1 [dev]",
469
+ "winner": "model_b",
470
+ "judge": "arena_user_127.0.0.1",
471
+ "anony": true,
472
+ "tstamp": 1735216012.8216
473
+ },
474
+ {
475
+ "model_a": "ChatDiT",
476
+ "model_b": "GPT-4o + PixArt-Sigma",
477
+ "winner": "model_a",
478
+ "judge": "arena_user_127.0.0.1",
479
+ "anony": true,
480
+ "tstamp": 1735216021.653
481
+ },
482
+ {
483
+ "model_a": "GPT-4o + PixArt-Sigma",
484
+ "model_b": "GPT-4o + OmniGen",
485
+ "winner": "model_b",
486
+ "judge": "arena_user_127.0.0.1",
487
+ "anony": true,
488
+ "tstamp": 1735286354.5764
489
+ },
490
+ {
491
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
492
+ "model_b": "ChatDiT",
493
+ "winner": "tie (bothbad)",
494
+ "judge": "arena_user_127.0.0.1",
495
+ "anony": true,
496
+ "tstamp": 1735286365.2329
497
+ },
498
+ {
499
+ "model_a": "GPT-4o + Emu2",
500
+ "model_b": "ChatDiT",
501
+ "winner": "model_a",
502
+ "judge": "arena_user_127.0.0.1",
503
+ "anony": true,
504
+ "tstamp": 1735286374.6751
505
+ },
506
+ {
507
+ "model_a": "GPT-4o + FLUX.1 [dev]",
508
+ "model_b": "GPT-4o + Emu2",
509
+ "winner": "model_a",
510
+ "judge": "arena_user_127.0.0.1",
511
+ "anony": true,
512
+ "tstamp": 1735286382.1211
513
+ },
514
+ {
515
+ "model_a": "GPT-4o + PixArt-Sigma",
516
+ "model_b": "GPT-4o + OmniGen",
517
+ "winner": "model_a",
518
+ "judge": "arena_user_127.0.0.1",
519
+ "anony": true,
520
+ "tstamp": 1735288723.7052
521
+ },
522
+ {
523
+ "model_a": "GPT-4o + FLUX.1 [dev]",
524
+ "model_b": "GPT-4o + DALLE-3",
525
+ "winner": "model_a",
526
+ "judge": "arena_user_127.0.0.1",
527
+ "anony": true,
528
+ "tstamp": 1735288729.3576
529
+ },
530
+ {
531
+ "model_a": "GPT-4o + PixArt-Sigma",
532
+ "model_b": "GPT-4o + OmniGen",
533
+ "winner": "model_a",
534
+ "judge": "arena_user_127.0.0.1",
535
+ "anony": true,
536
+ "tstamp": 1735288749.1708
537
+ },
538
+ {
539
+ "model_a": "GPT-4o + FLUX.1 [dev]",
540
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
541
+ "winner": "model_a",
542
+ "judge": "arena_user_127.0.0.1",
543
+ "anony": true,
544
+ "tstamp": 1736305459.7554
545
+ },
546
+ {
547
+ "model_a": "GPT-4o + Emu2",
548
+ "model_b": "GPT-4o + DALLE-3",
549
+ "winner": "model_b",
550
+ "judge": "arena_user_127.0.0.1",
551
+ "anony": true,
552
+ "tstamp": 1736305568.3703
553
+ },
554
+ {
555
+ "model_a": "GPT-4o + Emu2",
556
+ "model_b": "GPT-4o + PixArt-Sigma",
557
+ "winner": "model_b",
558
+ "judge": "arena_user_127.0.0.1",
559
+ "anony": true,
560
+ "tstamp": 1736305578.3648
561
+ }
562
+ ]
arena_elo/results/20250107/elo_results.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f156bf1709b8b009bb3fbd5eaaf2754c2784c675fd9d24822d0ee15449918600
3
+ size 59971
arena_elo/results/20250107/leaderboard.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ key,Model,Arena Elo rating (anony),Arena Elo rating (full),license,creator,link
2
+ GPT-4o + FLUX.1 [dev],GPT-4o + FLUX.1 [dev],1291.5350276356353,1192.7931512893806,FLUX.1 [dev] Non-Commercial License,Black Forest Labs,https://huggingface.co/black-forest-labs/FLUX.1-dev
3
+ GPT-4o + Stable Diffusion 3 Medium,GPT-4o + Stable Diffusion 3 Medium,1072.5747207950458,1048.875237084943,Stability AI Community License,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-3-medium
4
+ ChatDiT,ChatDiT,1071.8745978223071,1129.7326464913726,MIT License,Tongyi Lab,https://github.com/ali-vilab/ChatDiT
5
+ FLUX-1,FLUX-1,1018.6022943249966,1075.7881020731181,N/A,N/A,N/A
6
+ GPT-4o + Emu2,GPT-4o + Emu2,973.8076810129663,983.3170687066316,Apache License 2.0,BAAI,https://huggingface.co/BAAI/Emu2
7
+ GPT-4o + PixArt-Sigma,GPT-4o + PixArt-Sigma,972.4179488470709,945.3527099410124,CreativeML Open RAIL++-M License,Huawei Noah's Ark Lab,https://huggingface.co/PixArt-alpha/PixArt-Sigma-XL-2-1024-MS
8
+ GPT-4o + DALLE-3,GPT-4o + DALLE-3,871.6193286007302,907.0475236573719,OpenAI Terms of Use,OpenAI,https://openai.com/index/dall-e-3/
9
+ GPT-4o + OmniGen,GPT-4o + OmniGen,727.5684009612476,717.0935607561696,MIT License,BAAI,https://huggingface.co/spaces/Shitao/OmniGen
arena_elo/results/latest/clean_battle.json CHANGED
@@ -478,5 +478,85 @@
478
  "judge": "arena_user_127.0.0.1",
479
  "anony": true,
480
  "tstamp": 1735216021.653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  }
482
  ]
 
478
  "judge": "arena_user_127.0.0.1",
479
  "anony": true,
480
  "tstamp": 1735216021.653
481
+ },
482
+ {
483
+ "model_a": "GPT-4o + PixArt-Sigma",
484
+ "model_b": "GPT-4o + OmniGen",
485
+ "winner": "model_b",
486
+ "judge": "arena_user_127.0.0.1",
487
+ "anony": true,
488
+ "tstamp": 1735286354.5764
489
+ },
490
+ {
491
+ "model_a": "GPT-4o + Stable Diffusion 3 Medium",
492
+ "model_b": "ChatDiT",
493
+ "winner": "tie (bothbad)",
494
+ "judge": "arena_user_127.0.0.1",
495
+ "anony": true,
496
+ "tstamp": 1735286365.2329
497
+ },
498
+ {
499
+ "model_a": "GPT-4o + Emu2",
500
+ "model_b": "ChatDiT",
501
+ "winner": "model_a",
502
+ "judge": "arena_user_127.0.0.1",
503
+ "anony": true,
504
+ "tstamp": 1735286374.6751
505
+ },
506
+ {
507
+ "model_a": "GPT-4o + FLUX.1 [dev]",
508
+ "model_b": "GPT-4o + Emu2",
509
+ "winner": "model_a",
510
+ "judge": "arena_user_127.0.0.1",
511
+ "anony": true,
512
+ "tstamp": 1735286382.1211
513
+ },
514
+ {
515
+ "model_a": "GPT-4o + PixArt-Sigma",
516
+ "model_b": "GPT-4o + OmniGen",
517
+ "winner": "model_a",
518
+ "judge": "arena_user_127.0.0.1",
519
+ "anony": true,
520
+ "tstamp": 1735288723.7052
521
+ },
522
+ {
523
+ "model_a": "GPT-4o + FLUX.1 [dev]",
524
+ "model_b": "GPT-4o + DALLE-3",
525
+ "winner": "model_a",
526
+ "judge": "arena_user_127.0.0.1",
527
+ "anony": true,
528
+ "tstamp": 1735288729.3576
529
+ },
530
+ {
531
+ "model_a": "GPT-4o + PixArt-Sigma",
532
+ "model_b": "GPT-4o + OmniGen",
533
+ "winner": "model_a",
534
+ "judge": "arena_user_127.0.0.1",
535
+ "anony": true,
536
+ "tstamp": 1735288749.1708
537
+ },
538
+ {
539
+ "model_a": "GPT-4o + FLUX.1 [dev]",
540
+ "model_b": "GPT-4o + Stable Diffusion 3 Medium",
541
+ "winner": "model_a",
542
+ "judge": "arena_user_127.0.0.1",
543
+ "anony": true,
544
+ "tstamp": 1736305459.7554
545
+ },
546
+ {
547
+ "model_a": "GPT-4o + Emu2",
548
+ "model_b": "GPT-4o + DALLE-3",
549
+ "winner": "model_b",
550
+ "judge": "arena_user_127.0.0.1",
551
+ "anony": true,
552
+ "tstamp": 1736305568.3703
553
+ },
554
+ {
555
+ "model_a": "GPT-4o + Emu2",
556
+ "model_b": "GPT-4o + PixArt-Sigma",
557
+ "winner": "model_b",
558
+ "judge": "arena_user_127.0.0.1",
559
+ "anony": true,
560
+ "tstamp": 1736305578.3648
561
  }
562
  ]
arena_elo/results/latest/elo_results.pkl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:03f83c57c40a52e7cc67b47144cc16b5b21417baad81c270e84728cc223da347
3
- size 59910
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f156bf1709b8b009bb3fbd5eaaf2754c2784c675fd9d24822d0ee15449918600
3
+ size 59971
arena_elo/results/latest/leaderboard.csv CHANGED
@@ -1,9 +1,9 @@
1
  key,Model,Arena Elo rating (anony),Arena Elo rating (full),license,creator,link
2
- GPT-4o + FLUX.1 [dev],GPT-4o + FLUX.1 [dev],1175.6821194184254,1081.7818725315192,FLUX.1 [dev] Non-Commercial License,Black Forest Labs,https://huggingface.co/black-forest-labs/FLUX.1-dev
3
- ChatDiT,ChatDiT,1162.3247570727874,1220.8633537889925,MIT License,Tongyi Lab,https://github.com/ali-vilab/ChatDiT
4
- GPT-4o + Emu2,GPT-4o + Emu2,1134.6891079598486,1152.7284045727401,Apache License 2.0,BAAI,https://huggingface.co/BAAI/Emu2
5
- FLUX-1,FLUX-1,1107.9942010514312,1165.8807578999263,N/A,N/A,N/A
6
- GPT-4o + Stable Diffusion 3 Medium,GPT-4o + Stable Diffusion 3 Medium,1066.9600535574334,1033.9863968056318,Stability AI Community License,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-3-medium
7
- GPT-4o + PixArt-Sigma,GPT-4o + PixArt-Sigma,933.0714315244284,886.7730412848159,CreativeML Open RAIL++-M License,Huawei Noah's Ark Lab,https://huggingface.co/PixArt-alpha/PixArt-Sigma-XL-2-1024-MS
8
- GPT-4o + DALLE-3,GPT-4o + DALLE-3,804.061447868383,852.071446157934,OpenAI Terms of Use,OpenAI,https://openai.com/index/dall-e-3/
9
- GPT-4o + OmniGen,GPT-4o + OmniGen,615.2168815472633,605.9147269584403,MIT License,BAAI,https://huggingface.co/spaces/Shitao/OmniGen
 
1
  key,Model,Arena Elo rating (anony),Arena Elo rating (full),license,creator,link
2
+ GPT-4o + FLUX.1 [dev],GPT-4o + FLUX.1 [dev],1291.5350276356353,1192.7931512893806,FLUX.1 [dev] Non-Commercial License,Black Forest Labs,https://huggingface.co/black-forest-labs/FLUX.1-dev
3
+ GPT-4o + Stable Diffusion 3 Medium,GPT-4o + Stable Diffusion 3 Medium,1072.5747207950458,1048.875237084943,Stability AI Community License,Stability AI,https://huggingface.co/stabilityai/stable-diffusion-3-medium
4
+ ChatDiT,ChatDiT,1071.8745978223071,1129.7326464913726,MIT License,Tongyi Lab,https://github.com/ali-vilab/ChatDiT
5
+ FLUX-1,FLUX-1,1018.6022943249966,1075.7881020731181,N/A,N/A,N/A
6
+ GPT-4o + Emu2,GPT-4o + Emu2,973.8076810129663,983.3170687066316,Apache License 2.0,BAAI,https://huggingface.co/BAAI/Emu2
7
+ GPT-4o + PixArt-Sigma,GPT-4o + PixArt-Sigma,972.4179488470709,945.3527099410124,CreativeML Open RAIL++-M License,Huawei Noah's Ark Lab,https://huggingface.co/PixArt-alpha/PixArt-Sigma-XL-2-1024-MS
8
+ GPT-4o + DALLE-3,GPT-4o + DALLE-3,871.6193286007302,907.0475236573719,OpenAI Terms of Use,OpenAI,https://openai.com/index/dall-e-3/
9
+ GPT-4o + OmniGen,GPT-4o + OmniGen,727.5684009612476,717.0935607561696,MIT License,BAAI,https://huggingface.co/spaces/Shitao/OmniGen
arena_elo/update_elo_rating.sh CHANGED
@@ -1,9 +1,3 @@
1
- # set LOGDIR to default if not set before
2
- if [ -z "$LOGDIR" ]; then
3
- echo "LOGDIR is not set. Using default '../logs/vote_log'"
4
- export LOGDIR="../logs/vote_log"
5
- fi
6
-
7
  mkdir -p results
8
 
9
  # for battle data
 
 
 
 
 
 
 
1
  mkdir -p results
2
 
3
  # for battle data
logs/vote_log/2024-12-24-conv.json DELETED
@@ -1,26 +0,0 @@
1
- {"tstamp": 1735030427.6669, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
2
- {"tstamp": 1735030452.0238, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
3
- {"tstamp": 1735030464.2602, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
4
- {"tstamp": 1735030476.2328, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
5
- {"tstamp": 1735030495.2955, "type": "bothbad_vote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
6
- {"tstamp": 1735030503.418, "type": "bothbad_vote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
7
- {"tstamp": 1735030511.3926, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
8
- {"tstamp": 1735034259.9984, "type": "bothbad_vote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
9
- {"tstamp": 1735034275.6871, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
10
- {"tstamp": 1735034284.7354, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
11
- {"tstamp": 1735034293.468, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
12
- {"tstamp": 1735034303.2042, "type": "rightvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
13
- {"tstamp": 1735034314.1941, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
14
- {"tstamp": 1735034326.5092, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
15
- {"tstamp": 1735034331.6963, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
16
- {"tstamp": 1735034336.5346, "type": "bothbad_vote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
17
- {"tstamp": 1735034351.9521, "type": "rightvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
18
- {"tstamp": 1735034366.1775, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
19
- {"tstamp": 1735034380.5877, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
20
- {"tstamp": 1735034384.3087, "type": "rightvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
21
- {"tstamp": 1735034389.1583, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
22
- {"tstamp": 1735034405.9359, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
23
- {"tstamp": 1735034412.3533, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
24
- {"tstamp": 1735034419.0118, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
25
- {"tstamp": 1735034425.6972, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
26
- {"tstamp": 1735034432.5891, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
logs/vote_log/2024-12-25-conv.json DELETED
@@ -1,7 +0,0 @@
1
- {"tstamp": 1735092762.0, "type": "leftvote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
2
- {"tstamp": 1735092774.618, "type": "bothbad_vote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
3
- {"tstamp": 1735092797.2067, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
4
- {"tstamp": 1735092804.6699, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
5
- {"tstamp": 1735092810.2635, "type": "leftvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
6
- {"tstamp": 1735093113.5724, "type": "rightvote", "models": ["FLUX-1", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
7
- {"tstamp": 1735093133.2436, "type": "bothbad_vote", "models": ["ChatDiT", "FLUX-1"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
 
 
 
 
 
 
 
 
logs/vote_log/2024-12-26-conv.json DELETED
@@ -1,27 +0,0 @@
1
- {"tstamp": 1735187628.4881, "type": "leftvote", "models": ["GPT-4o + Stable Diffusion 3 Medium", "GPT-4o + OmniGen"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
2
- {"tstamp": 1735187649.4872, "type": "rightvote", "models": ["GPT-4o + Stable Diffusion 3 Medium", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
3
- {"tstamp": 1735197562.2637, "type": "leftvote", "models": ["GPT-4o + Emu2", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
4
- {"tstamp": 1735197586.8438, "type": "leftvote", "models": ["GPT-4o + FLUX.1 [dev]", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
5
- {"tstamp": 1735201758.7145, "type": "leftvote", "models": ["ChatDiT", "GPT-4o + FLUX.1 [dev]"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
6
- {"tstamp": 1735202083.631, "type": "rightvote", "models": ["GPT-4o + DALLE-3", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
7
- {"tstamp": 1735202099.4377, "type": "leftvote", "models": ["GPT-4o + DALLE-3", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
8
- {"tstamp": 1735202132.8592, "type": "rightvote", "models": ["GPT-4o + OmniGen", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
9
- {"tstamp": 1735202545.8694, "type": "rightvote", "models": ["GPT-4o + DALLE-3", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
10
- {"tstamp": 1735202565.5723, "type": "leftvote", "models": ["GPT-4o + DALLE-3", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
11
- {"tstamp": 1735202573.0118, "type": "bothbad_vote", "models": ["GPT-4o + DALLE-3", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
12
- {"tstamp": 1735203523.809, "type": "bothbad_vote", "models": ["GPT-4o + DALLE-3", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": false, "ip": "127.0.0.1"}
13
- {"tstamp": 1735205600.7414, "type": "rightvote", "models": ["GPT-4o + OmniGen", "GPT-4o + DALLE-3"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
14
- {"tstamp": 1735207454.8251, "type": "leftvote", "models": ["ChatDiT", "GPT-4o + DALLE-3"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
15
- {"tstamp": 1735207466.0131, "type": "rightvote", "models": ["GPT-4o + OmniGen", "GPT-4o + Stable Diffusion 3 Medium"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
16
- {"tstamp": 1735215923.1589, "type": "rightvote", "models": ["GPT-4o + DALLE-3", "GPT-4o + Emu2"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
17
- {"tstamp": 1735215935.7597, "type": "leftvote", "models": ["GPT-4o + PixArt-Sigma", "GPT-4o + DALLE-3"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
18
- {"tstamp": 1735215942.7093, "type": "bothbad_vote", "models": ["GPT-4o + OmniGen", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
19
- {"tstamp": 1735215949.7965, "type": "leftvote", "models": ["GPT-4o + PixArt-Sigma", "GPT-4o + OmniGen"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
20
- {"tstamp": 1735215962.6898, "type": "rightvote", "models": ["GPT-4o + DALLE-3", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
21
- {"tstamp": 1735215968.9052, "type": "bothbad_vote", "models": ["GPT-4o + Stable Diffusion 3 Medium", "GPT-4o + DALLE-3"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
22
- {"tstamp": 1735215976.5079, "type": "bothbad_vote", "models": ["GPT-4o + FLUX.1 [dev]", "GPT-4o + Stable Diffusion 3 Medium"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
23
- {"tstamp": 1735215982.9709, "type": "rightvote", "models": ["GPT-4o + Emu2", "GPT-4o + Stable Diffusion 3 Medium"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
24
- {"tstamp": 1735215993.2305, "type": "leftvote", "models": ["ChatDiT", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
25
- {"tstamp": 1735215999.8713, "type": "bothbad_vote", "models": ["GPT-4o + Stable Diffusion 3 Medium", "GPT-4o + FLUX.1 [dev]"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
26
- {"tstamp": 1735216012.8216, "type": "rightvote", "models": ["GPT-4o + PixArt-Sigma", "GPT-4o + FLUX.1 [dev]"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
27
- {"tstamp": 1735216021.653, "type": "leftvote", "models": ["ChatDiT", "GPT-4o + PixArt-Sigma"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
logs/vote_log/2024-12-27-conv.json DELETED
@@ -1,7 +0,0 @@
1
- {"tstamp": 1735286354.5764, "type": "rightvote", "models": ["GPT-4o + PixArt-Sigma", "GPT-4o + OmniGen"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
2
- {"tstamp": 1735286365.2329, "type": "bothbad_vote", "models": ["GPT-4o + Stable Diffusion 3 Medium", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
3
- {"tstamp": 1735286374.6751, "type": "leftvote", "models": ["GPT-4o + Emu2", "ChatDiT"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
4
- {"tstamp": 1735286382.1211, "type": "leftvote", "models": ["GPT-4o + FLUX.1 [dev]", "GPT-4o + Emu2"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
5
- {"tstamp": 1735288723.7052, "type": "leftvote", "models": ["GPT-4o + PixArt-Sigma", "GPT-4o + OmniGen"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
6
- {"tstamp": 1735288729.3576, "type": "leftvote", "models": ["GPT-4o + FLUX.1 [dev]", "GPT-4o + DALLE-3"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
7
- {"tstamp": 1735288749.1708, "type": "leftvote", "models": ["GPT-4o + PixArt-Sigma", "GPT-4o + OmniGen"], "states": [{}, {}], "anony": true, "ip": "127.0.0.1"}
 
 
 
 
 
 
 
 
logs/vote_log/gr_web_image_generation_multi.log DELETED
@@ -1,532 +0,0 @@
1
- 2024-12-26 11:49:30 | INFO | stdout | An error occurred while loading the CSV file: 'utf-8' codec can't decode byte 0xa1 in position 1240: invalid start byte
2
- 2024-12-26 11:49:31 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
3
- 2024-12-26 11:49:31 | INFO | stdout |
4
- 2024-12-26 11:49:31 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
5
- 2024-12-26 11:49:38 | INFO | stdout | Keyboard interruption in main thread... closing server.
6
- 2024-12-26 11:49:38 | INFO | stdout | Rerunning server... use `close()` to stop if you need to change `launch()` parameters.
7
- 2024-12-26 11:49:38 | INFO | stdout | ----
8
- 2024-12-26 11:49:38 | ERROR | stderr | Traceback (most recent call last):
9
- 2024-12-26 11:49:38 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 65, in <module>
10
- 2024-12-26 11:49:38 | ERROR | stderr | demo.launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
11
- 2024-12-26 11:49:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2619, in launch
12
- 2024-12-26 11:49:38 | ERROR | stderr | raise ValueError(
13
- 2024-12-26 11:49:38 | ERROR | stderr | ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your proxy settings to allow access to localhost.
14
- 2024-12-26 11:49:42 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
15
- 2024-12-26 11:49:42 | ERROR | stderr | Traceback (most recent call last):
16
- 2024-12-26 11:49:42 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
17
- 2024-12-26 11:49:42 | ERROR | stderr | lock.acquire()
18
- 2024-12-26 11:49:42 | ERROR | stderr | KeyboardInterrupt:
19
- 2024-12-26 12:07:12 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
20
- 2024-12-26 12:07:12 | INFO | stdout |
21
- 2024-12-26 12:07:12 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
22
- 2024-12-26 12:33:48 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
23
- 2024-12-26 12:34:09 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
24
- 2024-12-26 12:43:31 | INFO | stdout | Keyboard interruption in main thread... closing server.
25
- 2024-12-26 12:43:31 | INFO | stdout | Rerunning server... use `close()` to stop if you need to change `launch()` parameters.
26
- 2024-12-26 12:43:31 | INFO | stdout | ----
27
- 2024-12-26 12:43:31 | ERROR | stderr | Traceback (most recent call last):
28
- 2024-12-26 12:43:31 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 65, in <module>
29
- 2024-12-26 12:43:31 | ERROR | stderr | demo.launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
30
- 2024-12-26 12:43:31 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2619, in launch
31
- 2024-12-26 12:43:31 | ERROR | stderr | raise ValueError(
32
- 2024-12-26 12:43:31 | ERROR | stderr | ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your proxy settings to allow access to localhost.
33
- 2024-12-26 14:01:35 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
34
- 2024-12-26 14:01:36 | INFO | stdout |
35
- 2024-12-26 14:01:36 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
36
- 2024-12-26 14:05:04 | INFO | stdout | Keyboard interruption in main thread... closing server.
37
- 2024-12-26 14:05:04 | ERROR | stderr | Traceback (most recent call last):
38
- 2024-12-26 14:05:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
39
- 2024-12-26 14:05:04 | ERROR | stderr | time.sleep(0.1)
40
- 2024-12-26 14:05:04 | ERROR | stderr | KeyboardInterrupt
41
- 2024-12-26 14:05:04 | ERROR | stderr |
42
- 2024-12-26 14:05:04 | ERROR | stderr | During handling of the above exception, another exception occurred:
43
- 2024-12-26 14:05:04 | ERROR | stderr |
44
- 2024-12-26 14:05:04 | ERROR | stderr | Traceback (most recent call last):
45
- 2024-12-26 14:05:04 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
46
- 2024-12-26 14:05:04 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
47
- 2024-12-26 14:05:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
48
- 2024-12-26 14:05:04 | ERROR | stderr | self.block_thread()
49
- 2024-12-26 14:05:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
50
- 2024-12-26 14:05:04 | ERROR | stderr | self.server.close()
51
- 2024-12-26 14:05:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
52
- 2024-12-26 14:05:04 | ERROR | stderr | self.thread.join(timeout=5)
53
- 2024-12-26 14:05:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
54
- 2024-12-26 14:05:04 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
55
- 2024-12-26 14:05:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
56
- 2024-12-26 14:05:04 | ERROR | stderr | if lock.acquire(block, timeout):
57
- 2024-12-26 14:05:04 | ERROR | stderr | KeyboardInterrupt
58
- 2024-12-26 14:17:14 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
59
- 2024-12-26 14:17:14 | INFO | stdout |
60
- 2024-12-26 14:17:14 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
61
- 2024-12-26 14:21:13 | INFO | stdout | Keyboard interruption in main thread... closing server.
62
- 2024-12-26 14:21:13 | ERROR | stderr | Traceback (most recent call last):
63
- 2024-12-26 14:21:13 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
64
- 2024-12-26 14:21:13 | ERROR | stderr | time.sleep(0.1)
65
- 2024-12-26 14:21:13 | ERROR | stderr | KeyboardInterrupt
66
- 2024-12-26 14:21:13 | ERROR | stderr |
67
- 2024-12-26 14:21:13 | ERROR | stderr | During handling of the above exception, another exception occurred:
68
- 2024-12-26 14:21:13 | ERROR | stderr |
69
- 2024-12-26 14:21:13 | ERROR | stderr | Traceback (most recent call last):
70
- 2024-12-26 14:21:13 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
71
- 2024-12-26 14:21:13 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
72
- 2024-12-26 14:21:13 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
73
- 2024-12-26 14:21:13 | ERROR | stderr | self.block_thread()
74
- 2024-12-26 14:21:13 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
75
- 2024-12-26 14:21:13 | ERROR | stderr | self.server.close()
76
- 2024-12-26 14:21:13 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
77
- 2024-12-26 14:21:13 | ERROR | stderr | self.thread.join(timeout=5)
78
- 2024-12-26 14:21:13 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
79
- 2024-12-26 14:21:13 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
80
- 2024-12-26 14:21:13 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
81
- 2024-12-26 14:21:13 | ERROR | stderr | if lock.acquire(block, timeout):
82
- 2024-12-26 14:21:13 | ERROR | stderr | KeyboardInterrupt
83
- 2024-12-26 15:14:17 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
84
- 2024-12-26 15:14:17 | INFO | stdout |
85
- 2024-12-26 15:14:17 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
86
- 2024-12-26 15:19:22 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
87
- 2024-12-26 15:19:46 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
88
- 2024-12-26 15:20:35 | ERROR | stderr | Traceback (most recent call last):
89
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
90
- 2024-12-26 15:20:35 | ERROR | stderr | response = await route_utils.call_process_api(
91
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/route_utils.py", line 322, in call_process_api
92
- 2024-12-26 15:20:35 | ERROR | stderr | output = await app.get_blocks().process_api(
93
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2047, in process_api
94
- 2024-12-26 15:20:35 | ERROR | stderr | result = await self.call_function(
95
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 1594, in call_function
96
- 2024-12-26 15:20:35 | ERROR | stderr | prediction = await anyio.to_thread.run_sync( # type: ignore
97
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/to_thread.py", line 56, in run_sync
98
- 2024-12-26 15:20:35 | ERROR | stderr | return await get_async_backend().run_sync_in_worker_thread(
99
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 2505, in run_sync_in_worker_thread
100
- 2024-12-26 15:20:35 | ERROR | stderr | return await future
101
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 1005, in run
102
- 2024-12-26 15:20:35 | ERROR | stderr | result = context.run(func, *args)
103
- 2024-12-26 15:20:35 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/utils.py", line 869, in wrapper
104
- 2024-12-26 15:20:35 | ERROR | stderr | response = f(*args, **kwargs)
105
- 2024-12-26 15:20:35 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/utils.py", line 164, in refresh_side_by_side
106
- 2024-12-26 15:20:35 | ERROR | stderr | state0, state1, prompt, input_images, output_images_A, output_images_B = models.get_result_of_random_case(model_name_A, model_name_B)
107
- 2024-12-26 15:20:35 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/model/model_manager.py", line 215, in get_result_of_random_case
108
- 2024-12-26 15:20:35 | ERROR | stderr | output_images_A = model_A.get_result(case_name)
109
- 2024-12-26 15:20:35 | ERROR | stderr | AttributeError: 'NoneType' object has no attribute 'get_result'
110
- 2024-12-26 16:22:06 | INFO | stdout | Keyboard interruption in main thread... closing server.
111
- 2024-12-26 16:22:07 | ERROR | stderr | Traceback (most recent call last):
112
- 2024-12-26 16:22:07 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
113
- 2024-12-26 16:22:07 | ERROR | stderr | time.sleep(0.1)
114
- 2024-12-26 16:22:07 | ERROR | stderr | KeyboardInterrupt
115
- 2024-12-26 16:22:07 | ERROR | stderr |
116
- 2024-12-26 16:22:07 | ERROR | stderr | During handling of the above exception, another exception occurred:
117
- 2024-12-26 16:22:07 | ERROR | stderr |
118
- 2024-12-26 16:22:07 | ERROR | stderr | Traceback (most recent call last):
119
- 2024-12-26 16:22:07 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
120
- 2024-12-26 16:22:07 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
121
- 2024-12-26 16:22:07 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
122
- 2024-12-26 16:22:07 | ERROR | stderr | self.block_thread()
123
- 2024-12-26 16:22:07 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
124
- 2024-12-26 16:22:07 | ERROR | stderr | self.server.close()
125
- 2024-12-26 16:22:07 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
126
- 2024-12-26 16:22:07 | ERROR | stderr | self.thread.join(timeout=5)
127
- 2024-12-26 16:22:07 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
128
- 2024-12-26 16:22:07 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
129
- 2024-12-26 16:22:07 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
130
- 2024-12-26 16:22:07 | ERROR | stderr | if lock.acquire(block, timeout):
131
- 2024-12-26 16:22:07 | ERROR | stderr | KeyboardInterrupt
132
- 2024-12-26 16:28:41 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
133
- 2024-12-26 16:28:41 | INFO | stdout |
134
- 2024-12-26 16:28:41 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
135
- 2024-12-26 16:29:18 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
136
- 2024-12-26 16:33:49 | INFO | stdout | Keyboard interruption in main thread... closing server.
137
- 2024-12-26 16:33:49 | ERROR | stderr | Traceback (most recent call last):
138
- 2024-12-26 16:33:49 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
139
- 2024-12-26 16:33:49 | ERROR | stderr | time.sleep(0.1)
140
- 2024-12-26 16:33:49 | ERROR | stderr | KeyboardInterrupt
141
- 2024-12-26 16:33:49 | ERROR | stderr |
142
- 2024-12-26 16:33:49 | ERROR | stderr | During handling of the above exception, another exception occurred:
143
- 2024-12-26 16:33:49 | ERROR | stderr |
144
- 2024-12-26 16:33:49 | ERROR | stderr | Traceback (most recent call last):
145
- 2024-12-26 16:33:49 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
146
- 2024-12-26 16:33:49 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
147
- 2024-12-26 16:33:49 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
148
- 2024-12-26 16:33:49 | ERROR | stderr | self.block_thread()
149
- 2024-12-26 16:33:49 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
150
- 2024-12-26 16:33:49 | ERROR | stderr | self.server.close()
151
- 2024-12-26 16:33:49 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
152
- 2024-12-26 16:33:49 | ERROR | stderr | self.thread.join(timeout=5)
153
- 2024-12-26 16:33:49 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
154
- 2024-12-26 16:33:49 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
155
- 2024-12-26 16:33:49 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
156
- 2024-12-26 16:33:49 | ERROR | stderr | if lock.acquire(block, timeout):
157
- 2024-12-26 16:33:49 | ERROR | stderr | KeyboardInterrupt
158
- 2024-12-26 16:34:06 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
159
- 2024-12-26 16:34:06 | INFO | stdout |
160
- 2024-12-26 16:34:06 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
161
- 2024-12-26 16:34:43 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
162
- 2024-12-26 16:34:59 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
163
- 2024-12-26 16:35:32 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
164
- 2024-12-26 16:42:25 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
165
- 2024-12-26 16:42:45 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
166
- 2024-12-26 16:42:53 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
167
- 2024-12-26 16:58:43 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
168
- 2024-12-26 17:33:20 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
169
- 2024-12-26 18:04:14 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
170
- 2024-12-26 18:04:26 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
171
- 2024-12-26 19:58:21 | INFO | stdout | Keyboard interruption in main thread... closing server.
172
- 2024-12-26 19:58:21 | ERROR | stderr | Traceback (most recent call last):
173
- 2024-12-26 19:58:21 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
174
- 2024-12-26 19:58:21 | ERROR | stderr | time.sleep(0.1)
175
- 2024-12-26 19:58:21 | ERROR | stderr | KeyboardInterrupt
176
- 2024-12-26 19:58:21 | ERROR | stderr |
177
- 2024-12-26 19:58:21 | ERROR | stderr | During handling of the above exception, another exception occurred:
178
- 2024-12-26 19:58:21 | ERROR | stderr |
179
- 2024-12-26 19:58:21 | ERROR | stderr | Traceback (most recent call last):
180
- 2024-12-26 19:58:21 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
181
- 2024-12-26 19:58:21 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
182
- 2024-12-26 19:58:21 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
183
- 2024-12-26 19:58:21 | ERROR | stderr | self.block_thread()
184
- 2024-12-26 19:58:21 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
185
- 2024-12-26 19:58:21 | ERROR | stderr | self.server.close()
186
- 2024-12-26 19:58:21 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
187
- 2024-12-26 19:58:21 | ERROR | stderr | self.thread.join(timeout=5)
188
- 2024-12-26 19:58:21 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
189
- 2024-12-26 19:58:21 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
190
- 2024-12-26 19:58:21 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
191
- 2024-12-26 19:58:21 | ERROR | stderr | if lock.acquire(block, timeout):
192
- 2024-12-26 19:58:21 | ERROR | stderr | KeyboardInterrupt
193
- 2024-12-26 20:07:22 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
194
- 2024-12-26 20:07:22 | INFO | stdout |
195
- 2024-12-26 20:07:22 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
196
- 2024-12-26 20:09:29 | INFO | stdout | Keyboard interruption in main thread... closing server.
197
- 2024-12-26 20:09:29 | ERROR | stderr | Traceback (most recent call last):
198
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
199
- 2024-12-26 20:09:29 | ERROR | stderr | time.sleep(0.1)
200
- 2024-12-26 20:09:29 | ERROR | stderr | KeyboardInterrupt
201
- 2024-12-26 20:09:29 | ERROR | stderr |
202
- 2024-12-26 20:09:29 | ERROR | stderr | During handling of the above exception, another exception occurred:
203
- 2024-12-26 20:09:29 | ERROR | stderr |
204
- 2024-12-26 20:09:29 | ERROR | stderr | Traceback (most recent call last):
205
- 2024-12-26 20:09:29 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
206
- 2024-12-26 20:09:29 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
207
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
208
- 2024-12-26 20:09:29 | ERROR | stderr | self.block_thread()
209
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
210
- 2024-12-26 20:09:29 | ERROR | stderr | self.server.close()
211
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
212
- 2024-12-26 20:09:29 | ERROR | stderr | self.thread.join(timeout=5)
213
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
214
- 2024-12-26 20:09:29 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
215
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
216
- 2024-12-26 20:09:29 | ERROR | stderr | if lock.acquire(block, timeout):
217
- 2024-12-26 20:09:29 | ERROR | stderr | KeyboardInterrupt
218
- 2024-12-26 20:09:29 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
219
- 2024-12-26 20:09:29 | ERROR | stderr | Traceback (most recent call last):
220
- 2024-12-26 20:09:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
221
- 2024-12-26 20:09:29 | ERROR | stderr | lock.acquire()
222
- 2024-12-26 20:09:29 | ERROR | stderr | KeyboardInterrupt:
223
- 2024-12-26 20:09:34 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
224
- 2024-12-26 20:09:34 | INFO | stdout |
225
- 2024-12-26 20:09:34 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
226
- 2024-12-26 20:10:51 | INFO | stdout | Keyboard interruption in main thread... closing server.
227
- 2024-12-26 20:10:51 | ERROR | stderr | Traceback (most recent call last):
228
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
229
- 2024-12-26 20:10:51 | ERROR | stderr | time.sleep(0.1)
230
- 2024-12-26 20:10:51 | ERROR | stderr | KeyboardInterrupt
231
- 2024-12-26 20:10:51 | ERROR | stderr |
232
- 2024-12-26 20:10:51 | ERROR | stderr | During handling of the above exception, another exception occurred:
233
- 2024-12-26 20:10:51 | ERROR | stderr |
234
- 2024-12-26 20:10:51 | ERROR | stderr | Traceback (most recent call last):
235
- 2024-12-26 20:10:51 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
236
- 2024-12-26 20:10:51 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
237
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
238
- 2024-12-26 20:10:51 | ERROR | stderr | self.block_thread()
239
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
240
- 2024-12-26 20:10:51 | ERROR | stderr | self.server.close()
241
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
242
- 2024-12-26 20:10:51 | ERROR | stderr | self.thread.join(timeout=5)
243
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
244
- 2024-12-26 20:10:51 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
245
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
246
- 2024-12-26 20:10:51 | ERROR | stderr | if lock.acquire(block, timeout):
247
- 2024-12-26 20:10:51 | ERROR | stderr | KeyboardInterrupt
248
- 2024-12-26 20:10:51 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
249
- 2024-12-26 20:10:51 | ERROR | stderr | Traceback (most recent call last):
250
- 2024-12-26 20:10:51 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
251
- 2024-12-26 20:10:51 | ERROR | stderr | lock.acquire()
252
- 2024-12-26 20:10:51 | ERROR | stderr | KeyboardInterrupt:
253
- 2024-12-26 20:11:17 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
254
- 2024-12-26 20:11:17 | INFO | stdout |
255
- 2024-12-26 20:11:17 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
256
- 2024-12-26 20:11:33 | INFO | stdout | Keyboard interruption in main thread... closing server.
257
- 2024-12-26 20:11:33 | ERROR | stderr | Traceback (most recent call last):
258
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
259
- 2024-12-26 20:11:33 | ERROR | stderr | time.sleep(0.1)
260
- 2024-12-26 20:11:33 | ERROR | stderr | KeyboardInterrupt
261
- 2024-12-26 20:11:33 | ERROR | stderr |
262
- 2024-12-26 20:11:33 | ERROR | stderr | During handling of the above exception, another exception occurred:
263
- 2024-12-26 20:11:33 | ERROR | stderr |
264
- 2024-12-26 20:11:33 | ERROR | stderr | Traceback (most recent call last):
265
- 2024-12-26 20:11:33 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
266
- 2024-12-26 20:11:33 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
267
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
268
- 2024-12-26 20:11:33 | ERROR | stderr | self.block_thread()
269
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
270
- 2024-12-26 20:11:33 | ERROR | stderr | self.server.close()
271
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
272
- 2024-12-26 20:11:33 | ERROR | stderr | self.thread.join(timeout=5)
273
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
274
- 2024-12-26 20:11:33 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
275
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
276
- 2024-12-26 20:11:33 | ERROR | stderr | if lock.acquire(block, timeout):
277
- 2024-12-26 20:11:33 | ERROR | stderr | KeyboardInterrupt
278
- 2024-12-26 20:11:33 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
279
- 2024-12-26 20:11:33 | ERROR | stderr | Traceback (most recent call last):
280
- 2024-12-26 20:11:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
281
- 2024-12-26 20:11:33 | ERROR | stderr | lock.acquire()
282
- 2024-12-26 20:11:33 | ERROR | stderr | KeyboardInterrupt:
283
- 2024-12-26 20:13:30 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
284
- 2024-12-26 20:13:30 | INFO | stdout |
285
- 2024-12-26 20:13:30 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
286
- 2024-12-26 20:18:33 | INFO | stdout | Keyboard interruption in main thread... closing server.
287
- 2024-12-26 20:18:33 | ERROR | stderr | Traceback (most recent call last):
288
- 2024-12-26 20:18:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
289
- 2024-12-26 20:18:33 | ERROR | stderr | time.sleep(0.1)
290
- 2024-12-26 20:18:33 | ERROR | stderr | KeyboardInterrupt
291
- 2024-12-26 20:18:33 | ERROR | stderr |
292
- 2024-12-26 20:18:33 | ERROR | stderr | During handling of the above exception, another exception occurred:
293
- 2024-12-26 20:18:33 | ERROR | stderr |
294
- 2024-12-26 20:18:33 | ERROR | stderr | Traceback (most recent call last):
295
- 2024-12-26 20:18:33 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
296
- 2024-12-26 20:18:33 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
297
- 2024-12-26 20:18:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
298
- 2024-12-26 20:18:33 | ERROR | stderr | self.block_thread()
299
- 2024-12-26 20:18:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
300
- 2024-12-26 20:18:33 | ERROR | stderr | self.server.close()
301
- 2024-12-26 20:18:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
302
- 2024-12-26 20:18:33 | ERROR | stderr | self.thread.join(timeout=5)
303
- 2024-12-26 20:18:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
304
- 2024-12-26 20:18:33 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
305
- 2024-12-26 20:18:33 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
306
- 2024-12-26 20:18:33 | ERROR | stderr | if lock.acquire(block, timeout):
307
- 2024-12-26 20:18:33 | ERROR | stderr | KeyboardInterrupt
308
- 2024-12-26 20:18:40 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
309
- 2024-12-26 20:18:40 | INFO | stdout |
310
- 2024-12-26 20:18:40 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
311
- 2024-12-26 20:23:29 | INFO | stdout | Keyboard interruption in main thread... closing server.
312
- 2024-12-26 20:23:29 | ERROR | stderr | Traceback (most recent call last):
313
- 2024-12-26 20:23:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
314
- 2024-12-26 20:23:29 | ERROR | stderr | time.sleep(0.1)
315
- 2024-12-26 20:23:29 | ERROR | stderr | KeyboardInterrupt
316
- 2024-12-26 20:23:29 | ERROR | stderr |
317
- 2024-12-26 20:23:29 | ERROR | stderr | During handling of the above exception, another exception occurred:
318
- 2024-12-26 20:23:29 | ERROR | stderr |
319
- 2024-12-26 20:23:29 | ERROR | stderr | Traceback (most recent call last):
320
- 2024-12-26 20:23:29 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
321
- 2024-12-26 20:23:29 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
322
- 2024-12-26 20:23:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
323
- 2024-12-26 20:23:29 | ERROR | stderr | self.block_thread()
324
- 2024-12-26 20:23:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
325
- 2024-12-26 20:23:29 | ERROR | stderr | self.server.close()
326
- 2024-12-26 20:23:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
327
- 2024-12-26 20:23:29 | ERROR | stderr | self.thread.join(timeout=5)
328
- 2024-12-26 20:23:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
329
- 2024-12-26 20:23:29 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
330
- 2024-12-26 20:23:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
331
- 2024-12-26 20:23:29 | ERROR | stderr | if lock.acquire(block, timeout):
332
- 2024-12-26 20:23:29 | ERROR | stderr | KeyboardInterrupt
333
- 2024-12-26 20:23:33 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
334
- 2024-12-26 20:23:34 | INFO | stdout |
335
- 2024-12-26 20:23:34 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
336
- 2024-12-26 20:24:01 | INFO | stdout | Keyboard interruption in main thread... closing server.
337
- 2024-12-26 20:24:01 | ERROR | stderr | Traceback (most recent call last):
338
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
339
- 2024-12-26 20:24:01 | ERROR | stderr | time.sleep(0.1)
340
- 2024-12-26 20:24:01 | ERROR | stderr | KeyboardInterrupt
341
- 2024-12-26 20:24:01 | ERROR | stderr |
342
- 2024-12-26 20:24:01 | ERROR | stderr | During handling of the above exception, another exception occurred:
343
- 2024-12-26 20:24:01 | ERROR | stderr |
344
- 2024-12-26 20:24:01 | ERROR | stderr | Traceback (most recent call last):
345
- 2024-12-26 20:24:01 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
346
- 2024-12-26 20:24:01 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
347
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
348
- 2024-12-26 20:24:01 | ERROR | stderr | self.block_thread()
349
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
350
- 2024-12-26 20:24:01 | ERROR | stderr | self.server.close()
351
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
352
- 2024-12-26 20:24:01 | ERROR | stderr | self.thread.join(timeout=5)
353
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
354
- 2024-12-26 20:24:01 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
355
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
356
- 2024-12-26 20:24:01 | ERROR | stderr | if lock.acquire(block, timeout):
357
- 2024-12-26 20:24:01 | ERROR | stderr | KeyboardInterrupt
358
- 2024-12-26 20:24:01 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
359
- 2024-12-26 20:24:01 | ERROR | stderr | Traceback (most recent call last):
360
- 2024-12-26 20:24:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
361
- 2024-12-26 20:24:01 | ERROR | stderr | lock.acquire()
362
- 2024-12-26 20:24:01 | ERROR | stderr | KeyboardInterrupt:
363
- 2024-12-26 20:25:01 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
364
- 2024-12-26 20:25:01 | INFO | stdout |
365
- 2024-12-26 20:25:01 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
366
- 2024-12-26 20:25:23 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
367
- 2024-12-26 20:25:35 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
368
- 2024-12-26 20:25:42 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
369
- 2024-12-26 20:25:49 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
370
- 2024-12-26 20:26:02 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
371
- 2024-12-26 20:26:08 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
372
- 2024-12-26 20:26:16 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
373
- 2024-12-26 20:26:22 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
374
- 2024-12-26 20:26:33 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
375
- 2024-12-26 20:26:39 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
376
- 2024-12-26 20:26:52 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
377
- 2024-12-26 20:27:01 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
378
- 2024-12-26 20:27:19 | INFO | stdout | Keyboard interruption in main thread... closing server.
379
- 2024-12-26 20:27:19 | ERROR | stderr | Traceback (most recent call last):
380
- 2024-12-26 20:27:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
381
- 2024-12-26 20:27:19 | ERROR | stderr | time.sleep(0.1)
382
- 2024-12-26 20:27:19 | ERROR | stderr | KeyboardInterrupt
383
- 2024-12-26 20:27:19 | ERROR | stderr |
384
- 2024-12-26 20:27:19 | ERROR | stderr | During handling of the above exception, another exception occurred:
385
- 2024-12-26 20:27:19 | ERROR | stderr |
386
- 2024-12-26 20:27:19 | ERROR | stderr | Traceback (most recent call last):
387
- 2024-12-26 20:27:19 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
388
- 2024-12-26 20:27:19 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
389
- 2024-12-26 20:27:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
390
- 2024-12-26 20:27:19 | ERROR | stderr | self.block_thread()
391
- 2024-12-26 20:27:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
392
- 2024-12-26 20:27:19 | ERROR | stderr | self.server.close()
393
- 2024-12-26 20:27:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
394
- 2024-12-26 20:27:19 | ERROR | stderr | self.thread.join(timeout=5)
395
- 2024-12-26 20:27:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
396
- 2024-12-26 20:27:19 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
397
- 2024-12-26 20:27:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
398
- 2024-12-26 20:27:19 | ERROR | stderr | if lock.acquire(block, timeout):
399
- 2024-12-26 20:27:19 | ERROR | stderr | KeyboardInterrupt
400
- 2024-12-26 20:27:20 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
401
- 2024-12-26 20:27:20 | ERROR | stderr | Traceback (most recent call last):
402
- 2024-12-26 20:27:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
403
- 2024-12-26 20:27:20 | ERROR | stderr | lock.acquire()
404
- 2024-12-26 20:27:20 | ERROR | stderr | KeyboardInterrupt:
405
- 2024-12-26 20:27:58 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
406
- 2024-12-26 20:27:58 | INFO | stdout |
407
- 2024-12-26 20:27:58 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
408
- 2024-12-26 20:28:20 | INFO | stdout | Keyboard interruption in main thread... closing server.
409
- 2024-12-26 20:28:20 | ERROR | stderr | Traceback (most recent call last):
410
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
411
- 2024-12-26 20:28:20 | ERROR | stderr | time.sleep(0.1)
412
- 2024-12-26 20:28:20 | ERROR | stderr | KeyboardInterrupt
413
- 2024-12-26 20:28:20 | ERROR | stderr |
414
- 2024-12-26 20:28:20 | ERROR | stderr | During handling of the above exception, another exception occurred:
415
- 2024-12-26 20:28:20 | ERROR | stderr |
416
- 2024-12-26 20:28:20 | ERROR | stderr | Traceback (most recent call last):
417
- 2024-12-26 20:28:20 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
418
- 2024-12-26 20:28:20 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
419
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
420
- 2024-12-26 20:28:20 | ERROR | stderr | self.block_thread()
421
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
422
- 2024-12-26 20:28:20 | ERROR | stderr | self.server.close()
423
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
424
- 2024-12-26 20:28:20 | ERROR | stderr | self.thread.join(timeout=5)
425
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
426
- 2024-12-26 20:28:20 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
427
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
428
- 2024-12-26 20:28:20 | ERROR | stderr | if lock.acquire(block, timeout):
429
- 2024-12-26 20:28:20 | ERROR | stderr | KeyboardInterrupt
430
- 2024-12-26 20:28:20 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
431
- 2024-12-26 20:28:20 | ERROR | stderr | Traceback (most recent call last):
432
- 2024-12-26 20:28:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
433
- 2024-12-26 20:28:20 | ERROR | stderr | lock.acquire()
434
- 2024-12-26 20:28:20 | ERROR | stderr | KeyboardInterrupt:
435
- 2024-12-27 15:58:24 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
436
- 2024-12-27 15:58:24 | INFO | stdout |
437
- 2024-12-27 15:58:24 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
438
- 2024-12-27 15:59:14 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
439
- 2024-12-27 15:59:25 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
440
- 2024-12-27 15:59:34 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
441
- 2024-12-27 15:59:42 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
442
- 2024-12-27 16:00:57 | INFO | stdout | Keyboard interruption in main thread... closing server.
443
- 2024-12-27 16:00:57 | INFO | stdout | Rerunning server... use `close()` to stop if you need to change `launch()` parameters.
444
- 2024-12-27 16:00:57 | INFO | stdout | ----
445
- 2024-12-27 16:00:57 | ERROR | stderr | Traceback (most recent call last):
446
- 2024-12-27 16:00:57 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/app.py", line 65, in <module>
447
- 2024-12-27 16:00:57 | ERROR | stderr | demo.launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
448
- 2024-12-27 16:00:57 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2619, in launch
449
- 2024-12-27 16:00:57 | ERROR | stderr | raise ValueError(
450
- 2024-12-27 16:00:57 | ERROR | stderr | ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your proxy settings to allow access to localhost.
451
- 2024-12-27 16:27:30 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
452
- 2024-12-27 16:27:30 | INFO | stdout |
453
- 2024-12-27 16:27:30 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
454
- 2024-12-27 16:27:39 | ERROR | stderr | Traceback (most recent call last):
455
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
456
- 2024-12-27 16:27:39 | ERROR | stderr | response = await route_utils.call_process_api(
457
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/route_utils.py", line 322, in call_process_api
458
- 2024-12-27 16:27:39 | ERROR | stderr | output = await app.get_blocks().process_api(
459
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2047, in process_api
460
- 2024-12-27 16:27:39 | ERROR | stderr | result = await self.call_function(
461
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 1594, in call_function
462
- 2024-12-27 16:27:39 | ERROR | stderr | prediction = await anyio.to_thread.run_sync( # type: ignore
463
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/to_thread.py", line 56, in run_sync
464
- 2024-12-27 16:27:39 | ERROR | stderr | return await get_async_backend().run_sync_in_worker_thread(
465
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 2505, in run_sync_in_worker_thread
466
- 2024-12-27 16:27:39 | ERROR | stderr | return await future
467
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 1005, in run
468
- 2024-12-27 16:27:39 | ERROR | stderr | result = context.run(func, *args)
469
- 2024-12-27 16:27:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/utils.py", line 869, in wrapper
470
- 2024-12-27 16:27:39 | ERROR | stderr | response = f(*args, **kwargs)
471
- 2024-12-27 16:27:39 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/serve/utils.py", line 168, in refresh_side_by_side_anony
472
- 2024-12-27 16:27:39 | ERROR | stderr | state0, state1, prompt, input_images, output_images_A, output_images_B = models.get_result_of_random_case_anony()
473
- 2024-12-27 16:27:39 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/model/model_manager.py", line 167, in get_result_of_random_case_anony
474
- 2024-12-27 16:27:39 | ERROR | stderr | case_name, case_info = self.choose_case_randomly()
475
- 2024-12-27 16:27:39 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/model/model_manager.py", line 121, in choose_case_randomly
476
- 2024-12-27 16:27:39 | ERROR | stderr | with open(case_meta_path, 'r') as file:
477
- 2024-12-27 16:27:39 | ERROR | stderr | FileNotFoundError: [Errno 2] No such file or directory: 'dataset/object_editing_background_changing_0001/meta.json'
478
- 2024-12-27 16:31:12 | INFO | stdout | Keyboard interruption in main thread... closing server.
479
- 2024-12-27 16:31:12 | ERROR | stderr | Traceback (most recent call last):
480
- 2024-12-27 16:31:12 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
481
- 2024-12-27 16:31:12 | ERROR | stderr | time.sleep(0.1)
482
- 2024-12-27 16:31:12 | ERROR | stderr | KeyboardInterrupt
483
- 2024-12-27 16:31:12 | ERROR | stderr |
484
- 2024-12-27 16:31:12 | ERROR | stderr | During handling of the above exception, another exception occurred:
485
- 2024-12-27 16:31:12 | ERROR | stderr |
486
- 2024-12-27 16:31:12 | ERROR | stderr | Traceback (most recent call last):
487
- 2024-12-27 16:31:12 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/app.py", line 64, in <module>
488
- 2024-12-27 16:31:12 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
489
- 2024-12-27 16:31:12 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
490
- 2024-12-27 16:31:12 | ERROR | stderr | self.block_thread()
491
- 2024-12-27 16:31:12 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
492
- 2024-12-27 16:31:12 | ERROR | stderr | self.server.close()
493
- 2024-12-27 16:31:12 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
494
- 2024-12-27 16:31:12 | ERROR | stderr | self.thread.join(timeout=5)
495
- 2024-12-27 16:31:12 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
496
- 2024-12-27 16:31:12 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
497
- 2024-12-27 16:31:12 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
498
- 2024-12-27 16:31:12 | ERROR | stderr | if lock.acquire(block, timeout):
499
- 2024-12-27 16:31:12 | ERROR | stderr | KeyboardInterrupt
500
- 2024-12-27 16:38:03 | ERROR | stderr | Traceback (most recent call last):
501
- 2024-12-27 16:38:03 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/app.py", line 63, in <module>
502
- 2024-12-27 16:38:03 | ERROR | stderr | demo = build_combine_demo(models, elo_results_file, leaderboard_table_file)
503
- 2024-12-27 16:38:03 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/app.py", line 31, in build_combine_demo
504
- 2024-12-27 16:38:03 | ERROR | stderr | build_leaderboard_tab(elo_results_file['t2i_generation'], leaderboard_table_file['t2i_generation'])
505
- 2024-12-27 16:38:03 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/serve/leaderboard.py", line 176, in build_leaderboard_tab
506
- 2024-12-27 16:38:03 | ERROR | stderr | elo_results = pickle.load(fin)
507
- 2024-12-27 16:38:03 | ERROR | stderr | ModuleNotFoundError: No module named 'plotly'
508
- 2024-12-27 16:38:06 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/arena/lib/python3.10/threading.py'>
509
- 2024-12-27 16:38:06 | ERROR | stderr | Traceback (most recent call last):
510
- 2024-12-27 16:38:06 | ERROR | stderr | File "/opt/anaconda3/envs/arena/lib/python3.10/threading.py", line 1567, in _shutdown
511
- 2024-12-27 16:38:06 | ERROR | stderr | lock.acquire()
512
- 2024-12-27 16:38:06 | ERROR | stderr | KeyboardInterrupt:
513
- 2024-12-27 16:38:25 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
514
- 2024-12-27 16:38:25 | INFO | stdout |
515
- 2024-12-27 16:38:25 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
516
- 2024-12-27 16:38:43 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
517
- 2024-12-27 16:38:49 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
518
- 2024-12-27 16:39:09 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
519
- 2024-12-27 16:39:24 | INFO | stdout | Keyboard interruption in main thread... closing server.
520
- 2024-12-27 16:39:25 | INFO | stdout | Rerunning server... use `close()` to stop if you need to change `launch()` parameters.
521
- 2024-12-27 16:39:25 | INFO | stdout | ----
522
- 2024-12-27 16:39:25 | ERROR | stderr | Traceback (most recent call last):
523
- 2024-12-27 16:39:25 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/huggingface/IDEA-Bench-Arena/app.py", line 65, in <module>
524
- 2024-12-27 16:39:25 | ERROR | stderr | demo.launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
525
- 2024-12-27 16:39:25 | ERROR | stderr | File "/opt/anaconda3/envs/arena/lib/python3.10/site-packages/gradio/blocks.py", line 2619, in launch
526
- 2024-12-27 16:39:25 | ERROR | stderr | raise ValueError(
527
- 2024-12-27 16:39:25 | ERROR | stderr | ValueError: When localhost is not accessible, a shareable link must be created. Please set share=True or check your proxy settings to allow access to localhost.
528
- 2024-12-27 16:39:25 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/arena/lib/python3.10/threading.py'>
529
- 2024-12-27 16:39:25 | ERROR | stderr | Traceback (most recent call last):
530
- 2024-12-27 16:39:25 | ERROR | stderr | File "/opt/anaconda3/envs/arena/lib/python3.10/threading.py", line 1567, in _shutdown
531
- 2024-12-27 16:39:25 | ERROR | stderr | lock.acquire()
532
- 2024-12-27 16:39:25 | ERROR | stderr | KeyboardInterrupt:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
logs/vote_log/gr_web_image_generation_multi.log.2024-12-25 DELETED
@@ -1,797 +0,0 @@
1
- 2024-12-24 14:01:42 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
2
- 2024-12-24 14:01:42 | INFO | stdout |
3
- 2024-12-24 14:01:42 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
4
- 2024-12-24 14:02:18 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
5
- 2024-12-24 14:02:18 | ERROR | stderr | Traceback (most recent call last):
6
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
7
- 2024-12-24 14:02:18 | ERROR | stderr | response = await route_utils.call_process_api(
8
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/route_utils.py", line 322, in call_process_api
9
- 2024-12-24 14:02:18 | ERROR | stderr | output = await app.get_blocks().process_api(
10
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2047, in process_api
11
- 2024-12-24 14:02:18 | ERROR | stderr | result = await self.call_function(
12
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 1594, in call_function
13
- 2024-12-24 14:02:18 | ERROR | stderr | prediction = await anyio.to_thread.run_sync( # type: ignore
14
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/to_thread.py", line 56, in run_sync
15
- 2024-12-24 14:02:18 | ERROR | stderr | return await get_async_backend().run_sync_in_worker_thread(
16
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 2505, in run_sync_in_worker_thread
17
- 2024-12-24 14:02:18 | ERROR | stderr | return await future
18
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 1005, in run
19
- 2024-12-24 14:02:18 | ERROR | stderr | result = context.run(func, *args)
20
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/utils.py", line 869, in wrapper
21
- 2024-12-24 14:02:18 | ERROR | stderr | response = f(*args, **kwargs)
22
- 2024-12-24 14:02:18 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 53, in rightvote_last_response_igm
23
- 2024-12-24 14:02:18 | ERROR | stderr | vote_last_response_igm(
24
- 2024-12-24 14:02:18 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 32, in vote_last_response_igm
25
- 2024-12-24 14:02:18 | ERROR | stderr | append_json_item_on_log_server(data, get_conv_log_filename())
26
- 2024-12-24 14:02:18 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/utils.py", line 171, in append_json_item_on_log_server
27
- 2024-12-24 14:02:18 | ERROR | stderr | response = requests.post(url, data={'json_str': json_item, 'file_name': log_file})
28
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/api.py", line 115, in post
29
- 2024-12-24 14:02:18 | ERROR | stderr | return request("post", url, data=data, json=json, **kwargs)
30
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/api.py", line 59, in request
31
- 2024-12-24 14:02:18 | ERROR | stderr | return session.request(method=method, url=url, **kwargs)
32
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/sessions.py", line 575, in request
33
- 2024-12-24 14:02:18 | ERROR | stderr | prep = self.prepare_request(req)
34
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/sessions.py", line 484, in prepare_request
35
- 2024-12-24 14:02:18 | ERROR | stderr | p.prepare(
36
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/models.py", line 367, in prepare
37
- 2024-12-24 14:02:18 | ERROR | stderr | self.prepare_url(url, params)
38
- 2024-12-24 14:02:18 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/models.py", line 438, in prepare_url
39
- 2024-12-24 14:02:18 | ERROR | stderr | raise MissingSchema(
40
- 2024-12-24 14:02:18 | ERROR | stderr | requests.exceptions.MissingSchema: Invalid URL '/logs/append_json': No scheme supplied. Perhaps you meant https:///logs/append_json?
41
- 2024-12-24 14:06:36 | INFO | stdout | Keyboard interruption in main thread... closing server.
42
- 2024-12-24 14:06:36 | ERROR | stderr | Traceback (most recent call last):
43
- 2024-12-24 14:06:36 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
44
- 2024-12-24 14:06:36 | ERROR | stderr | time.sleep(0.1)
45
- 2024-12-24 14:06:36 | ERROR | stderr | KeyboardInterrupt
46
- 2024-12-24 14:06:36 | ERROR | stderr |
47
- 2024-12-24 14:06:36 | ERROR | stderr | During handling of the above exception, another exception occurred:
48
- 2024-12-24 14:06:36 | ERROR | stderr |
49
- 2024-12-24 14:06:36 | ERROR | stderr | Traceback (most recent call last):
50
- 2024-12-24 14:06:36 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
51
- 2024-12-24 14:06:36 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
52
- 2024-12-24 14:06:36 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
53
- 2024-12-24 14:06:36 | ERROR | stderr | self.block_thread()
54
- 2024-12-24 14:06:36 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
55
- 2024-12-24 14:06:36 | ERROR | stderr | self.server.close()
56
- 2024-12-24 14:06:36 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
57
- 2024-12-24 14:06:36 | ERROR | stderr | self.thread.join(timeout=5)
58
- 2024-12-24 14:06:36 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
59
- 2024-12-24 14:06:36 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
60
- 2024-12-24 14:06:36 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
61
- 2024-12-24 14:06:36 | ERROR | stderr | if lock.acquire(block, timeout):
62
- 2024-12-24 14:06:36 | ERROR | stderr | KeyboardInterrupt
63
- 2024-12-24 14:06:41 | ERROR | stderr | Traceback (most recent call last):
64
- 2024-12-24 14:06:41 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 77, in <module>
65
- 2024-12-24 14:06:41 | ERROR | stderr | demo = build_combine_demo(models, elo_results_file, leaderboard_table_file)
66
- 2024-12-24 14:06:41 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 27, in build_combine_demo
67
- 2024-12-24 14:06:41 | ERROR | stderr | build_side_by_side_ui_named(models)
68
- 2024-12-24 14:06:41 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/gradio_web.py", line 226, in build_side_by_side_ui_named
69
- 2024-12-24 14:06:41 | ERROR | stderr | leftvote_btn = gr.Button(
70
- 2024-12-24 14:06:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/component_meta.py", line 179, in wrapper
71
- 2024-12-24 14:06:41 | ERROR | stderr | return fn(self, **kwargs)
72
- 2024-12-24 14:06:41 | ERROR | stderr | TypeError: Button.__init__() got an unexpected keyword argument 'style'
73
- 2024-12-24 14:13:32 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
74
- 2024-12-24 14:13:32 | INFO | stdout |
75
- 2024-12-24 14:13:32 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
76
- 2024-12-24 14:14:04 | INFO | stdout | Keyboard interruption in main thread... closing server.
77
- 2024-12-24 14:14:04 | ERROR | stderr | Traceback (most recent call last):
78
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
79
- 2024-12-24 14:14:04 | ERROR | stderr | time.sleep(0.1)
80
- 2024-12-24 14:14:04 | ERROR | stderr | KeyboardInterrupt
81
- 2024-12-24 14:14:04 | ERROR | stderr |
82
- 2024-12-24 14:14:04 | ERROR | stderr | During handling of the above exception, another exception occurred:
83
- 2024-12-24 14:14:04 | ERROR | stderr |
84
- 2024-12-24 14:14:04 | ERROR | stderr | Traceback (most recent call last):
85
- 2024-12-24 14:14:04 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
86
- 2024-12-24 14:14:04 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
87
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
88
- 2024-12-24 14:14:04 | ERROR | stderr | self.block_thread()
89
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
90
- 2024-12-24 14:14:04 | ERROR | stderr | self.server.close()
91
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
92
- 2024-12-24 14:14:04 | ERROR | stderr | self.thread.join(timeout=5)
93
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
94
- 2024-12-24 14:14:04 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
95
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
96
- 2024-12-24 14:14:04 | ERROR | stderr | if lock.acquire(block, timeout):
97
- 2024-12-24 14:14:04 | ERROR | stderr | KeyboardInterrupt
98
- 2024-12-24 14:14:04 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
99
- 2024-12-24 14:14:04 | ERROR | stderr | Traceback (most recent call last):
100
- 2024-12-24 14:14:04 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
101
- 2024-12-24 14:14:04 | ERROR | stderr | lock.acquire()
102
- 2024-12-24 14:14:04 | ERROR | stderr | KeyboardInterrupt:
103
- 2024-12-24 14:14:09 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
104
- 2024-12-24 14:14:09 | INFO | stdout |
105
- 2024-12-24 14:14:09 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
106
- 2024-12-24 14:16:39 | INFO | stdout | Keyboard interruption in main thread... closing server.
107
- 2024-12-24 14:16:39 | ERROR | stderr | Traceback (most recent call last):
108
- 2024-12-24 14:16:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
109
- 2024-12-24 14:16:39 | ERROR | stderr | time.sleep(0.1)
110
- 2024-12-24 14:16:39 | ERROR | stderr | KeyboardInterrupt
111
- 2024-12-24 14:16:39 | ERROR | stderr |
112
- 2024-12-24 14:16:39 | ERROR | stderr | During handling of the above exception, another exception occurred:
113
- 2024-12-24 14:16:39 | ERROR | stderr |
114
- 2024-12-24 14:16:39 | ERROR | stderr | Traceback (most recent call last):
115
- 2024-12-24 14:16:39 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
116
- 2024-12-24 14:16:39 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
117
- 2024-12-24 14:16:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
118
- 2024-12-24 14:16:39 | ERROR | stderr | self.block_thread()
119
- 2024-12-24 14:16:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
120
- 2024-12-24 14:16:39 | ERROR | stderr | self.server.close()
121
- 2024-12-24 14:16:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
122
- 2024-12-24 14:16:39 | ERROR | stderr | self.thread.join(timeout=5)
123
- 2024-12-24 14:16:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
124
- 2024-12-24 14:16:39 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
125
- 2024-12-24 14:16:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
126
- 2024-12-24 14:16:39 | ERROR | stderr | if lock.acquire(block, timeout):
127
- 2024-12-24 14:16:39 | ERROR | stderr | KeyboardInterrupt
128
- 2024-12-24 14:16:44 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
129
- 2024-12-24 14:16:44 | INFO | stdout |
130
- 2024-12-24 14:16:44 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
131
- 2024-12-24 14:17:37 | INFO | stdout | Keyboard interruption in main thread... closing server.
132
- 2024-12-24 14:17:38 | ERROR | stderr | Traceback (most recent call last):
133
- 2024-12-24 14:17:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
134
- 2024-12-24 14:17:38 | ERROR | stderr | time.sleep(0.1)
135
- 2024-12-24 14:17:38 | ERROR | stderr | KeyboardInterrupt
136
- 2024-12-24 14:17:38 | ERROR | stderr |
137
- 2024-12-24 14:17:38 | ERROR | stderr | During handling of the above exception, another exception occurred:
138
- 2024-12-24 14:17:38 | ERROR | stderr |
139
- 2024-12-24 14:17:38 | ERROR | stderr | Traceback (most recent call last):
140
- 2024-12-24 14:17:38 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
141
- 2024-12-24 14:17:38 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
142
- 2024-12-24 14:17:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
143
- 2024-12-24 14:17:38 | ERROR | stderr | self.block_thread()
144
- 2024-12-24 14:17:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
145
- 2024-12-24 14:17:38 | ERROR | stderr | self.server.close()
146
- 2024-12-24 14:17:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
147
- 2024-12-24 14:17:38 | ERROR | stderr | self.thread.join(timeout=5)
148
- 2024-12-24 14:17:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
149
- 2024-12-24 14:17:38 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
150
- 2024-12-24 14:17:38 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
151
- 2024-12-24 14:17:38 | ERROR | stderr | if lock.acquire(block, timeout):
152
- 2024-12-24 14:17:38 | ERROR | stderr | KeyboardInterrupt
153
- 2024-12-24 14:17:39 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
154
- 2024-12-24 14:17:39 | ERROR | stderr | Traceback (most recent call last):
155
- 2024-12-24 14:17:39 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
156
- 2024-12-24 14:17:39 | ERROR | stderr | lock.acquire()
157
- 2024-12-24 14:17:39 | ERROR | stderr | KeyboardInterrupt:
158
- 2024-12-24 14:17:44 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
159
- 2024-12-24 14:17:44 | INFO | stdout |
160
- 2024-12-24 14:17:44 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
161
- 2024-12-24 14:17:54 | INFO | stdout | Keyboard interruption in main thread... closing server.
162
- 2024-12-24 14:17:54 | ERROR | stderr | Traceback (most recent call last):
163
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
164
- 2024-12-24 14:17:54 | ERROR | stderr | time.sleep(0.1)
165
- 2024-12-24 14:17:54 | ERROR | stderr | KeyboardInterrupt
166
- 2024-12-24 14:17:54 | ERROR | stderr |
167
- 2024-12-24 14:17:54 | ERROR | stderr | During handling of the above exception, another exception occurred:
168
- 2024-12-24 14:17:54 | ERROR | stderr |
169
- 2024-12-24 14:17:54 | ERROR | stderr | Traceback (most recent call last):
170
- 2024-12-24 14:17:54 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
171
- 2024-12-24 14:17:54 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
172
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
173
- 2024-12-24 14:17:54 | ERROR | stderr | self.block_thread()
174
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
175
- 2024-12-24 14:17:54 | ERROR | stderr | self.server.close()
176
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
177
- 2024-12-24 14:17:54 | ERROR | stderr | self.thread.join(timeout=5)
178
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
179
- 2024-12-24 14:17:54 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
180
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
181
- 2024-12-24 14:17:54 | ERROR | stderr | if lock.acquire(block, timeout):
182
- 2024-12-24 14:17:54 | ERROR | stderr | KeyboardInterrupt
183
- 2024-12-24 14:17:54 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
184
- 2024-12-24 14:17:54 | ERROR | stderr | Traceback (most recent call last):
185
- 2024-12-24 14:17:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
186
- 2024-12-24 14:17:54 | ERROR | stderr | lock.acquire()
187
- 2024-12-24 14:17:54 | ERROR | stderr | KeyboardInterrupt:
188
- 2024-12-24 14:18:02 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
189
- 2024-12-24 14:18:02 | INFO | stdout |
190
- 2024-12-24 14:18:02 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
191
- 2024-12-24 14:19:08 | INFO | stdout | Keyboard interruption in main thread... closing server.
192
- 2024-12-24 14:19:09 | ERROR | stderr | Traceback (most recent call last):
193
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
194
- 2024-12-24 14:19:09 | ERROR | stderr | time.sleep(0.1)
195
- 2024-12-24 14:19:09 | ERROR | stderr | KeyboardInterrupt
196
- 2024-12-24 14:19:09 | ERROR | stderr |
197
- 2024-12-24 14:19:09 | ERROR | stderr | During handling of the above exception, another exception occurred:
198
- 2024-12-24 14:19:09 | ERROR | stderr |
199
- 2024-12-24 14:19:09 | ERROR | stderr | Traceback (most recent call last):
200
- 2024-12-24 14:19:09 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
201
- 2024-12-24 14:19:09 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
202
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
203
- 2024-12-24 14:19:09 | ERROR | stderr | self.block_thread()
204
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
205
- 2024-12-24 14:19:09 | ERROR | stderr | self.server.close()
206
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
207
- 2024-12-24 14:19:09 | ERROR | stderr | self.thread.join(timeout=5)
208
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
209
- 2024-12-24 14:19:09 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
210
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
211
- 2024-12-24 14:19:09 | ERROR | stderr | if lock.acquire(block, timeout):
212
- 2024-12-24 14:19:09 | ERROR | stderr | KeyboardInterrupt
213
- 2024-12-24 14:19:09 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
214
- 2024-12-24 14:19:09 | ERROR | stderr | Traceback (most recent call last):
215
- 2024-12-24 14:19:09 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
216
- 2024-12-24 14:19:09 | ERROR | stderr | lock.acquire()
217
- 2024-12-24 14:19:09 | ERROR | stderr | KeyboardInterrupt:
218
- 2024-12-24 14:19:14 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
219
- 2024-12-24 14:19:14 | INFO | stdout |
220
- 2024-12-24 14:19:14 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
221
- 2024-12-24 14:19:25 | INFO | stdout | Keyboard interruption in main thread... closing server.
222
- 2024-12-24 14:19:25 | ERROR | stderr | Traceback (most recent call last):
223
- 2024-12-24 14:19:25 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
224
- 2024-12-24 14:19:25 | ERROR | stderr | time.sleep(0.1)
225
- 2024-12-24 14:19:25 | ERROR | stderr | KeyboardInterrupt
226
- 2024-12-24 14:19:25 | ERROR | stderr |
227
- 2024-12-24 14:19:25 | ERROR | stderr | During handling of the above exception, another exception occurred:
228
- 2024-12-24 14:19:25 | ERROR | stderr |
229
- 2024-12-24 14:19:25 | ERROR | stderr | Traceback (most recent call last):
230
- 2024-12-24 14:19:25 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
231
- 2024-12-24 14:19:25 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
232
- 2024-12-24 14:19:25 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
233
- 2024-12-24 14:19:25 | ERROR | stderr | self.block_thread()
234
- 2024-12-24 14:19:25 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
235
- 2024-12-24 14:19:25 | ERROR | stderr | self.server.close()
236
- 2024-12-24 14:19:25 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
237
- 2024-12-24 14:19:25 | ERROR | stderr | self.thread.join(timeout=5)
238
- 2024-12-24 14:19:25 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
239
- 2024-12-24 14:19:25 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
240
- 2024-12-24 14:19:25 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
241
- 2024-12-24 14:19:25 | ERROR | stderr | if lock.acquire(block, timeout):
242
- 2024-12-24 14:19:25 | ERROR | stderr | KeyboardInterrupt
243
- 2024-12-24 14:19:26 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
244
- 2024-12-24 14:19:26 | ERROR | stderr | Traceback (most recent call last):
245
- 2024-12-24 14:19:26 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
246
- 2024-12-24 14:19:26 | ERROR | stderr | lock.acquire()
247
- 2024-12-24 14:19:26 | ERROR | stderr | KeyboardInterrupt:
248
- 2024-12-24 14:19:30 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
249
- 2024-12-24 14:19:30 | INFO | stdout |
250
- 2024-12-24 14:19:30 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
251
- 2024-12-24 14:19:53 | INFO | stdout | Keyboard interruption in main thread... closing server.
252
- 2024-12-24 14:19:54 | ERROR | stderr | Traceback (most recent call last):
253
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
254
- 2024-12-24 14:19:54 | ERROR | stderr | time.sleep(0.1)
255
- 2024-12-24 14:19:54 | ERROR | stderr | KeyboardInterrupt
256
- 2024-12-24 14:19:54 | ERROR | stderr |
257
- 2024-12-24 14:19:54 | ERROR | stderr | During handling of the above exception, another exception occurred:
258
- 2024-12-24 14:19:54 | ERROR | stderr |
259
- 2024-12-24 14:19:54 | ERROR | stderr | Traceback (most recent call last):
260
- 2024-12-24 14:19:54 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
261
- 2024-12-24 14:19:54 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
262
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
263
- 2024-12-24 14:19:54 | ERROR | stderr | self.block_thread()
264
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
265
- 2024-12-24 14:19:54 | ERROR | stderr | self.server.close()
266
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
267
- 2024-12-24 14:19:54 | ERROR | stderr | self.thread.join(timeout=5)
268
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
269
- 2024-12-24 14:19:54 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
270
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
271
- 2024-12-24 14:19:54 | ERROR | stderr | if lock.acquire(block, timeout):
272
- 2024-12-24 14:19:54 | ERROR | stderr | KeyboardInterrupt
273
- 2024-12-24 14:19:54 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
274
- 2024-12-24 14:19:54 | ERROR | stderr | Traceback (most recent call last):
275
- 2024-12-24 14:19:54 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
276
- 2024-12-24 14:19:54 | ERROR | stderr | lock.acquire()
277
- 2024-12-24 14:19:54 | ERROR | stderr | KeyboardInterrupt:
278
- 2024-12-24 14:20:25 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
279
- 2024-12-24 14:20:25 | INFO | stdout |
280
- 2024-12-24 14:20:25 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
281
- 2024-12-24 14:25:19 | INFO | stdout | Keyboard interruption in main thread... closing server.
282
- 2024-12-24 14:25:19 | ERROR | stderr | Traceback (most recent call last):
283
- 2024-12-24 14:25:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
284
- 2024-12-24 14:25:19 | ERROR | stderr | time.sleep(0.1)
285
- 2024-12-24 14:25:19 | ERROR | stderr | KeyboardInterrupt
286
- 2024-12-24 14:25:19 | ERROR | stderr |
287
- 2024-12-24 14:25:19 | ERROR | stderr | During handling of the above exception, another exception occurred:
288
- 2024-12-24 14:25:19 | ERROR | stderr |
289
- 2024-12-24 14:25:19 | ERROR | stderr | Traceback (most recent call last):
290
- 2024-12-24 14:25:19 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
291
- 2024-12-24 14:25:19 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
292
- 2024-12-24 14:25:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
293
- 2024-12-24 14:25:19 | ERROR | stderr | self.block_thread()
294
- 2024-12-24 14:25:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
295
- 2024-12-24 14:25:19 | ERROR | stderr | self.server.close()
296
- 2024-12-24 14:25:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
297
- 2024-12-24 14:25:19 | ERROR | stderr | self.thread.join(timeout=5)
298
- 2024-12-24 14:25:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
299
- 2024-12-24 14:25:19 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
300
- 2024-12-24 14:25:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
301
- 2024-12-24 14:25:19 | ERROR | stderr | if lock.acquire(block, timeout):
302
- 2024-12-24 14:25:19 | ERROR | stderr | KeyboardInterrupt
303
- 2024-12-24 14:28:13 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
304
- 2024-12-24 14:28:14 | INFO | stdout |
305
- 2024-12-24 14:28:14 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
306
- 2024-12-24 14:33:40 | INFO | stdout | Keyboard interruption in main thread... closing server.
307
- 2024-12-24 14:33:40 | ERROR | stderr | Traceback (most recent call last):
308
- 2024-12-24 14:33:40 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
309
- 2024-12-24 14:33:40 | ERROR | stderr | time.sleep(0.1)
310
- 2024-12-24 14:33:40 | ERROR | stderr | KeyboardInterrupt
311
- 2024-12-24 14:33:40 | ERROR | stderr |
312
- 2024-12-24 14:33:40 | ERROR | stderr | During handling of the above exception, another exception occurred:
313
- 2024-12-24 14:33:40 | ERROR | stderr |
314
- 2024-12-24 14:33:40 | ERROR | stderr | Traceback (most recent call last):
315
- 2024-12-24 14:33:40 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
316
- 2024-12-24 14:33:40 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
317
- 2024-12-24 14:33:40 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
318
- 2024-12-24 14:33:40 | ERROR | stderr | self.block_thread()
319
- 2024-12-24 14:33:40 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
320
- 2024-12-24 14:33:40 | ERROR | stderr | self.server.close()
321
- 2024-12-24 14:33:40 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
322
- 2024-12-24 14:33:40 | ERROR | stderr | self.thread.join(timeout=5)
323
- 2024-12-24 14:33:40 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
324
- 2024-12-24 14:33:40 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
325
- 2024-12-24 14:33:40 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
326
- 2024-12-24 14:33:40 | ERROR | stderr | if lock.acquire(block, timeout):
327
- 2024-12-24 14:33:40 | ERROR | stderr | KeyboardInterrupt
328
- 2024-12-24 14:33:45 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
329
- 2024-12-24 14:33:45 | INFO | stdout |
330
- 2024-12-24 14:33:45 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
331
- 2024-12-24 14:34:55 | INFO | stdout | Keyboard interruption in main thread... closing server.
332
- 2024-12-24 14:34:56 | ERROR | stderr | Traceback (most recent call last):
333
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
334
- 2024-12-24 14:34:56 | ERROR | stderr | time.sleep(0.1)
335
- 2024-12-24 14:34:56 | ERROR | stderr | KeyboardInterrupt
336
- 2024-12-24 14:34:56 | ERROR | stderr |
337
- 2024-12-24 14:34:56 | ERROR | stderr | During handling of the above exception, another exception occurred:
338
- 2024-12-24 14:34:56 | ERROR | stderr |
339
- 2024-12-24 14:34:56 | ERROR | stderr | Traceback (most recent call last):
340
- 2024-12-24 14:34:56 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
341
- 2024-12-24 14:34:56 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
342
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
343
- 2024-12-24 14:34:56 | ERROR | stderr | self.block_thread()
344
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
345
- 2024-12-24 14:34:56 | ERROR | stderr | self.server.close()
346
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
347
- 2024-12-24 14:34:56 | ERROR | stderr | self.thread.join(timeout=5)
348
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
349
- 2024-12-24 14:34:56 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
350
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
351
- 2024-12-24 14:34:56 | ERROR | stderr | if lock.acquire(block, timeout):
352
- 2024-12-24 14:34:56 | ERROR | stderr | KeyboardInterrupt
353
- 2024-12-24 14:34:56 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
354
- 2024-12-24 14:34:56 | ERROR | stderr | Traceback (most recent call last):
355
- 2024-12-24 14:34:56 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
356
- 2024-12-24 14:34:56 | ERROR | stderr | lock.acquire()
357
- 2024-12-24 14:34:56 | ERROR | stderr | KeyboardInterrupt:
358
- 2024-12-24 14:35:01 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
359
- 2024-12-24 14:35:01 | INFO | stdout |
360
- 2024-12-24 14:35:01 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
361
- 2024-12-24 14:35:20 | INFO | stdout | Keyboard interruption in main thread... closing server.
362
- 2024-12-24 14:35:20 | ERROR | stderr | Traceback (most recent call last):
363
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
364
- 2024-12-24 14:35:20 | ERROR | stderr | time.sleep(0.1)
365
- 2024-12-24 14:35:20 | ERROR | stderr | KeyboardInterrupt
366
- 2024-12-24 14:35:20 | ERROR | stderr |
367
- 2024-12-24 14:35:20 | ERROR | stderr | During handling of the above exception, another exception occurred:
368
- 2024-12-24 14:35:20 | ERROR | stderr |
369
- 2024-12-24 14:35:20 | ERROR | stderr | Traceback (most recent call last):
370
- 2024-12-24 14:35:20 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
371
- 2024-12-24 14:35:20 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
372
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
373
- 2024-12-24 14:35:20 | ERROR | stderr | self.block_thread()
374
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
375
- 2024-12-24 14:35:20 | ERROR | stderr | self.server.close()
376
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
377
- 2024-12-24 14:35:20 | ERROR | stderr | self.thread.join(timeout=5)
378
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
379
- 2024-12-24 14:35:20 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
380
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
381
- 2024-12-24 14:35:20 | ERROR | stderr | if lock.acquire(block, timeout):
382
- 2024-12-24 14:35:20 | ERROR | stderr | KeyboardInterrupt
383
- 2024-12-24 14:35:20 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
384
- 2024-12-24 14:35:20 | ERROR | stderr | Traceback (most recent call last):
385
- 2024-12-24 14:35:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
386
- 2024-12-24 14:35:20 | ERROR | stderr | lock.acquire()
387
- 2024-12-24 14:35:20 | ERROR | stderr | KeyboardInterrupt:
388
- 2024-12-24 14:35:26 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
389
- 2024-12-24 14:35:26 | INFO | stdout |
390
- 2024-12-24 14:35:26 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
391
- 2024-12-24 14:35:34 | INFO | stdout | Keyboard interruption in main thread... closing server.
392
- 2024-12-24 14:35:34 | ERROR | stderr | Traceback (most recent call last):
393
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
394
- 2024-12-24 14:35:34 | ERROR | stderr | time.sleep(0.1)
395
- 2024-12-24 14:35:34 | ERROR | stderr | KeyboardInterrupt
396
- 2024-12-24 14:35:34 | ERROR | stderr |
397
- 2024-12-24 14:35:34 | ERROR | stderr | During handling of the above exception, another exception occurred:
398
- 2024-12-24 14:35:34 | ERROR | stderr |
399
- 2024-12-24 14:35:34 | ERROR | stderr | Traceback (most recent call last):
400
- 2024-12-24 14:35:34 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
401
- 2024-12-24 14:35:34 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
402
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
403
- 2024-12-24 14:35:34 | ERROR | stderr | self.block_thread()
404
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
405
- 2024-12-24 14:35:34 | ERROR | stderr | self.server.close()
406
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
407
- 2024-12-24 14:35:34 | ERROR | stderr | self.thread.join(timeout=5)
408
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
409
- 2024-12-24 14:35:34 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
410
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
411
- 2024-12-24 14:35:34 | ERROR | stderr | if lock.acquire(block, timeout):
412
- 2024-12-24 14:35:34 | ERROR | stderr | KeyboardInterrupt
413
- 2024-12-24 14:35:34 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
414
- 2024-12-24 14:35:34 | ERROR | stderr | Traceback (most recent call last):
415
- 2024-12-24 14:35:34 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
416
- 2024-12-24 14:35:34 | ERROR | stderr | lock.acquire()
417
- 2024-12-24 14:35:34 | ERROR | stderr | KeyboardInterrupt:
418
- 2024-12-24 14:35:39 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
419
- 2024-12-24 14:35:39 | INFO | stdout |
420
- 2024-12-24 14:35:39 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
421
- 2024-12-24 14:36:28 | INFO | stdout | Keyboard interruption in main thread... closing server.
422
- 2024-12-24 14:36:28 | ERROR | stderr | Traceback (most recent call last):
423
- 2024-12-24 14:36:28 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
424
- 2024-12-24 14:36:28 | ERROR | stderr | time.sleep(0.1)
425
- 2024-12-24 14:36:28 | ERROR | stderr | KeyboardInterrupt
426
- 2024-12-24 14:36:28 | ERROR | stderr |
427
- 2024-12-24 14:36:28 | ERROR | stderr | During handling of the above exception, another exception occurred:
428
- 2024-12-24 14:36:28 | ERROR | stderr |
429
- 2024-12-24 14:36:28 | ERROR | stderr | Traceback (most recent call last):
430
- 2024-12-24 14:36:28 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
431
- 2024-12-24 14:36:28 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
432
- 2024-12-24 14:36:28 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
433
- 2024-12-24 14:36:28 | ERROR | stderr | self.block_thread()
434
- 2024-12-24 14:36:28 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
435
- 2024-12-24 14:36:28 | ERROR | stderr | self.server.close()
436
- 2024-12-24 14:36:28 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
437
- 2024-12-24 14:36:28 | ERROR | stderr | self.thread.join(timeout=5)
438
- 2024-12-24 14:36:28 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
439
- 2024-12-24 14:36:28 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
440
- 2024-12-24 14:36:28 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
441
- 2024-12-24 14:36:28 | ERROR | stderr | if lock.acquire(block, timeout):
442
- 2024-12-24 14:36:28 | ERROR | stderr | KeyboardInterrupt
443
- 2024-12-24 14:36:29 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
444
- 2024-12-24 14:36:29 | ERROR | stderr | Traceback (most recent call last):
445
- 2024-12-24 14:36:29 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
446
- 2024-12-24 14:36:29 | ERROR | stderr | lock.acquire()
447
- 2024-12-24 14:36:29 | ERROR | stderr | KeyboardInterrupt:
448
- 2024-12-24 14:36:33 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
449
- 2024-12-24 14:36:33 | INFO | stdout |
450
- 2024-12-24 14:36:33 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
451
- 2024-12-24 14:36:41 | INFO | stdout | Keyboard interruption in main thread... closing server.
452
- 2024-12-24 14:36:41 | ERROR | stderr | Traceback (most recent call last):
453
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
454
- 2024-12-24 14:36:41 | ERROR | stderr | time.sleep(0.1)
455
- 2024-12-24 14:36:41 | ERROR | stderr | KeyboardInterrupt
456
- 2024-12-24 14:36:41 | ERROR | stderr |
457
- 2024-12-24 14:36:41 | ERROR | stderr | During handling of the above exception, another exception occurred:
458
- 2024-12-24 14:36:41 | ERROR | stderr |
459
- 2024-12-24 14:36:41 | ERROR | stderr | Traceback (most recent call last):
460
- 2024-12-24 14:36:41 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
461
- 2024-12-24 14:36:41 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
462
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
463
- 2024-12-24 14:36:41 | ERROR | stderr | self.block_thread()
464
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
465
- 2024-12-24 14:36:41 | ERROR | stderr | self.server.close()
466
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
467
- 2024-12-24 14:36:41 | ERROR | stderr | self.thread.join(timeout=5)
468
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
469
- 2024-12-24 14:36:41 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
470
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
471
- 2024-12-24 14:36:41 | ERROR | stderr | if lock.acquire(block, timeout):
472
- 2024-12-24 14:36:41 | ERROR | stderr | KeyboardInterrupt
473
- 2024-12-24 14:36:41 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
474
- 2024-12-24 14:36:41 | ERROR | stderr | Traceback (most recent call last):
475
- 2024-12-24 14:36:41 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
476
- 2024-12-24 14:36:41 | ERROR | stderr | lock.acquire()
477
- 2024-12-24 14:36:41 | ERROR | stderr | KeyboardInterrupt:
478
- 2024-12-24 14:37:47 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
479
- 2024-12-24 14:37:47 | INFO | stdout |
480
- 2024-12-24 14:37:47 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
481
- 2024-12-24 14:40:00 | INFO | stdout | Keyboard interruption in main thread... closing server.
482
- 2024-12-24 14:40:00 | ERROR | stderr | Traceback (most recent call last):
483
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
484
- 2024-12-24 14:40:00 | ERROR | stderr | time.sleep(0.1)
485
- 2024-12-24 14:40:00 | ERROR | stderr | KeyboardInterrupt
486
- 2024-12-24 14:40:00 | ERROR | stderr |
487
- 2024-12-24 14:40:00 | ERROR | stderr | During handling of the above exception, another exception occurred:
488
- 2024-12-24 14:40:00 | ERROR | stderr |
489
- 2024-12-24 14:40:00 | ERROR | stderr | Traceback (most recent call last):
490
- 2024-12-24 14:40:00 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
491
- 2024-12-24 14:40:00 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
492
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
493
- 2024-12-24 14:40:00 | ERROR | stderr | self.block_thread()
494
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
495
- 2024-12-24 14:40:00 | ERROR | stderr | self.server.close()
496
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
497
- 2024-12-24 14:40:00 | ERROR | stderr | self.thread.join(timeout=5)
498
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
499
- 2024-12-24 14:40:00 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
500
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
501
- 2024-12-24 14:40:00 | ERROR | stderr | if lock.acquire(block, timeout):
502
- 2024-12-24 14:40:00 | ERROR | stderr | KeyboardInterrupt
503
- 2024-12-24 14:40:00 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
504
- 2024-12-24 14:40:00 | ERROR | stderr | Traceback (most recent call last):
505
- 2024-12-24 14:40:00 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
506
- 2024-12-24 14:40:00 | ERROR | stderr | lock.acquire()
507
- 2024-12-24 14:40:00 | ERROR | stderr | KeyboardInterrupt:
508
- 2024-12-24 14:40:05 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
509
- 2024-12-24 14:40:05 | INFO | stdout |
510
- 2024-12-24 14:40:05 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
511
- 2024-12-24 14:40:16 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
512
- 2024-12-24 14:40:16 | ERROR | stderr | Traceback (most recent call last):
513
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
514
- 2024-12-24 14:40:16 | ERROR | stderr | response = await route_utils.call_process_api(
515
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/route_utils.py", line 322, in call_process_api
516
- 2024-12-24 14:40:16 | ERROR | stderr | output = await app.get_blocks().process_api(
517
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2047, in process_api
518
- 2024-12-24 14:40:16 | ERROR | stderr | result = await self.call_function(
519
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 1594, in call_function
520
- 2024-12-24 14:40:16 | ERROR | stderr | prediction = await anyio.to_thread.run_sync( # type: ignore
521
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/to_thread.py", line 56, in run_sync
522
- 2024-12-24 14:40:16 | ERROR | stderr | return await get_async_backend().run_sync_in_worker_thread(
523
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 2505, in run_sync_in_worker_thread
524
- 2024-12-24 14:40:16 | ERROR | stderr | return await future
525
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 1005, in run
526
- 2024-12-24 14:40:16 | ERROR | stderr | result = context.run(func, *args)
527
- 2024-12-24 14:40:16 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/utils.py", line 869, in wrapper
528
- 2024-12-24 14:40:16 | ERROR | stderr | response = f(*args, **kwargs)
529
- 2024-12-24 14:40:16 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 65, in bothbad_vote_last_response_igm
530
- 2024-12-24 14:40:16 | ERROR | stderr | vote_last_response_igm(
531
- 2024-12-24 14:40:16 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 27, in vote_last_response_igm
532
- 2024-12-24 14:40:16 | ERROR | stderr | "models": [x.name for x in states],
533
- 2024-12-24 14:40:16 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 27, in <listcomp>
534
- 2024-12-24 14:40:16 | ERROR | stderr | "models": [x.name for x in states],
535
- 2024-12-24 14:40:16 | ERROR | stderr | AttributeError: 'NoneType' object has no attribute 'name'
536
- 2024-12-24 14:42:01 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
537
- 2024-12-24 14:42:01 | ERROR | stderr | Traceback (most recent call last):
538
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/queueing.py", line 625, in process_events
539
- 2024-12-24 14:42:01 | ERROR | stderr | response = await route_utils.call_process_api(
540
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/route_utils.py", line 322, in call_process_api
541
- 2024-12-24 14:42:01 | ERROR | stderr | output = await app.get_blocks().process_api(
542
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2047, in process_api
543
- 2024-12-24 14:42:01 | ERROR | stderr | result = await self.call_function(
544
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 1594, in call_function
545
- 2024-12-24 14:42:01 | ERROR | stderr | prediction = await anyio.to_thread.run_sync( # type: ignore
546
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/to_thread.py", line 56, in run_sync
547
- 2024-12-24 14:42:01 | ERROR | stderr | return await get_async_backend().run_sync_in_worker_thread(
548
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 2505, in run_sync_in_worker_thread
549
- 2024-12-24 14:42:01 | ERROR | stderr | return await future
550
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/anyio/_backends/_asyncio.py", line 1005, in run
551
- 2024-12-24 14:42:01 | ERROR | stderr | result = context.run(func, *args)
552
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/utils.py", line 869, in wrapper
553
- 2024-12-24 14:42:01 | ERROR | stderr | response = f(*args, **kwargs)
554
- 2024-12-24 14:42:01 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 41, in leftvote_last_response_igm
555
- 2024-12-24 14:42:01 | ERROR | stderr | vote_last_response_igm(
556
- 2024-12-24 14:42:01 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/vote_utils.py", line 32, in vote_last_response_igm
557
- 2024-12-24 14:42:01 | ERROR | stderr | append_json_item_on_log_server(data, get_conv_log_filename())
558
- 2024-12-24 14:42:01 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/serve/utils.py", line 206, in append_json_item_on_log_server
559
- 2024-12-24 14:42:01 | ERROR | stderr | response = requests.post(url, data={'json_str': json_item, 'file_name': log_file})
560
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/api.py", line 115, in post
561
- 2024-12-24 14:42:01 | ERROR | stderr | return request("post", url, data=data, json=json, **kwargs)
562
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/api.py", line 59, in request
563
- 2024-12-24 14:42:01 | ERROR | stderr | return session.request(method=method, url=url, **kwargs)
564
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/sessions.py", line 575, in request
565
- 2024-12-24 14:42:01 | ERROR | stderr | prep = self.prepare_request(req)
566
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/sessions.py", line 484, in prepare_request
567
- 2024-12-24 14:42:01 | ERROR | stderr | p.prepare(
568
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/models.py", line 367, in prepare
569
- 2024-12-24 14:42:01 | ERROR | stderr | self.prepare_url(url, params)
570
- 2024-12-24 14:42:01 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/requests/models.py", line 438, in prepare_url
571
- 2024-12-24 14:42:01 | ERROR | stderr | raise MissingSchema(
572
- 2024-12-24 14:42:01 | ERROR | stderr | requests.exceptions.MissingSchema: Invalid URL '/logs/append_json': No scheme supplied. Perhaps you meant https:///logs/append_json?
573
- 2024-12-24 15:03:08 | INFO | stdout | Keyboard interruption in main thread... closing server.
574
- 2024-12-24 15:03:08 | ERROR | stderr | Traceback (most recent call last):
575
- 2024-12-24 15:03:08 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
576
- 2024-12-24 15:03:08 | ERROR | stderr | time.sleep(0.1)
577
- 2024-12-24 15:03:08 | ERROR | stderr | KeyboardInterrupt
578
- 2024-12-24 15:03:08 | ERROR | stderr |
579
- 2024-12-24 15:03:08 | ERROR | stderr | During handling of the above exception, another exception occurred:
580
- 2024-12-24 15:03:08 | ERROR | stderr |
581
- 2024-12-24 15:03:08 | ERROR | stderr | Traceback (most recent call last):
582
- 2024-12-24 15:03:08 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
583
- 2024-12-24 15:03:08 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
584
- 2024-12-24 15:03:08 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
585
- 2024-12-24 15:03:08 | ERROR | stderr | self.block_thread()
586
- 2024-12-24 15:03:08 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
587
- 2024-12-24 15:03:08 | ERROR | stderr | self.server.close()
588
- 2024-12-24 15:03:08 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
589
- 2024-12-24 15:03:08 | ERROR | stderr | self.thread.join(timeout=5)
590
- 2024-12-24 15:03:08 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
591
- 2024-12-24 15:03:08 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
592
- 2024-12-24 15:03:08 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
593
- 2024-12-24 15:03:08 | ERROR | stderr | if lock.acquire(block, timeout):
594
- 2024-12-24 15:03:08 | ERROR | stderr | KeyboardInterrupt
595
- 2024-12-24 15:03:13 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
596
- 2024-12-24 15:03:13 | INFO | stdout |
597
- 2024-12-24 15:03:13 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
598
- 2024-12-24 15:04:38 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
599
- 2024-12-24 15:05:17 | INFO | stdout | Keyboard interruption in main thread... closing server.
600
- 2024-12-24 15:05:17 | ERROR | stderr | Traceback (most recent call last):
601
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
602
- 2024-12-24 15:05:17 | ERROR | stderr | time.sleep(0.1)
603
- 2024-12-24 15:05:17 | ERROR | stderr | KeyboardInterrupt
604
- 2024-12-24 15:05:17 | ERROR | stderr |
605
- 2024-12-24 15:05:17 | ERROR | stderr | During handling of the above exception, another exception occurred:
606
- 2024-12-24 15:05:17 | ERROR | stderr |
607
- 2024-12-24 15:05:17 | ERROR | stderr | Traceback (most recent call last):
608
- 2024-12-24 15:05:17 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
609
- 2024-12-24 15:05:17 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
610
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
611
- 2024-12-24 15:05:17 | ERROR | stderr | self.block_thread()
612
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
613
- 2024-12-24 15:05:17 | ERROR | stderr | self.server.close()
614
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
615
- 2024-12-24 15:05:17 | ERROR | stderr | self.thread.join(timeout=5)
616
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
617
- 2024-12-24 15:05:17 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
618
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
619
- 2024-12-24 15:05:17 | ERROR | stderr | if lock.acquire(block, timeout):
620
- 2024-12-24 15:05:17 | ERROR | stderr | KeyboardInterrupt
621
- 2024-12-24 15:05:17 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
622
- 2024-12-24 15:05:17 | ERROR | stderr | Traceback (most recent call last):
623
- 2024-12-24 15:05:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
624
- 2024-12-24 15:05:17 | ERROR | stderr | lock.acquire()
625
- 2024-12-24 15:05:17 | ERROR | stderr | KeyboardInterrupt:
626
- 2024-12-24 15:07:04 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
627
- 2024-12-24 15:07:04 | INFO | stdout |
628
- 2024-12-24 15:07:04 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
629
- 2024-12-24 15:07:09 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
630
- 2024-12-24 15:08:19 | INFO | stdout | Keyboard interruption in main thread... closing server.
631
- 2024-12-24 15:08:19 | ERROR | stderr | Traceback (most recent call last):
632
- 2024-12-24 15:08:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
633
- 2024-12-24 15:08:19 | ERROR | stderr | time.sleep(0.1)
634
- 2024-12-24 15:08:19 | ERROR | stderr | KeyboardInterrupt
635
- 2024-12-24 15:08:19 | ERROR | stderr |
636
- 2024-12-24 15:08:19 | ERROR | stderr | During handling of the above exception, another exception occurred:
637
- 2024-12-24 15:08:19 | ERROR | stderr |
638
- 2024-12-24 15:08:19 | ERROR | stderr | Traceback (most recent call last):
639
- 2024-12-24 15:08:19 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
640
- 2024-12-24 15:08:19 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
641
- 2024-12-24 15:08:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
642
- 2024-12-24 15:08:19 | ERROR | stderr | self.block_thread()
643
- 2024-12-24 15:08:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
644
- 2024-12-24 15:08:19 | ERROR | stderr | self.server.close()
645
- 2024-12-24 15:08:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
646
- 2024-12-24 15:08:19 | ERROR | stderr | self.thread.join(timeout=5)
647
- 2024-12-24 15:08:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
648
- 2024-12-24 15:08:19 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
649
- 2024-12-24 15:08:19 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
650
- 2024-12-24 15:08:19 | ERROR | stderr | if lock.acquire(block, timeout):
651
- 2024-12-24 15:08:19 | ERROR | stderr | KeyboardInterrupt
652
- 2024-12-24 15:08:20 | ERROR | stderr | Exception ignored in: <module 'threading' from '/opt/anaconda3/envs/tiger/lib/python3.10/threading.py'>
653
- 2024-12-24 15:08:20 | ERROR | stderr | Traceback (most recent call last):
654
- 2024-12-24 15:08:20 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1567, in _shutdown
655
- 2024-12-24 15:08:20 | ERROR | stderr | lock.acquire()
656
- 2024-12-24 15:08:20 | ERROR | stderr | KeyboardInterrupt:
657
- 2024-12-24 15:12:22 | INFO | stdout | {'t2i_generation': PosixPath('arena_elo/results/latest/elo_results_t2i_generation.pkl'), 'video_generation': PosixPath('arena_elo/results/latest/elo_results_video_generation.pkl'), 'image_editing': PosixPath('arena_elo/results/latest/elo_results_image_editing.pkl')}
658
- 2024-12-24 15:12:22 | INFO | stdout | {'t2i_generation': PosixPath('arena_elo/results/latest/t2i_generation_leaderboard.csv'), 'video_generation': PosixPath('arena_elo/results/latest/video_generation_leaderboard.csv'), 'image_editing': PosixPath('arena_elo/results/latest/image_editing_leaderboard.csv')}
659
- 2024-12-24 15:15:46 | ERROR | stderr | Traceback (most recent call last):
660
- 2024-12-24 15:15:46 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 79, in <module>
661
- 2024-12-24 15:15:46 | ERROR | stderr | input()
662
- 2024-12-24 15:15:46 | ERROR | stderr | KeyboardInterrupt
663
- 2024-12-24 15:26:57 | INFO | stdout | arena_elo/results/latest/t2i_generation_leaderboard.csv
664
- 2024-12-24 15:26:57 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
665
- 2024-12-24 15:26:57 | INFO | stdout |
666
- 2024-12-24 15:26:57 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
667
- 2024-12-24 15:56:17 | INFO | stdout | Keyboard interruption in main thread... closing server.
668
- 2024-12-24 15:56:17 | ERROR | stderr | Traceback (most recent call last):
669
- 2024-12-24 15:56:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
670
- 2024-12-24 15:56:17 | ERROR | stderr | time.sleep(0.1)
671
- 2024-12-24 15:56:17 | ERROR | stderr | KeyboardInterrupt
672
- 2024-12-24 15:56:17 | ERROR | stderr |
673
- 2024-12-24 15:56:17 | ERROR | stderr | During handling of the above exception, another exception occurred:
674
- 2024-12-24 15:56:17 | ERROR | stderr |
675
- 2024-12-24 15:56:17 | ERROR | stderr | Traceback (most recent call last):
676
- 2024-12-24 15:56:17 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
677
- 2024-12-24 15:56:17 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
678
- 2024-12-24 15:56:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
679
- 2024-12-24 15:56:17 | ERROR | stderr | self.block_thread()
680
- 2024-12-24 15:56:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
681
- 2024-12-24 15:56:17 | ERROR | stderr | self.server.close()
682
- 2024-12-24 15:56:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
683
- 2024-12-24 15:56:17 | ERROR | stderr | self.thread.join(timeout=5)
684
- 2024-12-24 15:56:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
685
- 2024-12-24 15:56:17 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
686
- 2024-12-24 15:56:17 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
687
- 2024-12-24 15:56:17 | ERROR | stderr | if lock.acquire(block, timeout):
688
- 2024-12-24 15:56:17 | ERROR | stderr | KeyboardInterrupt
689
- 2024-12-24 16:52:26 | INFO | stdout | arena_elo/results/latest/t2i_generation_leaderboard.csv
690
- 2024-12-24 16:52:27 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
691
- 2024-12-24 16:52:27 | INFO | stdout |
692
- 2024-12-24 16:52:27 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
693
- 2024-12-24 16:53:47 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
694
- 2024-12-24 16:54:12 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
695
- 2024-12-24 16:54:24 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
696
- 2024-12-24 16:54:36 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
697
- 2024-12-24 16:54:55 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
698
- 2024-12-24 16:55:03 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
699
- 2024-12-24 16:55:11 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
700
- 2024-12-24 16:55:45 | INFO | stdout | Keyboard interruption in main thread... closing server.
701
- 2024-12-24 16:55:46 | ERROR | stderr | Traceback (most recent call last):
702
- 2024-12-24 16:55:46 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
703
- 2024-12-24 16:55:46 | ERROR | stderr | time.sleep(0.1)
704
- 2024-12-24 16:55:46 | ERROR | stderr | KeyboardInterrupt
705
- 2024-12-24 16:55:46 | ERROR | stderr |
706
- 2024-12-24 16:55:46 | ERROR | stderr | During handling of the above exception, another exception occurred:
707
- 2024-12-24 16:55:46 | ERROR | stderr |
708
- 2024-12-24 16:55:46 | ERROR | stderr | Traceback (most recent call last):
709
- 2024-12-24 16:55:46 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
710
- 2024-12-24 16:55:46 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
711
- 2024-12-24 16:55:46 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
712
- 2024-12-24 16:55:46 | ERROR | stderr | self.block_thread()
713
- 2024-12-24 16:55:46 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
714
- 2024-12-24 16:55:46 | ERROR | stderr | self.server.close()
715
- 2024-12-24 16:55:46 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
716
- 2024-12-24 16:55:46 | ERROR | stderr | self.thread.join(timeout=5)
717
- 2024-12-24 16:55:46 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
718
- 2024-12-24 16:55:46 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
719
- 2024-12-24 16:55:46 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
720
- 2024-12-24 16:55:46 | ERROR | stderr | if lock.acquire(block, timeout):
721
- 2024-12-24 16:55:46 | ERROR | stderr | KeyboardInterrupt
722
- 2024-12-24 17:57:24 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
723
- 2024-12-24 17:57:24 | INFO | stdout |
724
- 2024-12-24 17:57:24 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
725
- 2024-12-24 17:57:39 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
726
- 2024-12-24 17:57:55 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
727
- 2024-12-24 17:58:04 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
728
- 2024-12-24 17:58:13 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
729
- 2024-12-24 17:58:23 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
730
- 2024-12-24 17:58:34 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
731
- 2024-12-24 17:58:46 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
732
- 2024-12-24 17:58:51 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
733
- 2024-12-24 17:58:56 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
734
- 2024-12-24 17:59:11 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
735
- 2024-12-24 17:59:26 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
736
- 2024-12-24 17:59:40 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
737
- 2024-12-24 17:59:44 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
738
- 2024-12-24 17:59:49 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
739
- 2024-12-24 18:00:05 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
740
- 2024-12-24 18:00:12 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
741
- 2024-12-24 18:00:19 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
742
- 2024-12-24 18:00:25 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
743
- 2024-12-24 18:00:32 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
744
- 2024-12-24 18:00:46 | INFO | stdout | Keyboard interruption in main thread... closing server.
745
- 2024-12-24 18:00:47 | ERROR | stderr | Traceback (most recent call last):
746
- 2024-12-24 18:00:47 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
747
- 2024-12-24 18:00:47 | ERROR | stderr | time.sleep(0.1)
748
- 2024-12-24 18:00:47 | ERROR | stderr | KeyboardInterrupt
749
- 2024-12-24 18:00:47 | ERROR | stderr |
750
- 2024-12-24 18:00:47 | ERROR | stderr | During handling of the above exception, another exception occurred:
751
- 2024-12-24 18:00:47 | ERROR | stderr |
752
- 2024-12-24 18:00:47 | ERROR | stderr | Traceback (most recent call last):
753
- 2024-12-24 18:00:47 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 78, in <module>
754
- 2024-12-24 18:00:47 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
755
- 2024-12-24 18:00:47 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
756
- 2024-12-24 18:00:47 | ERROR | stderr | self.block_thread()
757
- 2024-12-24 18:00:47 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
758
- 2024-12-24 18:00:47 | ERROR | stderr | self.server.close()
759
- 2024-12-24 18:00:47 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
760
- 2024-12-24 18:00:47 | ERROR | stderr | self.thread.join(timeout=5)
761
- 2024-12-24 18:00:47 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
762
- 2024-12-24 18:00:47 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
763
- 2024-12-24 18:00:47 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
764
- 2024-12-24 18:00:47 | ERROR | stderr | if lock.acquire(block, timeout):
765
- 2024-12-24 18:00:47 | ERROR | stderr | KeyboardInterrupt
766
- 2024-12-25 10:12:09 | INFO | stdout | * Running on local URL: http://127.0.0.1:7860
767
- 2024-12-25 10:12:09 | INFO | stdout |
768
- 2024-12-25 10:12:09 | INFO | stdout | To create a public link, set `share=True` in `launch()`.
769
- 2024-12-25 10:12:41 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
770
- 2024-12-25 10:12:54 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
771
- 2024-12-25 10:13:17 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
772
- 2024-12-25 10:13:24 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
773
- 2024-12-25 10:13:30 | INFO | gradio_web_server_image_generation_multi | leftvote (named). ip: 127.0.0.1
774
- 2024-12-25 10:18:33 | INFO | gradio_web_server_image_generation_multi | rightvote (named). ip: 127.0.0.1
775
- 2024-12-25 10:18:53 | INFO | gradio_web_server_image_generation_multi | bothbad_vote (named). ip: 127.0.0.1
776
- 2024-12-25 10:25:51 | INFO | stdout | Keyboard interruption in main thread... closing server.
777
- 2024-12-25 10:25:52 | ERROR | stderr | Traceback (most recent call last):
778
- 2024-12-25 10:25:52 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2869, in block_thread
779
- 2024-12-25 10:25:52 | ERROR | stderr | time.sleep(0.1)
780
- 2024-12-25 10:25:52 | ERROR | stderr | KeyboardInterrupt
781
- 2024-12-25 10:25:52 | ERROR | stderr |
782
- 2024-12-25 10:25:52 | ERROR | stderr | During handling of the above exception, another exception occurred:
783
- 2024-12-25 10:25:52 | ERROR | stderr |
784
- 2024-12-25 10:25:52 | ERROR | stderr | Traceback (most recent call last):
785
- 2024-12-25 10:25:52 | ERROR | stderr | File "/Users/jasi/Documents/ali-vilab/modelscope/IDEA-Bench-Arena/app.py", line 64, in <module>
786
- 2024-12-25 10:25:52 | ERROR | stderr | demo.queue(max_size=20).launch(server_port=server_port, root_path=ROOT_PATH, show_error=True)
787
- 2024-12-25 10:25:52 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2774, in launch
788
- 2024-12-25 10:25:52 | ERROR | stderr | self.block_thread()
789
- 2024-12-25 10:25:52 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/blocks.py", line 2873, in block_thread
790
- 2024-12-25 10:25:52 | ERROR | stderr | self.server.close()
791
- 2024-12-25 10:25:52 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/site-packages/gradio/http_server.py", line 69, in close
792
- 2024-12-25 10:25:52 | ERROR | stderr | self.thread.join(timeout=5)
793
- 2024-12-25 10:25:52 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1100, in join
794
- 2024-12-25 10:25:52 | ERROR | stderr | self._wait_for_tstate_lock(timeout=max(timeout, 0))
795
- 2024-12-25 10:25:52 | ERROR | stderr | File "/opt/anaconda3/envs/tiger/lib/python3.10/threading.py", line 1116, in _wait_for_tstate_lock
796
- 2024-12-25 10:25:52 | ERROR | stderr | if lock.acquire(block, timeout):
797
- 2024-12-25 10:25:52 | ERROR | stderr | KeyboardInterrupt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
serve/__pycache__/constants.cpython-310.pyc CHANGED
Binary files a/serve/__pycache__/constants.cpython-310.pyc and b/serve/__pycache__/constants.cpython-310.pyc differ
 
serve/__pycache__/log_utils.cpython-310.pyc CHANGED
Binary files a/serve/__pycache__/log_utils.cpython-310.pyc and b/serve/__pycache__/log_utils.cpython-310.pyc differ
 
serve/__pycache__/utils.cpython-310.pyc CHANGED
Binary files a/serve/__pycache__/utils.cpython-310.pyc and b/serve/__pycache__/utils.cpython-310.pyc differ
 
serve/__pycache__/vote_utils.cpython-310.pyc CHANGED
Binary files a/serve/__pycache__/vote_utils.cpython-310.pyc and b/serve/__pycache__/vote_utils.cpython-310.pyc differ
 
serve/constants.py CHANGED
@@ -11,8 +11,12 @@ ELO_RESULTS_DIR = os.getenv("ELO_RESULTS_DIR", "./arena_elo/results/latest")
11
  LOG_SERVER = os.getenv("LOG_SERVER", "")
12
  LOG_SERVER_SUBDOMAIN = os.getenv("LOG_SERVER_SUBDOMAIN", "/logs")
13
  LOG_SERVER_ADDR = os.getenv("LOG_SERVER_ADDR", f"{LOG_SERVER}{LOG_SERVER_SUBDOMAIN}")
 
14
  # LOG SERVER API ENDPOINTS
15
  APPEND_JSON = "append_json"
16
  SAVE_IMAGE = "save_image"
17
  SAVE_VIDEO = "save_video"
18
  SAVE_LOG = "save_log"
 
 
 
 
11
  LOG_SERVER = os.getenv("LOG_SERVER", "")
12
  LOG_SERVER_SUBDOMAIN = os.getenv("LOG_SERVER_SUBDOMAIN", "/logs")
13
  LOG_SERVER_ADDR = os.getenv("LOG_SERVER_ADDR", f"{LOG_SERVER}{LOG_SERVER_SUBDOMAIN}")
14
+
15
  # LOG SERVER API ENDPOINTS
16
  APPEND_JSON = "append_json"
17
  SAVE_IMAGE = "save_image"
18
  SAVE_VIDEO = "save_video"
19
  SAVE_LOG = "save_log"
20
+
21
+ OSS_BUCKET_NAME = os.getenv("OSS_BUCKET_NAME", "idea-bench-arena-log-server")
22
+ OSS_FILE_PREFIX = "logs/vote_log/"
serve/log_utils.py CHANGED
@@ -2,7 +2,7 @@
2
  Common utilities.
3
  """
4
  from asyncio import AbstractEventLoop
5
- import json
6
  import logging
7
  import logging.handlers
8
  import os
@@ -139,4 +139,10 @@ class StreamToLogger(object):
139
  if self.linebuf != "":
140
  encoded_message = self.linebuf.encode("utf-8", "ignore").decode("utf-8")
141
  self.logger.log(self.log_level, encoded_message.rstrip())
142
- self.linebuf = ""
 
 
 
 
 
 
 
2
  Common utilities.
3
  """
4
  from asyncio import AbstractEventLoop
5
+ import oss2
6
  import logging
7
  import logging.handlers
8
  import os
 
139
  if self.linebuf != "":
140
  encoded_message = self.linebuf.encode("utf-8", "ignore").decode("utf-8")
141
  self.logger.log(self.log_level, encoded_message.rstrip())
142
+ self.linebuf = ""
143
+
144
+
145
+ def get_oss_bucket():
146
+ auth = oss2.Auth(os.getenv("OSS_ACCESS_KEY_ID"), os.getenv("OSS_ACCESS_KEY_SECRET"))
147
+ bucket = oss2.Bucket(auth, os.getenv("OSS_ENDPOINT"), os.getenv("OSS_BUCKET_NAME"))
148
+ return bucket
serve/utils.py CHANGED
@@ -180,7 +180,7 @@ def get_ip(request: gr.Request):
180
 
181
  def get_conv_log_filename():
182
  t = datetime.datetime.now()
183
- name = os.path.join(LOGDIR, f"{t.year}-{t.month:02d}-{t.day:02d}-conv.json")
184
  return name
185
 
186
  def save_image_file_on_log_server(image_file:str):
 
180
 
181
  def get_conv_log_filename():
182
  t = datetime.datetime.now()
183
+ name = f"{t.year}-{t.month:02d}-{t.day:02d}-conv.json"
184
  return name
185
 
186
  def save_image_file_on_log_server(image_file:str):
serve/vote_utils.py CHANGED
@@ -1,29 +1,60 @@
1
  import datetime
 
2
  import time
3
  import json
4
  import uuid
5
  import gradio as gr
6
  import regex as re
7
  from .utils import *
8
- from .log_utils import build_logger
9
- from .constants import IMAGE_DIR
10
 
11
  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
12
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
 
14
  def vote_last_response_igm(states, vote_type, anony, request: gr.Request):
15
- with open(get_conv_log_filename(), "a") as fout:
16
- data = {
17
- "tstamp": round(time.time(), 4),
18
- "type": vote_type,
19
- "models": [x.name for x in states],
20
- "states": [{} for x in states],
21
- "anony": anony,
22
- "ip": get_ip(request),
23
- }
24
- fout.write(json.dumps(data) + "\n")
25
- # append_json_item_on_log_server(data, get_conv_log_filename())
26
-
 
 
 
 
 
 
 
27
 
28
  ## Image Generation Multi (IGM) Side-by-Side and Battle
29
 
 
1
  import datetime
2
+ import oss2
3
  import time
4
  import json
5
  import uuid
6
  import gradio as gr
7
  import regex as re
8
  from .utils import *
9
+ from .log_utils import build_logger, get_oss_bucket
10
+ from .constants import OSS_FILE_PREFIX
11
 
12
  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
13
+ bucket = get_oss_bucket()
14
+
15
+
16
+ # Function to append content to a file in OSS
17
+ def append_to_oss_file(bucket, file_name, content):
18
+ """
19
+ Append content to a file in OSS.
20
+ :param bucket: oss2.Bucket instance
21
+ :param file_name: OSS file path (including prefix and file name)
22
+ :param content: Content to be appended
23
+ """
24
+ # Check if the file already exists
25
+ try:
26
+ result = bucket.get_object(file_name)
27
+ existing_content = result.read().decode('utf-8')
28
+ except oss2.exceptions.NoSuchKey:
29
+ existing_content = "" # If the file doesn't exist, initialize with empty content
30
+
31
+ # Append new content to the existing content
32
+ updated_content = existing_content + content + "\n"
33
+
34
+ # Upload the updated content back to OSS
35
+ bucket.put_object(file_name, updated_content)
36
 
37
+ # Modify the vote_last_response_igm function to write content to OSS
38
  def vote_last_response_igm(states, vote_type, anony, request: gr.Request):
39
+ file_name = get_conv_log_filename() # Get the log file name
40
+ print(file_name)
41
+ oss_file_path = OSS_FILE_PREFIX + file_name # Construct the OSS file path
42
+
43
+ data = {
44
+ "tstamp": round(time.time(), 4),
45
+ "type": vote_type,
46
+ "models": [x.name for x in states],
47
+ "states": [{} for x in states],
48
+ "anony": anony,
49
+ "ip": get_ip(request),
50
+ }
51
+ json_data = json.dumps(data) # Convert data to JSON format
52
+ try:
53
+ # Call the append_to_oss_file function to write data to OSS
54
+ append_to_oss_file(bucket, oss_file_path, json_data)
55
+ igm_logger.info(f"Successfully wrote to OSS: {oss_file_path}")
56
+ except Exception as e:
57
+ igm_logger.error(f"Failed to write to OSS: {e}")
58
 
59
  ## Image Generation Multi (IGM) Side-by-Side and Battle
60