Kaiyue commited on
Commit
56b30d7
·
verified ·
1 Parent(s): d05d59d

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. add_to_csv.py +145 -0
  2. add_to_csv_entity.py +168 -0
  3. add_to_csv_physics.py +198 -0
  4. add_to_csv_text_image.py +142 -0
  5. entity.csv +101 -0
  6. human_corr.py +403 -0
  7. human_corr_vqa_entity.py +143 -0
  8. human_corr_vqa_idiom.py +138 -0
  9. human_corr_vqa_physics.py +136 -0
  10. human_corr_vqa_text_image.py +138 -0
  11. human_score/entity.csv +101 -0
  12. human_score/entity_clip.csv +101 -0
  13. human_score/entity_vqa.csv +101 -0
  14. human_score/entity_vqa_2.csv +101 -0
  15. human_score/idiom.csv +101 -0
  16. human_score/idiom_clip.csv +101 -0
  17. human_score/idiom_vqa.csv +101 -0
  18. human_score/physics.csv +101 -0
  19. human_score/physics_clip.csv +101 -0
  20. human_score/physics_vqa.csv +101 -0
  21. human_score/text_image.csv +101 -0
  22. human_score/text_image_clip.csv +101 -0
  23. human_score/text_image_vqa.csv +101 -0
  24. idiom.csv +101 -0
  25. images_eval/entity/0001_GPT.png +3 -0
  26. images_eval/entity/0001_bagel.png +3 -0
  27. images_eval/entity/0001_hidream.png +3 -0
  28. images_eval/entity/0001_janus_pro_7B.png +3 -0
  29. images_eval/entity/0001_sd30_medium.png +3 -0
  30. images_eval/entity/0011_GPT.png +3 -0
  31. images_eval/entity/0011_bagel.png +3 -0
  32. images_eval/entity/0011_hidream.png +3 -0
  33. images_eval/entity/0011_janus_pro_7B.png +3 -0
  34. images_eval/entity/0011_sd30_medium.png +3 -0
  35. images_eval/entity/0021_GPT.png +3 -0
  36. images_eval/entity/0021_bagel.png +3 -0
  37. images_eval/entity/0021_hidream.png +3 -0
  38. images_eval/entity/0021_janus_pro_7B.png +3 -0
  39. images_eval/entity/0021_sd30_medium.png +3 -0
  40. images_eval/entity/0031_GPT.png +3 -0
  41. images_eval/entity/0031_bagel.png +3 -0
  42. images_eval/entity/0031_hidream.png +3 -0
  43. images_eval/entity/0031_janus_pro_7B.png +3 -0
  44. images_eval/entity/0031_sd30_medium.png +3 -0
  45. images_eval/entity/0041_GPT.png +3 -0
  46. images_eval/entity/0041_bagel.png +3 -0
  47. images_eval/entity/0041_hidream.png +3 -0
  48. images_eval/entity/0041_janus_pro_7B.png +3 -0
  49. images_eval/entity/0041_sd30_medium.png +3 -0
  50. images_eval/entity/0051_GPT.png +3 -0
add_to_csv.py ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # row = rows[idx]
19
+
20
+ # 倒数第三和倒数第二个元素
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:10] + ['qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:10] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_align_list = []
48
+ qwen_quality_list = []
49
+
50
+ with open(combined_csv, newline='', encoding='utf-8') as f:
51
+ reader = csv.reader(f)
52
+ header = next(reader) # 跳过表头
53
+ for row in reader:
54
+ # 取倒数第3、4、5列
55
+ alignment_123 = [float(row[-8]), float(row[-7]), float(row[-6])]
56
+ quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
57
+ alignment_avg = np.mean(alignment_123)
58
+ quality_avg = np.mean(quality_123)
59
+ avg_align_list.append(alignment_avg)
60
+ avg_quality_list.append(quality_avg)
61
+ # 取倒数第2列
62
+ qwen_alignment = float(row[-2])
63
+ qwen_quality = float(row[-1])
64
+ qwen_align_list.append(qwen_alignment)
65
+ qwen_quality_list.append(qwen_quality)
66
+
67
+
68
+
69
+ # 2. 计算相关性
70
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_align_list)
71
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_align_list)
72
+
73
+ quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
74
+ quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
75
+
76
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
77
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
78
+
79
+ print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
80
+ print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
81
+
82
+
83
+ if __name__ == "__main__":
84
+
85
+
86
+ input_files = [
87
+ "/group/xihuiliu/sky/reasoning/csv/idiom/bagel.csv",
88
+ "/group/xihuiliu/sky/reasoning/csv/idiom/GPT.csv",
89
+ "/group/xihuiliu/sky/reasoning/csv/idiom/hidream.csv",
90
+ "/group/xihuiliu/sky/reasoning/csv/idiom/janus_pro_7B.csv",
91
+ "/group/xihuiliu/sky/reasoning/csv/idiom/sd30_medium.csv",
92
+ ]
93
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom.csv"
94
+
95
+ # input_files = [
96
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
97
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
98
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
99
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
100
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
101
+ # ]
102
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
103
+
104
+ # input_files = [
105
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
106
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
107
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
108
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
109
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
110
+ # ]
111
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
112
+
113
+
114
+ # input_files = [
115
+ # "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
116
+ # "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
117
+ # "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
118
+ # "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
119
+ # "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
120
+ # ]
121
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
122
+
123
+ # add_to_csv(input_files,human_score_csv)
124
+
125
+ corr(human_score_csv)
126
+
127
+
128
+ #idiom
129
+ # align Spearman correlation: 0.6723, p-value: 1.871e-14
130
+ # align Kendall correlation: 0.5246, p-value: 6.27e-13
131
+ # quality Spearman correlation: 0.1883, p-value: 0.06068
132
+ # quality Kendall correlation: 0.1544, p-value: 0.05925
133
+
134
+
135
+ #text image
136
+ # align Spearman correlation: 0.7426, p-value: 9.281e-19
137
+ # align Kendall correlation: 0.5829, p-value: 1.527e-15
138
+ # quality Spearman correlation: 0.4611, p-value: 1.378e-06
139
+ # quality Kendall correlation: 0.3457, p-value: 5.094e-06
140
+
141
+ # entity
142
+ # align Spearman correlation: 0.5180, p-value: 3.391e-08
143
+ # align Kendall correlation: 0.4098, p-value: 2.071e-07
144
+ # quality Spearman correlation: 0.3436, p-value: 0.0004646
145
+ # quality Kendall correlation: 0.3018, p-value: 0.0006653
add_to_csv_entity.py ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # print(row)
19
+ # 倒数第三和倒数第二个元素
20
+ fourth_last = target_row[-4] #reason score
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([fourth_last,third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:10] + ['qwen_reason','qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:10] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_reason_list = []
48
+ qwen_align_list = []
49
+ qwen_quality_list = []
50
+
51
+ with open(combined_csv, newline='', encoding='utf-8') as f:
52
+ reader = csv.reader(f)
53
+ header = next(reader) # 跳过表头
54
+ for row in reader:
55
+ # 取倒数第3、4、5列
56
+ alignment_123 = [float(row[-8]), float(row[-7]), float(row[-6])]
57
+ quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
58
+ alignment_avg = np.mean(alignment_123)
59
+ quality_avg = np.mean(quality_123)
60
+ avg_align_list.append(alignment_avg)
61
+ avg_quality_list.append(quality_avg)
62
+ # 取倒数第2列
63
+ qwen_reason = float(row[-3])
64
+ qwen_alignment = float(row[-2])
65
+ qwen_quality = float(row[-1])
66
+ qwen_reason_list.append(qwen_reason)
67
+ qwen_align_list.append(qwen_alignment)
68
+ qwen_quality_list.append(qwen_quality)
69
+
70
+ # 2. 计算相关性
71
+
72
+ weight1 = 0.7
73
+ weight2 = 0.3
74
+ qwen_total_align = [weight1 * v1 + weight2 * v2 for v1, v2 in zip(qwen_reason_list, qwen_align_list)]
75
+
76
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_total_align)
77
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_total_align)
78
+
79
+ quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
80
+ quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
81
+
82
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
83
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
84
+
85
+ print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
86
+ print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
87
+
88
+
89
+ if __name__ == "__main__":
90
+
91
+
92
+ # input_files = [
93
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/bagel.csv",
94
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/GPT.csv",
95
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/hidream.csv",
96
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/janus_pro_7B.csv",
97
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/sd30_medium.csv",
98
+ # ]
99
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom.csv"
100
+
101
+ # input_files = [
102
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
103
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
104
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
105
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
106
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
107
+ # ]
108
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
109
+
110
+ input_files = [
111
+ "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
112
+ "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
113
+ "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
114
+ "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
115
+ "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
116
+ ]
117
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
118
+
119
+
120
+ # input_files = [
121
+ # "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
122
+ # "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
123
+ # "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
124
+ # "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
125
+ # "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
126
+ # ]
127
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
128
+
129
+ # add_to_csv(input_files,human_score_csv)
130
+
131
+ corr(human_score_csv)
132
+
133
+
134
+ #idiom
135
+ # align Spearman correlation: 0.4674, p-value: 9.474e-07
136
+ # align Kendall correlation: 0.3498, p-value: 1.911e-06
137
+ # quality Spearman correlation: 0.3305, p-value: 0.0007828
138
+ # quality Kendall correlation: 0.2622, p-value: 0.0007976
139
+
140
+ #text image
141
+ # align Spearman correlation: 0.7675, p-value: 1.246e-20
142
+ # align Kendall correlation: 0.6081, p-value: 9.005e-17
143
+ # quality Spearman correlation: 0.4186, p-value: 1.465e-05
144
+ # quality Kendall correlation: 0.3257, p-value: 3.135e-05
145
+
146
+ # entity 0.9 0.1
147
+ # align Spearman correlation: 0.6091, p-value: 1.771e-11
148
+ # align Kendall correlation: 0.4673, p-value: 3.437e-10
149
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
150
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
151
+
152
+ # entity 0.8 0.2
153
+ # align Spearman correlation: 0.6106, p-value: 1.529e-11
154
+ # align Kendall correlation: 0.4693, p-value: 2.989e-10
155
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
156
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
157
+
158
+ # entity 0.7 0.3
159
+ # align Spearman correlation: 0.6148, p-value: 1.012e-11
160
+ # align Kendall correlation: 0.4732, p-value: 2.094e-10
161
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
162
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
163
+
164
+ # entity 0.6 0.4
165
+ # align Spearman correlation: 0.6098, p-value: 1.646e-11
166
+ # align Kendall correlation: 0.4678, p-value: 3.428e-10
167
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
168
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
add_to_csv_physics.py ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # print(row)
19
+ # 倒数第三和倒数第二个元素
20
+ fourth_last = target_row[-4] #reason score
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([fourth_last,third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:10] + ['qwen_reason','qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:10] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_reason_list = []
48
+ qwen_align_list = []
49
+ qwen_quality_list = []
50
+
51
+ with open(combined_csv, newline='', encoding='utf-8') as f:
52
+ reader = csv.reader(f)
53
+ header = next(reader) # 跳过表头
54
+ for row in reader:
55
+ # 取倒数第3、4、5列
56
+ alignment_123 = [float(row[-8]), float(row[-7]), float(row[-6])]
57
+ quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
58
+ alignment_avg = np.mean(alignment_123)
59
+ quality_avg = np.mean(quality_123)
60
+ avg_align_list.append(alignment_avg)
61
+ avg_quality_list.append(quality_avg)
62
+ # 取倒数第2列
63
+ qwen_reason = float(row[-3])
64
+ qwen_alignment = float(row[-2])
65
+ qwen_quality = float(row[-1])
66
+ qwen_reason_list.append(qwen_reason)
67
+ qwen_align_list.append(qwen_alignment)
68
+ qwen_quality_list.append(qwen_quality)
69
+
70
+ # 2. 计算相关性
71
+
72
+ weight1 = 0.7
73
+ weight2 = 0.3
74
+ qwen_total_align = [weight1 * v1 + weight2 * v2 for v1, v2 in zip(qwen_reason_list, qwen_align_list)]
75
+
76
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_total_align)
77
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_total_align)
78
+
79
+ quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
80
+ quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
81
+
82
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
83
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
84
+
85
+ print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
86
+ print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
87
+
88
+
89
+ if __name__ == "__main__":
90
+
91
+
92
+ # input_files = [
93
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/bagel.csv",
94
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/GPT.csv",
95
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/hidream.csv",
96
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/janus_pro_7B.csv",
97
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/sd30_medium.csv",
98
+ # ]
99
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom.csv"
100
+
101
+ # input_files = [
102
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
103
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
104
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
105
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
106
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
107
+ # ]
108
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
109
+
110
+ # input_files = [
111
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
112
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
113
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
114
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
115
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
116
+ # ]
117
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
118
+
119
+
120
+ input_files = [
121
+ "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
122
+ "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
123
+ "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
124
+ "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
125
+ "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
126
+ ]
127
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
128
+
129
+ add_to_csv(input_files,human_score_csv)
130
+
131
+ corr(human_score_csv)
132
+
133
+
134
+ #idiom
135
+ # align Spearman correlation: 0.4674, p-value: 9.474e-07
136
+ # align Kendall correlation: 0.3498, p-value: 1.911e-06
137
+ # quality Spearman correlation: 0.3305, p-value: 0.0007828
138
+ # quality Kendall correlation: 0.2622, p-value: 0.0007976
139
+
140
+ #text image
141
+ # align Spearman correlation: 0.7675, p-value: 1.246e-20
142
+ # align Kendall correlation: 0.6081, p-value: 9.005e-17
143
+ # quality Spearman correlation: 0.4186, p-value: 1.465e-05
144
+ # quality Kendall correlation: 0.3257, p-value: 3.135e-05
145
+
146
+ # entity 0.9 0.1
147
+ # align Spearman correlation: 0.6091, p-value: 1.771e-11
148
+ # align Kendall correlation: 0.4673, p-value: 3.437e-10
149
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
150
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
151
+
152
+ # entity 0.8 0.2
153
+ # align Spearman correlation: 0.6106, p-value: 1.529e-11
154
+ # align Kendall correlation: 0.4693, p-value: 2.989e-10
155
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
156
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
157
+
158
+ # entity 0.7 0.3 THIS!!!!!!!!!!!!
159
+ # align Spearman correlation: 0.6148, p-value: 1.012e-11
160
+ # align Kendall correlation: 0.4732, p-value: 2.094e-10
161
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
162
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
163
+
164
+ # entity 0.6 0.4
165
+ # align Spearman correlation: 0.6098, p-value: 1.646e-11
166
+ # align Kendall correlation: 0.4678, p-value: 3.428e-10
167
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
168
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
169
+
170
+ # physics 0.9 0.1
171
+ # align Spearman correlation: 0.5756, p-value: 3.746e-10
172
+ # align Kendall correlation: 0.4477, p-value: 6.166e-10
173
+ # quality Spearman correlation: 0.2652, p-value: 0.007651
174
+ # quality Kendall correlation: 0.2080, p-value: 0.007783
175
+
176
+ # physics 0.8 0.2
177
+ # align Spearman correlation: 0.5773, p-value: 3.239e-10
178
+ # align Kendall correlation: 0.4496, p-value: 5.381e-10
179
+ # quality Spearman correlation: 0.2652, p-value: 0.007651
180
+ # quality Kendall correlation: 0.2080, p-value: 0.007783
181
+
182
+ # physics 0.7 0.3
183
+ # align Spearman correlation: 0.5777, p-value: 3.131e-10
184
+ # align Kendall correlation: 0.4490, p-value: 5.498e-10
185
+ # quality Spearman correlation: 0.2652, p-value: 0.007651
186
+ # quality Kendall correlation: 0.2080, p-value: 0.007783
187
+
188
+ # physics 0.6 0.4
189
+ # align Spearman correlation: 0.5839, p-value: 1.811e-10
190
+ # align Kendall correlation: 0.4566, p-value: 3.858e-10
191
+ # quality Spearman correlation: 0.2652, p-value: 0.007651
192
+ # quality Kendall correlation: 0.2080, p-value: 0.007783
193
+
194
+ # physics 0.5 0.5
195
+ # align Spearman correlation: 0.5827, p-value: 2.008e-10
196
+ # align Kendall correlation: 0.4594, p-value: 3.317e-10
197
+ # quality Spearman correlation: 0.2652, p-value: 0.007651
198
+ # quality Kendall correlation: 0.2080, p-value: 0.007783
add_to_csv_text_image.py ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # row = rows[idx]
19
+
20
+ # 倒数第三和倒数第二个元素
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:9] + ['qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:9] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_align_list = []
48
+ qwen_quality_list = []
49
+
50
+ with open(combined_csv, newline='', encoding='utf-8') as f:
51
+ reader = csv.reader(f)
52
+ header = next(reader) # 跳过表头
53
+ for row in reader:
54
+ # 取倒数第3、4、5列
55
+ alignment_123 = [float(row[-8]), float(row[-7]), float(row[-6])]
56
+ quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
57
+ alignment_avg = np.mean(alignment_123)
58
+ quality_avg = np.mean(quality_123)
59
+ avg_align_list.append(alignment_avg)
60
+ avg_quality_list.append(quality_avg)
61
+ # 取倒数第2列
62
+ qwen_alignment = float(row[-2])
63
+ qwen_quality = float(row[-1])
64
+ qwen_align_list.append(qwen_alignment)
65
+ qwen_quality_list.append(qwen_quality)
66
+
67
+ # 2. 计算相关性
68
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_align_list)
69
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_align_list)
70
+
71
+ quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
72
+ quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
73
+
74
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
75
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
76
+
77
+ print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
78
+ print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
79
+
80
+
81
+ if __name__ == "__main__":
82
+
83
+
84
+ # input_files = [
85
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/bagel.csv",
86
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/GPT.csv",
87
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/hidream.csv",
88
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/janus_pro_7B.csv",
89
+ # "/group/xihuiliu/sky/reasoning/csv/idiom/sd30_medium.csv",
90
+ # ]
91
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom.csv"
92
+
93
+ input_files = [
94
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
95
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
96
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
97
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
98
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
99
+ ]
100
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
101
+
102
+ # input_files = [
103
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
104
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
105
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
106
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
107
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
108
+ # ]
109
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
110
+
111
+
112
+ # input_files = [
113
+ # "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
114
+ # "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
115
+ # "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
116
+ # "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
117
+ # "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
118
+ # ]
119
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
120
+
121
+ # add_to_csv(input_files,human_score_csv)
122
+
123
+ corr(human_score_csv)
124
+
125
+
126
+ #idiom
127
+ # align Spearman correlation: 0.6723, p-value: 1.871e-14
128
+ # align Kendall correlation: 0.5246, p-value: 6.27e-13
129
+ # quality Spearman correlation: 0.1883, p-value: 0.06068
130
+ # quality Kendall correlation: 0.1544, p-value: 0.05925
131
+
132
+ #text image
133
+ # align Spearman correlation: 0.7426, p-value: 9.281e-19
134
+ # align Kendall correlation: 0.5829, p-value: 1.527e-15
135
+ # quality Spearman correlation: 0.4611, p-value: 1.378e-06
136
+ # quality Kendall correlation: 0.3457, p-value: 5.094e-06
137
+
138
+ # entity
139
+ # align Spearman correlation: 0.5180, p-value: 3.391e-08
140
+ # align Kendall correlation: 0.4098, p-value: 2.071e-07
141
+ # quality Spearman correlation: 0.3436, p-value: 0.0004646
142
+ # quality Kendall correlation: 0.3018, p-value: 0.0006653
entity.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3
2
+ bag,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,,,,,,
3
+ GPT,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,,,,,,
4
+ hid,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,,,,,,
5
+ jan,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,,,,,,
6
+ sd3,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,,,,,,
7
+ bag,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,,,,,,
8
+ GPT,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,,,,,,
9
+ hid,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,,,,,,
10
+ jan,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,,,,,,
11
+ sd3,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,,,,,,
12
+ bag,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,,,,,,
13
+ GPT,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,,,,,,
14
+ hid,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,,,,,,
15
+ jan,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,,,,,,
16
+ sd3,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,,,,,,
17
+ bag,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,,,,,,
18
+ GPT,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,,,,,,
19
+ hid,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,,,,,,
20
+ jan,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,,,,,,
21
+ sd3,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,,,,,,
22
+ bag,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,,,,,,
23
+ GPT,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,,,,,,
24
+ hid,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,,,,,,
25
+ jan,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,,,,,,
26
+ sd3,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,,,,,,
27
+ bag,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,,,,,,
28
+ GPT,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,,,,,,
29
+ hid,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,,,,,,
30
+ jan,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,,,,,,
31
+ sd3,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,,,,,,
32
+ bag,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,,,,,,
33
+ GPT,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,,,,,,
34
+ hid,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,,,,,,
35
+ jan,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,,,,,,
36
+ sd3,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,,,,,,
37
+ bag,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,,,,,,
38
+ GPT,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,,,,,,
39
+ hid,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,,,,,,
40
+ jan,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,,,,,,
41
+ sd3,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,,,,,,
42
+ bag,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,,,,,,
43
+ GPT,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,,,,,,
44
+ hid,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,,,,,,
45
+ jan,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,,,,,,
46
+ sd3,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,,,,,,
47
+ bag,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,,,,,,
48
+ GPT,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,,,,,,
49
+ hid,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,,,,,,
50
+ jan,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,,,,,,
51
+ sd3,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,,,,,,
52
+ bag,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",,,,,,
53
+ GPT,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",,,,,,
54
+ hid,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",,,,,,
55
+ jan,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",,,,,,
56
+ sd3,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",,,,,,
57
+ bag,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,,,,,,
58
+ GPT,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,,,,,,
59
+ hid,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,,,,,,
60
+ jan,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,,,,,,
61
+ sd3,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,,,,,,
62
+ bag,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",,,,,,
63
+ GPT,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",,,,,,
64
+ hid,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",,,,,,
65
+ jan,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",,,,,,
66
+ sd3,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",,,,,,
67
+ bag,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",,,,,,
68
+ GPT,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",,,,,,
69
+ hid,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",,,,,,
70
+ jan,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",,,,,,
71
+ sd3,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",,,,,,
72
+ bag,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,,,,,,
73
+ GPT,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,,,,,,
74
+ hid,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,,,,,,
75
+ jan,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,,,,,,
76
+ sd3,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,,,,,,
77
+ bag,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,,,,,,
78
+ GPT,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,,,,,,
79
+ hid,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,,,,,,
80
+ jan,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,,,,,,
81
+ sd3,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,,,,,,
82
+ bag,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,,,,,,
83
+ GPT,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,,,,,,
84
+ hid,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,,,,,,
85
+ jan,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,,,,,,
86
+ sd3,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,,,,,,
87
+ bag,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,,,,,,
88
+ GPT,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,,,,,,
89
+ hid,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,,,,,,
90
+ jan,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,,,,,,
91
+ sd3,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,,,,,,
92
+ bag,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,,,,,,
93
+ GPT,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,,,,,,
94
+ hid,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,,,,,,
95
+ jan,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,,,,,,
96
+ sd3,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,,,,,,
97
+ bag,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,,,,,,
98
+ GPT,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,,,,,,
99
+ hid,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,,,,,,
100
+ jan,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,,,,,,
101
+ sd3,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,,,,,,
human_corr.py ADDED
@@ -0,0 +1,403 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Pearson correlation coefficient
2
+ import argparse
3
+ import numpy as np
4
+ import json
5
+ import pandas as pd
6
+ import scipy.stats
7
+ import os
8
+ import math
9
+
10
+ def compute_correlation(set1, set2):
11
+ corr_coefficient = np.corrcoef(set1, set2)[0, 1]
12
+ return corr_coefficient
13
+
14
+ def compute_max_correlation(fix, var): #(350,3)
15
+ set1 = fix[:,0].flatten()
16
+ set2 = var[:,0].flatten()
17
+ max = np.corrcoef(set1,set2)[0, 1]
18
+ selected_human_score = set2
19
+ selected_human_index = np.zeros(num_images)
20
+
21
+ for i in range(num_images):
22
+ for j in range(3):
23
+ set2[i] = var[i,j]
24
+ corr_coefficient = np.corrcoef(set1, set2)[0, 1]
25
+ if corr_coefficient > max:
26
+ selected_human_score[i] = var[i,j]
27
+ selected_human_index[i] = j
28
+ max = corr_coefficient
29
+
30
+ return max,selected_human_index,selected_human_score
31
+
32
+ # Normalizing function using Min-Max scaling
33
+ def min_max_normalize(scores):
34
+ min_score = np.min(scores)
35
+ max_score = np.max(scores)
36
+ return (scores - min_score) / (max_score - min_score)
37
+
38
+ def scale_dict_values(input_dict):
39
+ # 获取字典中所有值
40
+ values = list(input_dict.values())
41
+
42
+ # 找到最小值和最大值
43
+ min_value = min(values)
44
+ max_value = max(values)
45
+
46
+ # 定义缩放函数
47
+ def scale_value(value):
48
+ return 1 + (value - min_value) * (5 - 1) / (max_value - min_value)
49
+
50
+ # 创建一个新的字典,其中所有值都缩放到1到5之间
51
+ scaled_dict = {key: scale_value(value) for key, value in input_dict.items()}
52
+
53
+ return scaled_dict
54
+
55
+ def parse_args():
56
+ parser = argparse.ArgumentParser(description="Demo")
57
+
58
+ parser.add_argument(
59
+ "--auto_evaluation",
60
+ type=str,
61
+ help="csv",
62
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_5_2/frame_score.csv" # TODO pkc
63
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_9_2/frame_score.csv" # TODO
64
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_2_2/frame_score_mechanism_3_1.csv" # TODO
65
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_2_2/frame_score_mechanism.csv" # TODO pick
66
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_6_2_gt/grid_score.csv" # TODO pick
67
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_6_2_gt/frame_score.csv"
68
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_6_2/video_score.csv" #
69
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_5_2/grid_score.csv" # TODO pick
70
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/clip/csv_output_6_2_gt/clip.csv" # TODO
71
+ # default ="/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_9_2_user_study/thresh_04_2_score.csv"
72
+ # default ="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/b_clip/csv_output_2_2/b_clip.csv"
73
+ # default ="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/clip/csv_output_2_2/clip.csv"
74
+ # default ="/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_2_2/video_score.csv"
75
+
76
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/grid_score_again.csv"
77
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/grid_score_6_again.csv"
78
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/grid_score_4_adjust_again.csv"
79
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/grid_score_8.csv"
80
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/frame_score_8.csv"
81
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/BLIP-vqa/csv_output_1_2_blipvqa.csv"
82
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_5_2/video_score.csv"
83
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_2_2/frame_score_mechanism_test.csv"
84
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_2_2/grid_score.csv"
85
+
86
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_combine_frame.csv"
87
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_combine_frame.csv"
88
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_combine_frame.csv"
89
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_2_combine_frame.csv",
90
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/Grounded-Segment-Anything/csv_3_depth_user_study/algorithm_035_combine_frame.csv"
91
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/Grounded-Segment-Anything/csv_3_depth_user_study/algorithm_035_addscore_combine_frame.csv"
92
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/clip/csv_output_3_2/clip.csv"
93
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/b_clip/csv_output_6_2/b_clip.csv"
94
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/dot/csv_4_2_user_study/4_2_user_study_score.csv"
95
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/clip/csv_output_4_2/clip.csv"
96
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/b_clip/csv_output_4_2/b_clip.csv"
97
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_4_2/frame_score.csv"
98
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_4_2/grid_score.csv"
99
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/frame_score_corrected.csv"
100
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_productscore_combine_frame.csv"
101
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_2_combine_frame.csv"
102
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/Grounded-Segment-Anything/csv_3_depth_user_study/algorithm_035_addscore_combine_frame.csv"
103
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/groundingDINO_3/spatial_final_2.csv"
104
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_corrected_combine_frame.csv"
105
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_corrected_combine_frame.csv"
106
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/csv_output_3_2_user_study_2d/user_study_2d_03_321split_algorithm_035_corrected_2_combine_frame.csv"
107
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/Grounded-Segment-Anything/csv_3_depth_user_study/algorithm_035_corrected_combine_frame.csv"
108
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/b_clip/csv_output_3_2/b_clip.csv"
109
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_3_2/frame_score.csv"
110
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_3_2/video_score.csv"
111
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_4_2/video_score.csv"
112
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/grid_score_8.csv"
113
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_1_2/frame_score_corrected_8_withinitial.csv"
114
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_1_2/video_score.csv"
115
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/BLIP-vqa/csv_output_1_2_blipvqa.csv"
116
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/b_clip/csv_output_1_2/b_clip.csv"
117
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/clip/csv_output_6_2_gt/clip.csv"
118
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/groundingDINO_3/spatial_method1.csv"
119
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/groundingDINO_3/spatial_method2.csv"
120
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_5_2/frame_score.csv"
121
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_5_2/grid_score_old.csv"
122
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/b_clip/csv_output_5_2/b_clip.csv"
123
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/clip/csv_output_5_2/clip.csv"
124
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/pllava/csv_output_5_2/video_score.csv"
125
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava/csv_output_5_2/frame_score_new.csv"
126
+
127
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/consistent_attr_rebuttal.csv"
128
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/dynamic_attr_rebuttal.csv"
129
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/spatial_relationship_rebuttal.csv"
130
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/motion_binding_rebuttal.csv"
131
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/action_rebuttal.csv"
132
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/interaction_rebuttal.csv"
133
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/viclip/numeracy_rebuttal.csv"
134
+
135
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/consistent_attr_rebuttal.csv"
136
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/dynamic_attr_rebuttal.csv"
137
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/spatial_relationship_rebuttal.csv"
138
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/motion_binding_rebuttal.csv"
139
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/action_rebuttal.csv"
140
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/interaction_rebuttal.csv"
141
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/EvalCrafter/blipbleu_rebuttal/numeracy_rebuttal.csv"
142
+
143
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/rebuttal_models/VPEval/csv_rebuttal/vpeval_user_study_video.csv"
144
+
145
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/GroundingDINO/rebuttal_videodirectorgpt_csv/M-GDino_user_study_rebuttal.csv"
146
+
147
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/LLaVA/cvpr_csv/csv_6/user_study/user-t0_object_interactions_score_0.0.csv",
148
+
149
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava_cvpr/csv_output_1_2/frame_score.csv",
150
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava_cvpr/csv_output_5_2/frame_score.csv",
151
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava_cvpr/csv_output_6_2_gt/frame_score.csv",
152
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava_cvpr/csv_output_1_2/frame_score_1st_last_2.csv"
153
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/auto_eval/llava_cvpr/csv_output_3_2/frame_score.csv",
154
+
155
+ # default = "/group/xihuiliu/sky/T2V-Compbench/metric/models/LLaVA/cvpr_csv/csv_1/user_study/cvpr_conv/user-t005_consistent_attr_score_0.05_4.csv",
156
+ )
157
+ parser.add_argument(
158
+ "--human_evaluation",
159
+ type=str,
160
+ help="csv",
161
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/action_grid_corrected.csv" # pick!!!
162
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/dynamic_attr.csv"
163
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/interaction_llava_grid.csv"
164
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/interaction_llava_grid_corrected_gt_filter2.csv" #pick!!!
165
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/dynamic_attr_mechanism_corrected.csv" #pick!!!
166
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/interaction_gt.csv"
167
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent spatial_human.csv"
168
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent spatial_human_corrected2.csv"
169
+ # default="/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/numeracy_human.csv"
170
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/numeracy_human_adjust.csv"
171
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/dynamic_spatial_human_1.csv"
172
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent attribute_human.csv"
173
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent attribute_human_2.csv"
174
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent attribute_human_corrected.csv"
175
+
176
+ default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent attribute_human_corrected_kaiyue.csv", #ok final
177
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/dynamic_attr_mechanism_corrected_kaiyue.csv" #ok final
178
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/consistent spatial_human_corrected2_kaiyue.csv" #ok final
179
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/dynamic_spatial_human_1_kaiyue.csv" #ok final
180
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/action_adjust_kaiyue_arxiv.csv" #ok final
181
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/interaction_llava_grid_corrected_gt_filter2_kaiyue.csv"
182
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/numeracy_human_adjust_corrected_kaiyue.csv"
183
+ # default = "/group/xihuiliu/sky/T2V-Compbench/user_study/human_eval/interaction_adjust_kaiyue.csv", #ok final
184
+
185
+
186
+ )
187
+
188
+ args = parser.parse_args()
189
+ return args
190
+
191
+ if __name__ == "__main__":
192
+
193
+ args = parse_args()
194
+ auto_evaluation = args.auto_evaluation
195
+
196
+
197
+
198
+ method = ["videocrafter2", "latte", "opensora11", "opensoraplan", "show1", "modelscope", "gt"]
199
+ dic_human = {} # store by model name, for calculating avg score for each model
200
+ dic_auto = {}# store by model name
201
+ dic_score_category = {}
202
+
203
+ dic_human_avg = {} # store by video name, for calculating human corr with avg score
204
+ dic_auto_avg = {} # store by video name
205
+
206
+ # hky
207
+
208
+ # get AMT score
209
+ # Define the path to your CSV file
210
+ csv_file = args.human_evaluation
211
+
212
+ # Read the CSV file into a pandas DataFrame
213
+ data_frame = pd.read_csv(csv_file)
214
+
215
+ try:
216
+ column_index = data_frame.columns.get_loc('Input.video')
217
+ except:
218
+ column_index = data_frame.columns.get_loc('Input.url')
219
+ column_name = data_frame.iloc[:,column_index]
220
+ column_name = column_name.to_numpy()
221
+
222
+ try:
223
+ score_index = data_frame.columns.get_loc('Answer.score')
224
+ except:
225
+ score_index = data_frame.columns.get_loc('Answer.correctness_answer')
226
+ score_AMT = data_frame.iloc[:,score_index]
227
+ score_AMT = score_AMT.to_numpy()
228
+
229
+
230
+ score_dic = {} # to store {method: {id: score,... },... }
231
+ # read from auto eval
232
+ csv_file_auto = args.auto_evaluation
233
+ data_frame_auto = pd.read_csv(csv_file_auto)
234
+ # read key = id, value = Score from csv
235
+ for i in range(len(data_frame_auto)):
236
+ # print(data_frame_auto.iloc[i])
237
+ # score_dic[(data_frame_auto.iloc[i]['name'].split(".")[0])] = float(data_frame_auto.iloc[i][-1])
238
+ score_dic[(data_frame_auto.iloc[i]['name'].split(".")[0])] = float(data_frame_auto.iloc[i]['Score'])
239
+ # score_dic[(data_frame_auto[0].split(".")[0])] = float(data_frame_auto.iloc[i]['Score'])
240
+
241
+ # score_dic[(data_frame_auto.iloc[i]['name'])] = float(data_frame_auto.iloc[i]['Score'])
242
+ # score_dic[(data_frame_auto.iloc[i]['id'])] = float(data_frame_auto.iloc[i]['Score'])
243
+ # # read from human eval's csv (col. "Input.video"), store {method: [score,...],...}
244
+ for me in range(len(method)): # initialize
245
+ dic_human[method[me]] = []
246
+ dic_auto[method[me]] = []
247
+ dic_score_category[method[me]] = []
248
+
249
+ print(score_dic)
250
+ record = np.empty(0)
251
+ score_human = np.empty(0) # for calculating human corr with all scores
252
+ score_norm = np.empty(0)
253
+
254
+ score_human_avg = np.empty(0) #f or calculating human corr with avg score
255
+ score_norm_avg = np.empty(0)
256
+
257
+ for i in range(len(column_name)): # initialize
258
+ c = column_name[i]
259
+ c = c.replace(".mp4","")
260
+ dic_human_avg[c] = []
261
+ dic_auto_avg[c] = []
262
+
263
+ # import pdb; pdb.set_trace()
264
+ # score_dic = scale_dict_values(score_dic) # TODO rescale to 1~5
265
+
266
+ for i in range(len(column_name)):
267
+
268
+ c = column_name[i]
269
+ c = c.replace(".mp4","")
270
+ s = score_AMT[i]
271
+
272
+ method_name = c.split("_")[-1]
273
+
274
+ # hky
275
+ index_name = method.index(method_name)
276
+ # print(method_name, index_num)
277
+ # score_norm = np.append(score_norm, score_dic[method_name][index_num])
278
+ # print(score_dic)
279
+ # print(c)
280
+ # print(score_dic[c])
281
+ try:
282
+ score_norm = np.append(score_norm, score_dic[c]) #TODO round or not
283
+ # import pdb; pdb.set_trace()
284
+ # auto_score = round(score_dic[c])
285
+ # score_norm = np.append(score_norm, auto_score)
286
+
287
+ score_human = np.append(score_human, (s/5))
288
+
289
+
290
+
291
+ record = np.append(record, c)
292
+ dic_human[method_name].append(s/5) # length 150
293
+ dic_auto[method_name].append(score_dic[c]) #
294
+
295
+ dic_score_category[method_name].append(score_dic[c])
296
+
297
+ dic_human_avg[c].append(s/5)
298
+ dic_auto_avg[c].append(score_dic[c]) #TODO round or not
299
+ # dic_auto_avg[c].append(auto_score)
300
+ except: # not for gt
301
+ continue
302
+
303
+ # import pdb; pdb.set_trace()
304
+
305
+ for k, v in dic_human_avg.items():
306
+ score_human_avg = np.append(score_human_avg, np.average(dic_human_avg[k]))
307
+ score_norm_avg = np.append(score_norm_avg, np.average(dic_auto_avg[k]))
308
+
309
+
310
+
311
+ Pearson_correlation_coefficient_all = compute_correlation(score_human,score_norm) #TODO change score_human, score_norm
312
+ print("Pearson correlation coefficient all:",f'{Pearson_correlation_coefficient_all: .4}')
313
+
314
+ score_diff = np.empty(0)
315
+ # Normalize the scores to the range [0, 1], and pick the larger different score
316
+ score_norm_norm = min_max_normalize(score_norm)
317
+ score_human_norm = min_max_normalize(score_human)
318
+
319
+ # Calculate the threshold
320
+ threshold = np.mean(np.abs(score_human_norm - score_norm_norm))
321
+
322
+
323
+ # Iterate through the scores and apply the condition
324
+ for i in range(len(score_norm)):
325
+ score_diff = np.append(score_diff, score_human_norm[i] - score_norm_norm[i])
326
+
327
+ if abs(score_norm_norm[i] - score_human_norm[i]) > threshold * 2:
328
+ score_diff = np.append(score_diff, [score_norm[i], score_human[i]])
329
+ print("Not aligned:", i, "score ori:", score_norm[i], "score from AMT", score_human[i])
330
+
331
+ print("##############################")
332
+
333
+ # score_diff = np.reshape(score_diff,(num_images,3))
334
+ # best_index = np.argmin(score_diff, axis=1)
335
+ # #score_diff_best = np.choose(best_index,score_diff.T)
336
+
337
+ # score_norm_reshape = np.reshape(score_norm,(num_images,3))
338
+ # score_norm_best = np.choose(best_index,score_norm_reshape.T)
339
+
340
+ # score_human_reshape = np.reshape(score_human,(num_images,3))
341
+ # score_human_best = np.choose(best_index,score_human_reshape.T) * 5 #best human score
342
+
343
+ # Pearson_correlation_coefficient_abs_diff = compute_correlation(score_human_best,score_norm_best)
344
+ # print("Pearson correlation coefficient with min abs diff:",f'{Pearson_correlation_coefficient_abs_diff: .4}')
345
+
346
+
347
+ # Pearson_correlation_coefficient_search_max,selected_human_index,selected_human_score = compute_max_correlation(score_norm_reshape, score_human_reshape) #(350,3)
348
+ # print("Pearson correlation coefficient with search max:",f'{Pearson_correlation_coefficient_search_max: .4}')
349
+
350
+ # score_norm_average = np.average(score_norm_reshape, axis=1)
351
+ # score_human_average = np.average(score_human_reshape, axis=1)
352
+ Pearson_correlation_coefficient_all = compute_correlation(score_norm, score_human)
353
+ print("Pearson correlation coefficient all:",f'{Pearson_correlation_coefficient_all: .4}')
354
+
355
+ Pearson_correlation_coefficient_avg = compute_correlation(score_norm_avg, score_human_avg)
356
+ print("Pearson correlation coefficient avg:",f'{Pearson_correlation_coefficient_avg: .4}')
357
+
358
+
359
+ kendalltau_all,p_value_all = scipy.stats.kendalltau(score_human, score_norm)
360
+ print("kendall's Tau_all: ", f'{kendalltau_all: .4}', " p_value_all: ", f'{p_value_all: .4}')
361
+ # kendalltau_abs_diff,p_value_abs_diff = scipy.stats.kendalltau(score_human_best,score_norm_best)
362
+ # print("kendall's Tau with abs diff: ", f'{kendalltau_abs_diff: .4}', " p_value: ", f'{p_value_abs_diff: .4}')
363
+ #kendalltau_search_max = scipy.stats.kendalltau(x, y)
364
+ kendalltau_avg, p_value_avg = scipy.stats.kendalltau(score_human_avg, score_norm_avg)
365
+ print("kendall's Tau avg: ", f'{kendalltau_avg: .4}', " p_value: ", f'{p_value_avg: .4}')
366
+
367
+ spearmanr_all = scipy.stats.spearmanr(score_human,score_norm)
368
+ print("spearmanr's rho all", f'{spearmanr_all.statistic: .4}', f'{spearmanr_all.pvalue: .4}')
369
+ # spearmanr_abs_diff = scipy.stats.spearmanr(score_human_best, score_norm_best)
370
+ # print("spearmanr's rho with abs diff", f'{spearmanr_abs_diff.statistic: .4}', f'{spearmanr_abs_diff.pvalue: .4}')
371
+ spearmanr_avg = scipy.stats.spearmanr(score_human_avg, score_norm_avg)
372
+ print("spearmanr's rho avg", f'{spearmanr_avg.statistic: .4}', f'{spearmanr_avg.pvalue: .4}')
373
+
374
+ #auto avg per model
375
+ print("##############################")
376
+ # import pdb; pdb.set_trace()
377
+ for i in range(len(method)):
378
+ auto_avg = np.average(dic_auto[method[i]])
379
+ human_avg = np.average(dic_human[method[i]])
380
+ print(method[i], " auto_avg: ", f'{auto_avg: .4}', " human_avg:", f'{human_avg: .4}'," human eval length / method", len(dic_human[method[i]]))
381
+
382
+
383
+ # for i in range (len(method)):
384
+ # #corr within per model
385
+ # mPearson_all = compute_correlation(dic_human[method[i]], dic_score_category[method[i]])
386
+ # mkendalltau_all, mp_value_all = scipy.stats.kendalltau(dic_human[method[i]], dic_score_category[method[i]])
387
+ # mspearmanr_all = scipy.stats.spearmanr(dic_human[method[i]], dic_score_category[method[i]])
388
+
389
+ # m_human_reshape = np.reshape(dic_human[method[i]], (50, 3))
390
+ # m_auto_reshape = np.reshape(dic_score_category[method[i]], (50, 3))
391
+ # m_human_average = np.average(m_human_reshape, axis=1)
392
+ # m_auto_average = np.average(m_auto_reshape, axis=1)
393
+
394
+ # mPearson_average = compute_correlation(m_human_average, m_auto_average)
395
+ # mkendalltau_avg, mp_value_avg = scipy.stats.kendalltau(m_human_average, m_auto_average)
396
+ # mspearmanr_avg = scipy.stats.spearmanr(m_human_average, m_auto_average)
397
+
398
+ # print(method[i])
399
+ # print(" Pearson all:", f'{mPearson_all: .4}', " Pearson avg", f'{mPearson_average: .4}')
400
+ # print(" kendall all:", f'{mkendalltau_all: .4}', " p value", f'{mp_value_all: .4}',end=" ")
401
+ # print(" spearman all:", f'{mspearmanr_all.statistic: .4}', f'{mspearmanr_all.pvalue: .4}')
402
+ # print(" kendall avg:", f'{mkendalltau_avg: .4}', " p value", f'{mp_value_avg: .4}',end=" ")
403
+ # print(" spearman avg:", f'{mspearmanr_avg.statistic: .4}',f'{mspearmanr_avg.pvalue: .4}')
human_corr_vqa_entity.py ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # row = rows[idx]
19
+
20
+ # 倒数第三和倒数第二个元素
21
+ fourth_last = target_row[-4]
22
+ third_last = target_row[-3] #align score
23
+ second_last = target_row[-2] #quality score
24
+ output_rows.append([fourth_last, third_last, second_last])
25
+
26
+ # 2. 读取原CSV内容
27
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
28
+ reader = csv.reader(f)
29
+ original_rows = list(reader)
30
+
31
+ # 3. 检查行数是否匹配
32
+ if len(original_rows) - 1 != len(output_rows):
33
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
34
+
35
+ # 4. 拼接新列,写入新文件
36
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
37
+ writer = csv.writer(f)
38
+ # 写表头
39
+ writer.writerow(original_rows[0][0:10] + ['qwen_reason', 'qwen_alignment', 'qwen_quality'])
40
+ # 写数据行
41
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
42
+ writer.writerow(orig_row[0:10] + new_col)
43
+
44
+
45
+ def corr(combined_csv):
46
+ avg_align_list = []
47
+ avg_quality_list= []
48
+ qwen_align_list = []
49
+ qwen_quality_list = []
50
+
51
+ with open(combined_csv, newline='', encoding='utf-8') as f:
52
+ reader = csv.reader(f)
53
+ header = next(reader) # 跳过表头
54
+ for row in reader:
55
+ # 取倒数第3、4、5列
56
+ alignment_123 = [float(row[-9]), float(row[-8]), float(row[-7])]
57
+ # quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
58
+ alignment_avg = np.mean(alignment_123)
59
+ # quality_avg = np.mean(quality_123)
60
+ avg_align_list.append(alignment_avg)
61
+ # avg_quality_list.append(quality_avg)
62
+ # 取倒数第2列
63
+ qwen_alignment = float(row[-3])
64
+ qwen_detail = float(row[-2])
65
+ qwen_quality = float(row[-1])
66
+
67
+ qwen_alignment_qualilty = 0.7*qwen_alignment + 0.2*qwen_detail + 0.1*qwen_quality
68
+
69
+ qwen_align_list.append(qwen_alignment_qualilty)
70
+ # qwen_quality_list.append(qwen_quality)
71
+
72
+
73
+
74
+ # 2. 计算相关性
75
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_align_list)
76
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_align_list)
77
+
78
+ # quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
79
+ # quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
80
+
81
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
82
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
83
+
84
+ print(f"{align_kendall_corr:.4f} & {align_spearman_corr:.4f} &")
85
+ # print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
86
+ # print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
87
+
88
+
89
+ if __name__ == "__main__":
90
+
91
+
92
+
93
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity_vqa_2.csv"
94
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity_clip.csv"
95
+
96
+ # input_files = [
97
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
98
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
99
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
100
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
101
+ # "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
102
+ # ]
103
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
104
+
105
+ # input_files = [
106
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
107
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
108
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
109
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
110
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
111
+ # ]
112
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
113
+
114
+
115
+ input_files = [
116
+ "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
117
+ "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
118
+ "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
119
+ "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
120
+ "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
121
+ ]
122
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
123
+
124
+ add_to_csv(input_files,human_score_csv)
125
+
126
+ corr(human_score_csv)
127
+
128
+
129
+
130
+
131
+ # entity 0.7 0.3
132
+ # align Spearman correlation: 0.6148, p-value: 1.012e-11
133
+ # align Kendall correlation: 0.4732, p-value: 2.094e-10
134
+ # quality Spearman correlation: 0.3947, p-value: 4.824e-05
135
+ # quality Kendall correlation: 0.3141, p-value: 0.0001425
136
+
137
+ # VQA_Score
138
+ # align Spearman correlation: 0.6133, p-value: 1.175e-11
139
+ # align Kendall correlation: 0.4483, p-value: 7.196e-10
140
+
141
+ # CLIP
142
+ # align Spearman correlation: 0.3837, p-value: 8.11e-05
143
+ # align Kendall correlation: 0.2732, p-value: 0.0001741
human_corr_vqa_idiom.py ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # row = rows[idx]
19
+
20
+ # 倒数第三和倒数第二个元素
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:10] + ['qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:10] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_align_list = []
48
+ qwen_quality_list = []
49
+
50
+ with open(combined_csv, newline='', encoding='utf-8') as f:
51
+ reader = csv.reader(f)
52
+ header = next(reader) # 跳过表头
53
+ for row in reader:
54
+ # 取倒数第3、4、5列
55
+ alignment_123 = [float(row[-8]), float(row[-7]), float(row[-6])]
56
+ # quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
57
+ alignment_avg = np.mean(alignment_123)
58
+ # quality_avg = np.mean(quality_123)
59
+ avg_align_list.append(alignment_avg)
60
+ # avg_quality_list.append(quality_avg)
61
+ # 取倒数第2列
62
+ qwen_alignment = float(row[-2])
63
+ qwen_quality = float(row[-1])
64
+
65
+ qwen_alignment_qualilty = 0.9*qwen_alignment + 0.1*qwen_quality
66
+
67
+ # qwen_align_list.append(qwen_alignment)
68
+ # qwen_quality_list.append(qwen_quality)
69
+ qwen_align_list.append(qwen_alignment_qualilty)
70
+
71
+
72
+ # 2. 计算相关性
73
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_align_list)
74
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_align_list)
75
+
76
+ # quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
77
+ # quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
78
+
79
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
80
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
81
+
82
+ print(f"{align_kendall_corr:.4f} & {align_spearman_corr:.4f} &")
83
+ # print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
84
+ # print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
85
+
86
+
87
+ if __name__ == "__main__":
88
+
89
+
90
+
91
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom_vqa.csv"
92
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom_clip.csv"
93
+ input_files = [
94
+ "/group/xihuiliu/sky/reasoning/csv/idiom/bagel.csv",
95
+ "/group/xihuiliu/sky/reasoning/csv/idiom/GPT.csv",
96
+ "/group/xihuiliu/sky/reasoning/csv/idiom/hidream.csv",
97
+ "/group/xihuiliu/sky/reasoning/csv/idiom/janus_pro_7B.csv",
98
+ "/group/xihuiliu/sky/reasoning/csv/idiom/sd30_medium.csv",
99
+ ]
100
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/idiom.csv"
101
+
102
+ # input_files = [
103
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
104
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
105
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
106
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
107
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
108
+ # ]
109
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
110
+
111
+
112
+ # input_files = [
113
+ # "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
114
+ # "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
115
+ # "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
116
+ # "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
117
+ # "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
118
+ # ]
119
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
120
+
121
+ add_to_csv(input_files,human_score_csv)
122
+
123
+ corr(human_score_csv)
124
+
125
+
126
+ #idiom
127
+ # align Spearman correlation: 0.6723, p-value: 1.871e-14
128
+ # align Kendall correlation: 0.5246, p-value: 6.27e-13
129
+ # quality Spearman correlation: 0.1883, p-value: 0.06068
130
+ # quality Kendall correlation: 0.1544, p-value: 0.05925
131
+
132
+ # vqa
133
+ # align Spearman correlation: 0.5672, p-value: 7.622e-10
134
+ # align Kendall correlation: 0.4091, p-value: 7.273e-09
135
+
136
+ #clip
137
+ # align Spearman correlation: 0.4348, p-value: 6.161e-06
138
+ # align Kendall correlation: 0.3186, p-value: 6.646e-06
human_corr_vqa_physics.py ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # row = rows[idx]
19
+
20
+ # 倒数第三和倒数第二个元素
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:10] + ['qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:10] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_align_list = []
48
+ qwen_quality_list = []
49
+
50
+ with open(combined_csv, newline='', encoding='utf-8') as f:
51
+ reader = csv.reader(f)
52
+ header = next(reader) # 跳过表头
53
+ for row in reader:
54
+ # 取倒数第3、4、5列
55
+ alignment_123 = [float(row[-10]), float(row[-9]), float(row[-8])]
56
+ # quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
57
+ alignment_avg = np.mean(alignment_123)
58
+ # quality_avg = np.mean(quality_123)
59
+ avg_align_list.append(alignment_avg)
60
+ # avg_quality_list.append(quality_avg)
61
+ # 取倒数第2列
62
+ qwen_alignment = float(row[-1])
63
+ # qwen_quality = float(row[-1])
64
+ qwen_align_list.append(qwen_alignment)
65
+ # qwen_quality_list.append(qwen_quality)
66
+
67
+
68
+
69
+ # 2. 计算相关性
70
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_align_list)
71
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_align_list)
72
+
73
+ # quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
74
+ # quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
75
+
76
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
77
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
78
+
79
+ # print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
80
+ # print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
81
+
82
+
83
+ if __name__ == "__main__":
84
+
85
+
86
+
87
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics_vqa.csv"
88
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics_clip.csv"
89
+
90
+ input_files = [
91
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
92
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
93
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
94
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
95
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
96
+ ]
97
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
98
+
99
+ # input_files = [
100
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
101
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
102
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
103
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
104
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
105
+ # ]
106
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
107
+
108
+
109
+ # input_files = [
110
+ # "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
111
+ # "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
112
+ # "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
113
+ # "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
114
+ # "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
115
+ # ]
116
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
117
+
118
+ add_to_csv(input_files,human_score_csv)
119
+
120
+ corr(human_score_csv)
121
+
122
+
123
+
124
+ # physics 0.7 0.3
125
+ # align Spearman correlation: 0.5777, p-value: 3.131e-10
126
+ # align Kendall correlation: 0.4490, p-value: 5.498e-10
127
+ # quality Spearman correlation: 0.2652, p-value: 0.007651
128
+ # quality Kendall correlation: 0.2080, p-value: 0.007783
129
+
130
+ #vqa
131
+ # align Spearman correlation: 0.4939, p-value: 1.766e-07
132
+ # align Kendall correlation: 0.3698, p-value: 2.276e-07
133
+
134
+ #clip
135
+ # align Spearman correlation: 0.2657, p-value: 0.007544
136
+ # align Kendall correlation: 0.1905, p-value: 0.00771
human_corr_vqa_text_image.py ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ from scipy.stats import spearmanr, kendalltau
4
+
5
+ def add_to_csv(input_files,human_score_csv):
6
+ output_rows = []
7
+ for idx in [0,10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190]:
8
+ for filename in input_files:
9
+ with open(filename, newline='', encoding='utf-8') as f:
10
+ reader = csv.reader(f)
11
+ header = next(reader) # 跳过表头
12
+ rows = list(reader)
13
+ if idx < len(rows):
14
+ for row in rows:
15
+ if row[0] == f"{idx+1:04d}.png":
16
+ target_row = row
17
+ break
18
+ # row = rows[idx]
19
+
20
+ # 倒数第三和倒数第二个元素
21
+ third_last = target_row[-3] #align score
22
+ second_last = target_row[-2] #quality score
23
+ output_rows.append([third_last, second_last])
24
+
25
+ # 2. 读取原CSV内容
26
+ with open(human_score_csv, newline='', encoding='utf-8') as f:
27
+ reader = csv.reader(f)
28
+ original_rows = list(reader)
29
+
30
+ # 3. 检查行数是否匹配
31
+ if len(original_rows) - 1 != len(output_rows):
32
+ raise ValueError("原CSV数据行数与新列数据行数不一致,请检查!")
33
+
34
+ # 4. 拼接新列,写入新文件
35
+ with open(human_score_csv, 'w', newline='', encoding='utf-8') as f:
36
+ writer = csv.writer(f)
37
+ # 写表头
38
+ writer.writerow(original_rows[0][0:10] + ['qwen_alignment', 'qwen_quality'])
39
+ # 写数据行
40
+ for orig_row, new_col in zip(original_rows[1:], output_rows):
41
+ writer.writerow(orig_row[0:10] + new_col)
42
+
43
+
44
+ def corr(combined_csv):
45
+ avg_align_list = []
46
+ avg_quality_list= []
47
+ qwen_align_list = []
48
+ qwen_quality_list = []
49
+
50
+ with open(combined_csv, newline='', encoding='utf-8') as f:
51
+ reader = csv.reader(f)
52
+ header = next(reader) # 跳过表头
53
+ for row in reader:
54
+ # 取倒数第3、4、5列
55
+ alignment_123 = [float(row[-9]), float(row[-8]), float(row[-7])]
56
+ # quality_123 = [float(row[-5]), float(row[-4]), float(row[-3])]
57
+ alignment_avg = np.mean(alignment_123)
58
+ # quality_avg = np.mean(quality_123)
59
+ avg_align_list.append(alignment_avg)
60
+ # avg_quality_list.append(quality_avg)
61
+ # 取倒数第2列
62
+ qwen_alignment = float(row[-2])
63
+ qwen_quality = float(row[-1])
64
+ qwen_alignment_qualilty = 0.9*qwen_alignment + 0.1*qwen_quality
65
+
66
+ # qwen_align_list.append(qwen_alignment)
67
+ # qwen_quality_list.append(qwen_quality)
68
+ qwen_align_list.append(qwen_alignment_qualilty)
69
+
70
+
71
+ # 2. 计算相关性
72
+ align_spearman_corr, align_spearman_p = spearmanr(avg_align_list, qwen_align_list)
73
+ align_kendall_corr, align_kendall_p = kendalltau(avg_align_list, qwen_align_list)
74
+
75
+ # quality_spearman_corr, quality_spearman_p = spearmanr(avg_quality_list, qwen_quality_list)
76
+ # quality_kendall_corr, quality_kendall_p = kendalltau(avg_quality_list, qwen_quality_list)
77
+
78
+ print(f"align Spearman correlation: {align_spearman_corr:.4f}, p-value: {align_spearman_p:.4g}")
79
+ print(f"align Kendall correlation: {align_kendall_corr:.4f}, p-value: {align_kendall_p:.4g}")
80
+
81
+ print(f"{align_kendall_corr:.4f} & {align_spearman_corr:.4f} &")
82
+ # print(f"quality Spearman correlation: {quality_spearman_corr:.4f}, p-value: {quality_spearman_p:.4g}")
83
+ # print(f"quality Kendall correlation: {quality_kendall_corr:.4f}, p-value: {quality_kendall_p:.4g}")
84
+
85
+
86
+ if __name__ == "__main__":
87
+
88
+
89
+
90
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image_vqa.csv"
91
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image_clip.csv"
92
+ input_files = [
93
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/bagel.csv",
94
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/GPT.csv",
95
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/hidream.csv",
96
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/janus_pro_7B.csv",
97
+ "/group/xihuiliu/sky/reasoning/csv/text_image_new/sd30_medium.csv",
98
+ ]
99
+ human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/text_image.csv"
100
+
101
+ # input_files = [
102
+ # "/group/xihuiliu/sky/reasoning/csv/entity/bagel.csv",
103
+ # "/group/xihuiliu/sky/reasoning/csv/entity/GPT.csv",
104
+ # "/group/xihuiliu/sky/reasoning/csv/entity/hidream.csv",
105
+ # "/group/xihuiliu/sky/reasoning/csv/entity/janus_pro_7B.csv",
106
+ # "/group/xihuiliu/sky/reasoning/csv/entity/sd30_medium.csv",
107
+ # ]
108
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/entity.csv"
109
+
110
+
111
+ # input_files = [
112
+ # "/group/xihuiliu/sky/reasoning/csv/physics/bagel.csv",
113
+ # "/group/xihuiliu/sky/reasoning/csv/physics/GPT.csv",
114
+ # "/group/xihuiliu/sky/reasoning/csv/physics/hidream.csv",
115
+ # "/group/xihuiliu/sky/reasoning/csv/physics/janus_pro_7B.csv",
116
+ # "/group/xihuiliu/sky/reasoning/csv/physics/sd30_medium.csv",
117
+ # ]
118
+ # human_score_csv = "/group/xihuiliu/sky/reasoning/human_eval/human_score/physics.csv"
119
+
120
+ add_to_csv(input_files,human_score_csv)
121
+
122
+ corr(human_score_csv)
123
+
124
+
125
+
126
+ #text image
127
+ # align Spearman correlation: 0.7426, p-value: 9.281e-19
128
+ # align Kendall correlation: 0.5829, p-value: 1.527e-15
129
+ # quality Spearman correlation: 0.4611, p-value: 1.378e-06
130
+ # quality Kendall correlation: 0.3457, p-value: 5.094e-06
131
+
132
+ # vqa
133
+ # align Spearman correlation: 0.6590, p-value: 9.063e-14
134
+ # align Kendall correlation: 0.4890, p-value: 3.845e-12
135
+
136
+ # clip
137
+ # align Spearman correlation: 0.7187, p-value: 3.784e-17
138
+ # align Kendall correlation: 0.5372, p-value: 2.383e-14
human_score/entity.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality
2
+ bag,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,3,3,4,5,5,5,0.0,0.0,1.0
3
+ GPT,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,4,3,5,5,5,0.5,0.0,1.0
4
+ hid,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,3,5,5,5,0.0,0.25,0.6666666666666666
5
+ jan,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,2,2,2,4,3,4,0.0,0.0,0.6666666666666666
6
+ sd3,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,2,4,3,4,0.0,0.25,0.6666666666666666
7
+ bag,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,5,5,5,0.5,0.0,0.0
8
+ GPT,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,5,4,4,5,5,5,0.0,0.8333333333333334,0.6666666666666666
9
+ hid,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,3,4,2,5,4,4,0.0,1.0,0.3333333333333333
10
+ jan,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,1,1,1,2,3,2,0.0,0.0,0.0
11
+ sd3,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,3,4,3,0.5,0.8333333333333334,0.3333333333333333
12
+ bag,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,4,5,5,5,0.25,0.5,1.0
13
+ GPT,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,5,5,5,5,1.0,0.3333333333333333,1.0
14
+ hid,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,4,4,5,5,5,0.5,0.5,1.0
15
+ jan,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,3,3,3,4,4,0.5,0.3333333333333333,1.0
16
+ sd3,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,4,4,5,5,5,0.5,0.3333333333333333,1.0
17
+ bag,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,2,0.25,0.5,1.0
18
+ GPT,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,1.0,1.0
19
+ hid,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,0.3333333333333333,1.0
20
+ jan,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,3,0.0,0.16666666666666666,1.0
21
+ sd3,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,5,4,5,0.25,0.3333333333333333,1.0
22
+ bag,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,2,2,5,5,4,0.5,0.3333333333333333,1.0
23
+ GPT,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,3,5,5,5,0.5,0.8333333333333334,1.0
24
+ hid,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,2,5,5,5,0.5,0.6666666666666666,0.8333333333333334
25
+ jan,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,1,2,1,2,1,1,0.5,0.5,1.0
26
+ sd3,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,2,3,2,2,2,1,0.75,0.0,1.0
27
+ bag,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,4,4,0.0,0.8333333333333334,0.6666666666666666
28
+ GPT,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,5,5,5,5,5,5,0.75,0.8333333333333334,1.0
29
+ hid,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,5,5,5,0.75,0.6666666666666666,1.0
30
+ jan,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,3,2,0.75,0.6666666666666666,1.0
31
+ sd3,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,2,4,3,0.75,0.8333333333333334,1.0
32
+ bag,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,5,4,4,0.0,0.16666666666666666,1.0
33
+ GPT,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,1.0,0.8333333333333334,1.0
34
+ hid,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,0.75,0.6666666666666666,1.0
35
+ jan,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,2,0.0,0.5,0.8333333333333334
36
+ sd3,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,3,0.5,0.6666666666666666,1.0
37
+ bag,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,5,5,5,0.0,0.5,1.0
38
+ GPT,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,5,5,5,5,5,5,1.0,0.6666666666666666,1.0
39
+ hid,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,3,4,3,3,4,4,0.75,0.8333333333333334,1.0
40
+ jan,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,3,3,3,3,1.0,0.8333333333333334,1.0
41
+ sd3,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,3,4,3,0.0,0.6666666666666666,0.6666666666666666
42
+ bag,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,2,3,3,5,4,4,1.0,1.0,1.0
43
+ GPT,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,5,5,5,5,5,5,1.0,1.0,0.8333333333333334
44
+ hid,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,4,4,5,5,5,1.0,0.8333333333333334,1.0
45
+ jan,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,3,3,3,4,3,1.0,1.0,0.6666666666666666
46
+ sd3,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,3,3,3,5,4,5,1.0,1.0,1.0
47
+ bag,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0
48
+ GPT,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,0.8333333333333334,1.0
49
+ hid,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,3,5,4,4,1.0,0.6666666666666666,1.0
50
+ jan,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,2,2,2,3,3,3,1.0,0.8333333333333334,1.0
51
+ sd3,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0
52
+ bag,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0
53
+ GPT,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0
54
+ hid,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,4,5,5,5,1.0,1.0,1.0
55
+ jan,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,3,2,2,0.5,1.0,0.8333333333333334
56
+ sd3,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,5,5,5,1.0,0.8333333333333334,1.0
57
+ bag,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,4,5,4,5,5,5,0.75,1.0,1.0
58
+ GPT,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,5,5,5,5,5,5,1.0,1.0,1.0
59
+ hid,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,2,5,5,5,0.75,1.0,1.0
60
+ jan,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,1,2,3,2,0.0,0.5,1.0
61
+ sd3,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,1,1,3,5,4,0.0,0.3333333333333333,0.6666666666666666
62
+ bag,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0
63
+ GPT,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0
64
+ hid,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0
65
+ jan,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0
66
+ sd3,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0
67
+ bag,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,1.0
68
+ GPT,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,4,5,5,5,1.0,1.0,0.8333333333333334
69
+ hid,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,0.6666666666666666
70
+ jan,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,3,3,3,1.0,1.0,0.8333333333333334
71
+ sd3,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,4,1.0,1.0,0.8333333333333334
72
+ bag,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,4,3,3,5,5,5,1.0,0.25,1.0
73
+ GPT,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,5,5,5,5,5,1.0,1.0,1.0
74
+ hid,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,4,3,5,5,5,1.0,1.0,1.0
75
+ jan,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,1,1,1,2,2,2,0.0,0.0,0.6666666666666666
76
+ sd3,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,2,2,2,2,3,3,0.0,1.0,0.6666666666666666
77
+ bag,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0
78
+ GPT,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0
79
+ hid,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0
80
+ jan,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,4,5,1.0,0.8333333333333334,1.0
81
+ sd3,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,0.8333333333333334,1.0
82
+ bag,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.5,0.0,0.5
83
+ GPT,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.25,0.0,0.5
84
+ hid,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.5,0.0,0.5
85
+ jan,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,3,4,3,0.0,0.0,0.5
86
+ sd3,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.0,0.0,0.5
87
+ bag,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.25,0.6666666666666666,1.0
88
+ GPT,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.0,1.0,1.0
89
+ hid,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0
90
+ jan,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.5,1.0,1.0
91
+ sd3,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0
92
+ bag,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0
93
+ GPT,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0
94
+ hid,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0
95
+ jan,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,2,2,2,2,2,2,0.0,1.0,0.6666666666666666
96
+ sd3,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,3,2,3,5,5,5,0.75,1.0,1.0
97
+ bag,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0
98
+ GPT,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,3,2,5,5,5,0.8333333333333334,1.0,1.0
99
+ hid,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.8333333333333334,0.5,1.0
100
+ jan,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.16666666666666666,0.5,1.0
101
+ sd3,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0
human_score/entity_clip.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality,clip_score
2
+ bag,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,3,3,4,5,5,5,0.0,0.0,1.0,0.207763671875
3
+ GPT,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,4,3,5,5,5,0.5,0.0,1.0,0.28125
4
+ hid,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,3,5,5,5,0.0,0.25,0.6666666666666666,0.2900390625
5
+ jan,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,2,2,2,4,3,4,0.0,0.0,0.6666666666666666,0.26513671875
6
+ sd3,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,2,4,3,4,0.0,0.25,0.6666666666666666,0.27001953125
7
+ bag,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,5,5,5,0.5,0.0,0.0,0.3056640625
8
+ GPT,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,5,4,4,5,5,5,0.0,0.8333333333333334,0.6666666666666666,0.3251953125
9
+ hid,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,3,4,2,5,4,4,0.0,1.0,0.3333333333333333,0.340576171875
10
+ jan,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,1,1,1,2,3,2,0.0,0.0,0.0,0.2939453125
11
+ sd3,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,3,4,3,0.5,0.8333333333333334,0.3333333333333333,0.3193359375
12
+ bag,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,4,5,5,5,0.25,0.5,1.0,0.29736328125
13
+ GPT,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,5,5,5,5,1.0,0.3333333333333333,1.0,0.312255859375
14
+ hid,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,4,4,5,5,5,0.5,0.5,1.0,0.2998046875
15
+ jan,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,3,3,3,4,4,0.5,0.3333333333333333,1.0,0.2958984375
16
+ sd3,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,4,4,5,5,5,0.5,0.3333333333333333,1.0,0.3056640625
17
+ bag,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,2,0.25,0.5,1.0,0.301513671875
18
+ GPT,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,1.0,1.0,0.345947265625
19
+ hid,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,0.3333333333333333,1.0,0.30517578125
20
+ jan,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,3,0.0,0.16666666666666666,1.0,0.2491455078125
21
+ sd3,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,5,4,5,0.25,0.3333333333333333,1.0,0.31201171875
22
+ bag,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,2,2,5,5,4,0.5,0.3333333333333333,1.0,0.336181640625
23
+ GPT,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,3,5,5,5,0.5,0.8333333333333334,1.0,0.3349609375
24
+ hid,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,2,5,5,5,0.5,0.6666666666666666,0.8333333333333334,0.32666015625
25
+ jan,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,1,2,1,2,1,1,0.5,0.5,1.0,0.344482421875
26
+ sd3,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,2,3,2,2,2,1,0.75,0.0,1.0,0.320068359375
27
+ bag,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,4,4,0.0,0.8333333333333334,0.6666666666666666,0.30078125
28
+ GPT,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,5,5,5,5,5,5,0.75,0.8333333333333334,1.0,0.32080078125
29
+ hid,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,5,5,5,0.75,0.6666666666666666,1.0,0.33935546875
30
+ jan,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,3,2,0.75,0.6666666666666666,1.0,0.3505859375
31
+ sd3,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,2,4,3,0.75,0.8333333333333334,1.0,0.30712890625
32
+ bag,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,5,4,4,0.0,0.16666666666666666,1.0,0.269775390625
33
+ GPT,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,1.0,0.8333333333333334,1.0,0.268310546875
34
+ hid,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,0.75,0.6666666666666666,1.0,0.28662109375
35
+ jan,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,2,0.0,0.5,0.8333333333333334,0.2509765625
36
+ sd3,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,3,0.5,0.6666666666666666,1.0,0.284912109375
37
+ bag,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,5,5,5,0.0,0.5,1.0,0.2364501953125
38
+ GPT,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,5,5,5,5,5,5,1.0,0.6666666666666666,1.0,0.292236328125
39
+ hid,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,3,4,3,3,4,4,0.75,0.8333333333333334,1.0,0.28076171875
40
+ jan,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,3,3,3,3,1.0,0.8333333333333334,1.0,0.294189453125
41
+ sd3,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,3,4,3,0.0,0.6666666666666666,0.6666666666666666,0.27685546875
42
+ bag,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,2,3,3,5,4,4,1.0,1.0,1.0,0.35205078125
43
+ GPT,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,5,5,5,5,5,5,1.0,1.0,0.8333333333333334,0.373046875
44
+ hid,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,4,4,5,5,5,1.0,0.8333333333333334,1.0,0.35888671875
45
+ jan,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,3,3,3,4,3,1.0,1.0,0.6666666666666666,0.337646484375
46
+ sd3,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,3,3,3,5,4,5,1.0,1.0,1.0,0.37255859375
47
+ bag,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0,0.321044921875
48
+ GPT,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,0.8333333333333334,1.0,0.31591796875
49
+ hid,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,3,5,4,4,1.0,0.6666666666666666,1.0,0.32421875
50
+ jan,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,2,2,2,3,3,3,1.0,0.8333333333333334,1.0,0.33935546875
51
+ sd3,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0,0.31884765625
52
+ bag,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0,0.341796875
53
+ GPT,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0,0.3515625
54
+ hid,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,4,5,5,5,1.0,1.0,1.0,0.3623046875
55
+ jan,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,3,2,2,0.5,1.0,0.8333333333333334,0.365478515625
56
+ sd3,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,5,5,5,1.0,0.8333333333333334,1.0,0.32421875
57
+ bag,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,4,5,4,5,5,5,0.75,1.0,1.0,0.289794921875
58
+ GPT,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,5,5,5,5,5,5,1.0,1.0,1.0,0.281494140625
59
+ hid,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,2,5,5,5,0.75,1.0,1.0,0.313720703125
60
+ jan,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,1,2,3,2,0.0,0.5,1.0,0.29443359375
61
+ sd3,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,1,1,3,5,4,0.0,0.3333333333333333,0.6666666666666666,0.2587890625
62
+ bag,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.322998046875
63
+ GPT,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.32763671875
64
+ hid,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.34765625
65
+ jan,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.33642578125
66
+ sd3,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.333984375
67
+ bag,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,1.0,0.3017578125
68
+ GPT,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,4,5,5,5,1.0,1.0,0.8333333333333334,0.357666015625
69
+ hid,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,0.6666666666666666,0.31396484375
70
+ jan,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,3,3,3,1.0,1.0,0.8333333333333334,0.35009765625
71
+ sd3,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,4,1.0,1.0,0.8333333333333334,0.298095703125
72
+ bag,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,4,3,3,5,5,5,1.0,0.25,1.0,0.295654296875
73
+ GPT,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,5,5,5,5,5,1.0,1.0,1.0,0.342529296875
74
+ hid,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,4,3,5,5,5,1.0,1.0,1.0,0.345458984375
75
+ jan,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,1,1,1,2,2,2,0.0,0.0,0.6666666666666666,0.311279296875
76
+ sd3,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,2,2,2,2,3,3,0.0,1.0,0.6666666666666666,0.33251953125
77
+ bag,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.345703125
78
+ GPT,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.357177734375
79
+ hid,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.35595703125
80
+ jan,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,4,5,1.0,0.8333333333333334,1.0,0.353759765625
81
+ sd3,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.35986328125
82
+ bag,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.5,0.0,0.5,0.282958984375
83
+ GPT,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.25,0.0,0.5,0.3076171875
84
+ hid,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.5,0.0,0.5,0.306640625
85
+ jan,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,3,4,3,0.0,0.0,0.5,0.31640625
86
+ sd3,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.0,0.0,0.5,0.295166015625
87
+ bag,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.25,0.6666666666666666,1.0,0.30712890625
88
+ GPT,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.0,1.0,1.0,0.317138671875
89
+ hid,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0,0.352783203125
90
+ jan,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.5,1.0,1.0,0.35791015625
91
+ sd3,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0,0.3564453125
92
+ bag,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.313232421875
93
+ GPT,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.31298828125
94
+ hid,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.3330078125
95
+ jan,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,2,2,2,2,2,2,0.0,1.0,0.6666666666666666,0.273193359375
96
+ sd3,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,3,2,3,5,5,5,0.75,1.0,1.0,0.32568359375
97
+ bag,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0,0.299560546875
98
+ GPT,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,3,2,5,5,5,0.8333333333333334,1.0,1.0,0.33154296875
99
+ hid,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.8333333333333334,0.5,1.0,0.30517578125
100
+ jan,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.16666666666666666,0.5,1.0,0.309326171875
101
+ sd3,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0,0.338134765625
human_score/entity_vqa.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality,vqa_score
2
+ bag,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,3,3,4,5,5,5,0.0,0.0,1.0,0.6609578132629395
3
+ GPT,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,4,3,5,5,5,0.5,0.0,1.0,0.9091742634773254
4
+ hid,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,3,5,5,5,0.0,0.25,0.6666666666666666,0.6136783361434937
5
+ jan,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,2,2,2,4,3,4,0.0,0.0,0.6666666666666666,0.4385758638381958
6
+ sd3,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,2,4,3,4,0.0,0.25,0.6666666666666666,0.6136788725852966
7
+ bag,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,5,5,5,0.5,0.0,0.0,0.4168607294559479
8
+ GPT,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,5,4,4,5,5,5,0.0,0.8333333333333334,0.6666666666666666,0.9654427766799927
9
+ hid,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,3,4,2,5,4,4,0.0,1.0,0.3333333333333333,0.881629467010498
10
+ jan,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,1,1,1,2,3,2,0.0,0.0,0.0,0.8620487451553345
11
+ sd3,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,3,4,3,0.5,0.8333333333333334,0.3333333333333333,0.7287584543228149
12
+ bag,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,4,5,5,5,0.25,0.5,1.0,0.7174628376960754
13
+ GPT,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,5,5,5,5,1.0,0.3333333333333333,1.0,0.7980450987815857
14
+ hid,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,4,4,5,5,5,0.5,0.5,1.0,0.695388913154602
15
+ jan,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,3,3,3,4,4,0.5,0.3333333333333333,1.0,0.7980456352233887
16
+ sd3,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,4,4,5,5,5,0.5,0.3333333333333333,1.0,0.7287606596946716
17
+ bag,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,2,0.25,0.5,1.0,0.6609513759613037
18
+ GPT,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,1.0,1.0,0.967549204826355
19
+ hid,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,0.3333333333333333,1.0,0.9562923908233643
20
+ jan,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,3,0.0,0.16666666666666666,1.0,0.193858340382576
21
+ sd3,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,5,4,5,0.25,0.3333333333333333,1.0,0.7387894988059998
22
+ bag,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,2,2,5,5,4,0.5,0.3333333333333333,1.0,0.8066622614860535
23
+ GPT,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,3,5,5,5,0.5,0.8333333333333334,1.0,0.6494386196136475
24
+ hid,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,2,5,5,5,0.5,0.6666666666666666,0.8333333333333334,0.9091736674308777
25
+ jan,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,1,2,1,2,1,1,0.5,0.5,1.0,0.8545061349868774
26
+ sd3,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,2,3,2,2,2,1,0.75,0.0,1.0,0.6381231546401978
27
+ bag,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,4,4,0.0,0.8333333333333334,0.6666666666666666,0.8544927835464478
28
+ GPT,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,5,5,5,5,5,5,0.75,0.8333333333333334,1.0,0.8470073938369751
29
+ hid,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,5,5,5,0.75,0.6666666666666666,1.0,0.8620438575744629
30
+ jan,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,3,2,0.75,0.6666666666666666,1.0,0.8233587741851807
31
+ sd3,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,2,4,3,0.75,0.8333333333333334,1.0,0.815361738204956
32
+ bag,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,5,4,4,0.0,0.16666666666666666,1.0,0.7980450391769409
33
+ GPT,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,1.0,0.8333333333333334,1.0,0.9563038349151611
34
+ hid,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,0.75,0.6666666666666666,1.0,0.9612188935279846
35
+ jan,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,2,0.0,0.5,0.8333333333333334,0.7174625992774963
36
+ sd3,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,3,0.5,0.6666666666666666,1.0,0.8933336734771729
37
+ bag,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,5,5,5,0.0,0.5,1.0,0.7592644095420837
38
+ GPT,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,5,5,5,5,5,5,1.0,0.6666666666666666,1.0,0.9481617212295532
39
+ hid,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,3,4,3,3,4,4,0.75,0.8333333333333334,1.0,0.8153722286224365
40
+ jan,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,3,3,3,3,1.0,0.8333333333333334,1.0,0.8241671919822693
41
+ sd3,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,3,4,3,0.0,0.6666666666666666,0.6666666666666666,0.6726732850074768
42
+ bag,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,2,3,3,5,4,4,1.0,1.0,1.0,0.7795592546463013
43
+ GPT,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,5,5,5,5,5,5,1.0,1.0,0.8333333333333334,0.9091755151748657
44
+ hid,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,4,4,5,5,5,1.0,0.8333333333333334,1.0,0.7795590758323669
45
+ jan,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,3,3,3,4,3,1.0,1.0,0.6666666666666666,0.7174631953239441
46
+ sd3,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,3,3,3,5,4,5,1.0,1.0,1.0,0.931190550327301
47
+ bag,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0,0.18789425492286682
48
+ GPT,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,0.8333333333333334,1.0,0.2910163104534149
49
+ hid,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,3,5,4,4,1.0,0.6666666666666666,1.0,0.19385871291160583
50
+ jan,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,2,2,2,3,3,3,1.0,0.8333333333333334,1.0,0.8747707605361938
51
+ sd3,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0,0.23021288216114044
52
+ bag,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0,0.9481676816940308
53
+ GPT,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0,0.9449324011802673
54
+ hid,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,4,5,5,5,1.0,1.0,1.0,0.9348360300064087
55
+ jan,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,3,2,2,0.5,1.0,0.8333333333333334,0.9384946823120117
56
+ sd3,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,5,5,5,1.0,0.8333333333333334,1.0,0.9449323415756226
57
+ bag,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,4,5,4,5,5,5,0.75,1.0,1.0,0.8688116669654846
58
+ GPT,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,5,5,5,5,5,5,1.0,1.0,1.0,0.8933330774307251
59
+ hid,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,2,5,5,5,0.75,1.0,1.0,0.881633460521698
60
+ jan,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,1,2,3,2,0.0,0.5,1.0,0.6018085479736328
61
+ sd3,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,1,1,3,5,4,0.0,0.3333333333333333,0.6666666666666666,0.24505989253520966
62
+ bag,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.9509491920471191
63
+ GPT,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.9633339047431946
64
+ hid,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.9384945631027222
65
+ jan,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.9307356476783752
66
+ sd3,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.9612197279930115
67
+ bag,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,1.0,0.9348231554031372
68
+ GPT,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,4,5,5,5,1.0,1.0,0.8333333333333334,0.9307264089584351
69
+ hid,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,0.6666666666666666,0.9612173438072205
70
+ jan,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,3,3,3,1.0,1.0,0.8333333333333334,0.9270849823951721
71
+ sd3,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,4,1.0,1.0,0.8333333333333334,0.9481599926948547
72
+ bag,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,4,3,3,5,5,5,1.0,0.25,1.0,0.6136796474456787
73
+ GPT,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,5,5,5,5,5,1.0,1.0,1.0,0.7980473041534424
74
+ hid,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,4,3,5,5,5,1.0,1.0,1.0,0.7174641489982605
75
+ jan,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,1,1,1,2,2,2,0.0,0.0,0.6666666666666666,0.37513476610183716
76
+ sd3,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,2,2,2,2,3,3,0.0,1.0,0.6666666666666666,0.4267471134662628
77
+ bag,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.9675768613815308
78
+ GPT,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.9654531478881836
79
+ hid,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.9588761925697327
80
+ jan,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,4,5,1.0,0.8333333333333334,1.0,0.9654533863067627
81
+ sd3,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.9654533267021179
82
+ bag,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.5,0.0,0.5,0.6136793494224548
83
+ GPT,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.25,0.0,0.5,0.7980472445487976
84
+ hid,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.5,0.0,0.5,0.898584246635437
85
+ jan,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,3,4,3,0.0,0.0,0.5,0.6609583497047424
86
+ sd3,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.0,0.0,0.5,0.7174637317657471
87
+ bag,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.25,0.6666666666666666,1.0,0.9185471534729004
88
+ GPT,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.0,1.0,1.0,0.9140729904174805
89
+ hid,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0,0.9091765880584717
90
+ jan,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.5,1.0,1.0,0.9185473918914795
91
+ sd3,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0,0.9348363280296326
92
+ bag,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.9185455441474915
93
+ GPT,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.9654525518417358
94
+ hid,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.9563038349151611
95
+ jan,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,2,2,2,2,2,2,0.0,1.0,0.6666666666666666,0.7592741847038269
96
+ sd3,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,3,2,3,5,5,5,0.75,1.0,1.0,0.9271071553230286
97
+ bag,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0,0.7980464696884155
98
+ GPT,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,3,2,5,5,5,0.8333333333333334,1.0,1.0,0.9230428338050842
99
+ hid,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.8333333333333334,0.5,1.0,0.9038646817207336
100
+ jan,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.16666666666666666,0.5,1.0,0.8747729063034058
101
+ sd3,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0,0.8876816034317017
human_score/entity_vqa_2.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality,vqa_score
2
+ bag,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,3,3,4,5,5,5,0.0,0.0,1.0,0.6609578132629395
3
+ GPT,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,4,3,5,5,5,0.5,0.0,1.0,0.9091742634773254
4
+ hid,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,3,5,5,5,0.0,0.25,0.6666666666666666,0.6136783361434937
5
+ jan,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,2,2,2,4,3,4,0.0,0.0,0.6666666666666666,0.4385758638381958
6
+ sd3,0001.png,The city hosting the first modern Olympic Games,Athens hosting the first modern Olympic Games,4,3,2,4,3,4,0.0,0.25,0.6666666666666666,0.6136788725852966
7
+ bag,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,5,5,5,0.5,0.0,0.0,0.4168607294559479
8
+ GPT,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,5,4,4,5,5,5,0.0,0.8333333333333334,0.6666666666666666,0.9654427766799927
9
+ hid,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,3,4,2,5,4,4,0.0,1.0,0.3333333333333333,0.881629467010498
10
+ jan,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,1,1,1,2,3,2,0.0,0.0,0.0,0.8620487451553345
11
+ sd3,0011.png,The film winning Best Animated Feature at the 2014 Academy Awards,Frozen winning Best Animated Feature at the 2014 Academy Awards,2,2,2,3,4,3,0.5,0.8333333333333334,0.3333333333333333,0.7287584543228149
12
+ bag,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,4,5,5,5,0.25,0.5,1.0,0.7174628376960754
13
+ GPT,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,5,5,5,5,5,1.0,0.3333333333333333,1.0,0.7980450987815857
14
+ hid,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,5,4,4,5,5,5,0.5,0.5,1.0,0.695388913154602
15
+ jan,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,3,3,3,4,4,0.5,0.3333333333333333,1.0,0.7980456352233887
16
+ sd3,0021.png,The rover exploring Mars' Gale Crater since 2012,Curiosity rover conducting exploration in Mars' Gale Crater since 2012,4,4,4,5,5,5,0.5,0.3333333333333333,1.0,0.7287606596946716
17
+ bag,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,2,0.25,0.5,1.0,0.6609513759613037
18
+ GPT,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,1.0,1.0,0.967549204826355
19
+ hid,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,5,5,5,5,5,5,0.75,0.3333333333333333,1.0,0.9562923908233643
20
+ jan,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,4,3,3,0.0,0.16666666666666666,1.0,0.193858340382576
21
+ sd3,0031.png,The CEO of Tesla unveiling the first electric car in 2008,Elon Musk unveiling the first electric car at Tesla in 2008,2,2,2,5,4,5,0.25,0.3333333333333333,1.0,0.7387894988059998
22
+ bag,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,2,2,5,5,4,0.5,0.3333333333333333,1.0,0.8066622614860535
23
+ GPT,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,3,5,5,5,0.5,0.8333333333333334,1.0,0.6494386196136475
24
+ hid,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,3,3,2,5,5,5,0.5,0.6666666666666666,0.8333333333333334,0.9091736674308777
25
+ jan,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,1,2,1,2,1,1,0.5,0.5,1.0,0.8545061349868774
26
+ sd3,0041.png,The figure skater landing triple axel jumps at the 2018 Winter Olympics,Alina Zagitova landing triple axel jumps at the 2018 Winter Olympics,2,3,2,2,2,1,0.75,0.0,1.0,0.6381231546401978
27
+ bag,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,4,4,0.0,0.8333333333333334,0.6666666666666666,0.8544927835464478
28
+ GPT,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,5,5,5,5,5,5,0.75,0.8333333333333334,1.0,0.8470073938369751
29
+ hid,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,5,5,5,0.75,0.6666666666666666,1.0,0.8620438575744629
30
+ jan,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,4,3,2,0.75,0.6666666666666666,1.0,0.8233587741851807
31
+ sd3,0051.png,The actress winning an Oscar for her role in 'The Reader' in 2009,Kate Winslet winning an Oscar for her role in 'The Reader' in 2009,2,2,2,2,4,3,0.75,0.8333333333333334,1.0,0.815361738204956
32
+ bag,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,5,4,4,0.0,0.16666666666666666,1.0,0.7980450391769409
33
+ GPT,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,1.0,0.8333333333333334,1.0,0.9563038349151611
34
+ hid,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,4,4,3,5,5,5,0.75,0.6666666666666666,1.0,0.9612188935279846
35
+ jan,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,2,0.0,0.5,0.8333333333333334,0.7174625992774963
36
+ sd3,0061.png,The musician known for the song 'Thriller' released in 1982,Michael Jackson known for the song 'Thriller' released in 1982,2,2,2,3,2,3,0.5,0.6666666666666666,1.0,0.8933336734771729
37
+ bag,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,5,5,5,0.0,0.5,1.0,0.7592644095420837
38
+ GPT,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,5,5,5,5,5,5,1.0,0.6666666666666666,1.0,0.9481617212295532
39
+ hid,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,3,4,3,3,4,4,0.75,0.8333333333333334,1.0,0.8153722286224365
40
+ jan,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,3,3,3,3,3,1.0,0.8333333333333334,1.0,0.8241671919822693
41
+ sd3,0071.png,The scientist proposing the theory of evolution in 1859,Charles Darwin proposing the theory of evolution in 1859,2,2,2,3,4,3,0.0,0.6666666666666666,0.6666666666666666,0.6726732850074768
42
+ bag,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,2,3,4,5,4,4,1.0,1.0,1.0,0.7795592546463013
43
+ GPT,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,5,5,5,5,5,5,1.0,1.0,0.8333333333333334,0.9091755151748657
44
+ hid,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,4,4,5,5,5,1.0,0.8333333333333334,1.0,0.7795590758323669
45
+ jan,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,4,3,3,3,4,3,1.0,1.0,0.6666666666666666,0.7174631953239441
46
+ sd3,0081.png,The ancient Greek silver coin stamped with Athena's owl symbol,Drachma stamped with Athena's owl symbol,3,3,4,5,4,5,1.0,1.0,1.0,0.931190550327301
47
+ bag,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0,0.18789425492286682
48
+ GPT,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,0.8333333333333334,1.0,0.2910163104534149
49
+ hid,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,3,5,4,4,1.0,0.6666666666666666,1.0,0.19385871291160583
50
+ jan,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,2,2,2,3,3,3,1.0,0.8333333333333334,1.0,0.8747707605361938
51
+ sd3,0091.png,The social media platform using blue bird logo until 2023,Twitter using blue bird logo before 2023,4,4,4,5,5,5,1.0,1.0,1.0,0.23021288216114044
52
+ bag,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0,0.9481676816940308
53
+ GPT,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",5,5,5,5,5,5,1.0,1.0,1.0,0.9449324011802673
54
+ hid,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,4,5,5,5,1.0,1.0,1.0,0.9348360300064087
55
+ jan,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,3,2,2,0.5,1.0,0.8333333333333334,0.9384946823120117
56
+ sd3,0101.png,The white marble mausoleum in India mirrored in moonlit river,"The white marble mausoleum in India, Taj Mahal, mirrored in moonlit river",4,3,3,5,5,5,1.0,0.8333333333333334,1.0,0.9449323415756226
57
+ bag,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,4,5,4,5,5,5,0.75,1.0,1.0,0.8688116669654846
58
+ GPT,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,5,5,5,5,5,5,1.0,1.0,1.0,0.8933330774307251
59
+ hid,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,2,5,5,5,0.75,1.0,1.0,0.881633460521698
60
+ jan,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,2,1,2,3,2,0.0,0.5,1.0,0.6018085479736328
61
+ sd3,0111.png,The serpentine defensive structure winding across northern China,The Great Wall winding across northern China,2,1,1,3,5,4,0.0,0.3333333333333333,0.6666666666666666,0.24505989253520966
62
+ bag,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.9509491920471191
63
+ GPT,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.9633339047431946
64
+ hid,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.9384945631027222
65
+ jan,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.9307356476783752
66
+ sd3,0121.png,Rainbow-colored hot spring steaming in Yellowstone,"Rainbow-colored hot springs, Grand Prismatic Spring, steaming in Yellowstone",5,5,5,5,5,5,1.0,1.0,1.0,0.9612197279930115
67
+ bag,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,1.0,0.9348231554031372
68
+ GPT,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,4,5,5,5,1.0,1.0,0.8333333333333334,0.9307264089584351
69
+ hid,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,5,1.0,1.0,0.6666666666666666,0.9612173438072205
70
+ jan,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,3,3,3,1.0,1.0,0.8333333333333334,0.9270849823951721
71
+ sd3,0131.png,Cherry blossom petals swirling around the snow-capped volcano in Japan,"Cherry blossom petals swirling around the snow-capped volcano, Mount Fuji, in Japan",5,5,5,5,5,4,1.0,1.0,0.8333333333333334,0.9481599926948547
72
+ bag,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,4,3,3,5,5,5,1.0,0.25,1.0,0.6136796474456787
73
+ GPT,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,5,5,5,5,5,1.0,1.0,1.0,0.7980473041534424
74
+ hid,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,5,4,3,5,5,5,1.0,1.0,1.0,0.7174641489982605
75
+ jan,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,1,1,1,2,2,2,0.0,0.0,0.6666666666666666,0.37513476610183716
76
+ sd3,0141.png,The animal sleeping 20 hours daily in eucalyptus trees,Koala sleeping 20 hours daily in eucalyptus trees,2,2,2,2,3,3,0.0,1.0,0.6666666666666666,0.4267471134662628
77
+ bag,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.9675768613815308
78
+ GPT,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.9654531478881836
79
+ hid,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,1.0,1.0,0.9588761925697327
80
+ jan,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,4,5,1.0,0.8333333333333334,1.0,0.9654533863067627
81
+ sd3,0151.png,The animal with black and white stripes grazing in African grasslands,Zebra with black and white stripes grazing in African grasslands,5,5,5,5,5,5,1.0,0.8333333333333334,1.0,0.9654533267021179
82
+ bag,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.5,0.0,0.5,0.6136793494224548
83
+ GPT,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.25,0.0,0.5,0.7980472445487976
84
+ hid,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,4,4,4,5,5,5,0.5,0.0,0.5,0.898584246635437
85
+ jan,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,3,4,3,0.0,0.0,0.5,0.6609583497047424
86
+ sd3,0161.png,The Mediterranean herb with silver-green leaves used to crown ancient Olympic champions,Olive Branch with silver-green leaves used to crown ancient Olympic champions,2,2,2,5,5,5,0.0,0.0,0.5,0.7174637317657471
87
+ bag,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.25,0.6666666666666666,1.0,0.9185471534729004
88
+ GPT,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.0,1.0,1.0,0.9140729904174805
89
+ hid,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0,0.9091765880584717
90
+ jan,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,5,5,5,5,0.5,1.0,1.0,0.9185473918914795
91
+ sd3,0171.png,The plant with heart-shaped leaves and aerial roots clinging to walls,Ivy with heart-shaped leaves and aerial roots clinging to walls,5,5,4,5,5,5,0.25,0.8333333333333334,1.0,0.9348363280296326
92
+ bag,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.9185455441474915
93
+ GPT,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.9654525518417358
94
+ hid,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,5,5,5,5,5,5,1.0,1.0,1.0,0.9563038349151611
95
+ jan,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,2,2,2,2,2,2,0.0,1.0,0.6666666666666666,0.7592741847038269
96
+ sd3,0181.png,The French pastry recognized by its flaky laminated dough layers,Croissant recognized by its flaky laminated dough layers,3,2,3,5,5,5,0.75,1.0,1.0,0.9271071553230286
97
+ bag,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0,0.7980464696884155
98
+ GPT,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,3,2,5,5,5,0.8333333333333334,1.0,1.0,0.9230428338050842
99
+ hid,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.8333333333333334,0.5,1.0,0.9038646817207336
100
+ jan,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.16666666666666666,0.5,1.0,0.8747729063034058
101
+ sd3,0191.png,The Mexican fruit with leathery skin and blood-red pulp containing edible black seeds,Dragon Fruit with leathery skin and blood-red pulp containing edible black seeds,2,2,2,5,5,5,0.6666666666666666,0.5,1.0,0.8876816034317017
human_score/idiom.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_alignment,qwen_quality
2
+ bag,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,4,3,3,5,5,5,0.875,1.0
3
+ GPT,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,5,5,5,5,5,5,1.0,1.0
4
+ hid,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,3,2,5,5,5,0.75,1.0
5
+ jan,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,1,2,2,3,2,2,0.5,0.8333333333333334
6
+ sd3,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,2,3,4,4,3,0.875,1.0
7
+ bag,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",5,4,4,5,5,5,0.9,1.0
8
+ GPT,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",4,3,3,5,5,5,0.4,1.0
9
+ hid,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",3,3,3,5,5,5,0.5,1.0
10
+ jan,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",1,2,2,3,2,3,0.6,1.0
11
+ sd3,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",2,2,2,4,3,4,0.4,1.0
12
+ bag,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",3,3,3,5,5,5,0.0,1.0
13
+ GPT,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",5,4,5,4,3,4,0.6,1.0
14
+ hid,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,2,1,5,4,4,0.0,1.0
15
+ jan,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",1,1,1,1,1,2,0.0,1.0
16
+ sd3,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,1,3,2,3,3,0.0,1.0
17
+ bag,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",3,2,2,5,4,5,0.2,1.0
18
+ GPT,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",5,4,3,5,4,4,0.9,1.0
19
+ hid,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,2,5,5,5,0.1,1.0
20
+ jan,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,1,4,3,3,0.0,1.0
21
+ sd3,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",1,2,2,4,3,2,0.3,1.0
22
+ bag,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",4,4,3,5,5,5,0.25,1.0
23
+ GPT,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",2,1,1,5,4,3,0.625,1.0
24
+ hid,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",3,2,3,5,5,4,0.375,1.0
25
+ jan,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,1,2,1,0.0,1.0
26
+ sd3,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,4,3,3,0.0,0.8333333333333334
27
+ bag,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",4,3,3,5,5,5,0.875,0.5
28
+ GPT,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",5,4,3,5,5,5,0.75,1.0
29
+ hid,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,4,3,5,4,4,0.5,1.0
30
+ jan,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",1,1,1,2,2,1,0.375,1.0
31
+ sd3,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,3,3,3,4,3,0.5,1.0
32
+ bag,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,2,2,4,3,3,0.25,0.8333333333333334
33
+ GPT,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,2,2,5,3,4,0.625,1.0
34
+ hid,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,4,3,4,3,4,0.625,1.0
35
+ jan,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",2,1,1,3,2,2,0.125,0.6666666666666666
36
+ sd3,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,1,2,4,4,4,0.25,0.5
37
+ bag,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",2,3,4,5,3,4,1.0,0.6666666666666666
38
+ GPT,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",5,4,4,5,3,3,1.0,1.0
39
+ hid,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",4,4,3,4,5,5,0.75,0.8333333333333334
40
+ jan,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",2,1,2,3,4,3,0.375,0.3333333333333333
41
+ sd3,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",1,1,2,4,3,4,0.25,0.6666666666666666
42
+ bag,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,2,3,5,4,5,0.2,0.8333333333333334
43
+ GPT,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",3,4,2,5,4,4,0.9,1.0
44
+ hid,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,3,2,5,4,5,0.3,1.0
45
+ jan,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,1,2,3,3,3,0.5,1.0
46
+ sd3,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,2,1,4,3,4,0.3,0.8333333333333334
47
+ bag,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,4,4,4,5,3,4,0.9,1.0
48
+ GPT,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,5,4,5,3,4,4,1.0,1.0
49
+ hid,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,5,5,5,4,5,4,1.0,1.0
50
+ jan,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,1,1,1,1,1,2,0.0,0.6666666666666666
51
+ sd3,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,2,2,2,3,2,2,0.1,1.0
52
+ bag,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",4,3,3,4,3,3,0.0,0.5
53
+ GPT,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",3,3,2,3,3,4,0.875,1.0
54
+ hid,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",1,2,1,4,4,4,0.0,0.5
55
+ jan,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",1,1,1,2,2,3,0.0,0.25
56
+ sd3,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",3,2,2,3,3,2,0.0,0.5
57
+ bag,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,1,2,1,5,4,3,0.0,1.0
58
+ GPT,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,5,5,4,5,5,5,0.6,1.0
59
+ hid,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,2,2,2,3,2,3,0.5,1.0
60
+ jan,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,1,1,1,3,3,2,0.0,1.0
61
+ sd3,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,3,2,3,1,1,2,0.4,1.0
62
+ bag,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,3,2,5,4,4,0.25,0.6666666666666666
63
+ GPT,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",4,4,4,3,4,3,0.875,1.0
64
+ hid,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,2,2,5,5,5,0.375,1.0
65
+ jan,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",1,2,2,2,2,3,0.25,0.5
66
+ sd3,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,2,3,5,4,5,0.375,0.8333333333333334
67
+ bag,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",3,2,2,5,5,5,0.4,1.0
68
+ GPT,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",3,4,4,3,4,4,0.9,1.0
69
+ hid,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",4,4,3,5,4,5,0.7,1.0
70
+ jan,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",1,2,1,3,2,3,0.4,0.8333333333333334
71
+ sd3,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",1,1,1,3,3,2,0.3,1.0
72
+ bag,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,2,2,3,4,3,0.375,0.6666666666666666
73
+ GPT,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",5,4,5,5,4,3,0.5,1.0
74
+ hid,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,2,2,5,4,5,0.125,0.6666666666666666
75
+ jan,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",1,1,1,2,2,2,0.0,0.6666666666666666
76
+ sd3,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,1,1,2,1,1,0.125,0.6666666666666666
77
+ bag,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,4,4,3,0.4,0.6666666666666666
78
+ GPT,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,4,4,3,0.9,1.0
79
+ hid,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,3,2,3,4,4,3,0.7,1.0
80
+ jan,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,1,2,2,3,2,0.2,1.0
81
+ sd3,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,5,5,4,0.2,1.0
82
+ bag,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,5,0.25,0.6666666666666666
83
+ GPT,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,3,3,2,5,4,5,0.75,0.8333333333333334
84
+ hid,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,5,0.25,0.6666666666666666
85
+ jan,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,3,4,3,0.25,0.6666666666666666
86
+ sd3,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,4,0.25,0.6666666666666666
87
+ bag,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.8,1.0
88
+ GPT,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.7,1.0
89
+ hid,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.7,1.0
90
+ jan,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,2,2,3,1.0,1.0
91
+ sd3,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,2,3,3,0.8,1.0
92
+ bag,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,3,4,5,4,0.7,1.0
93
+ GPT,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,4,4,3,3,4,0.9,0.6666666666666666
94
+ hid,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,3,4,4,5,0.5,0.5
95
+ jan,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,2,2,3,3,0.2,0.8333333333333334
96
+ sd3,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,2,3,4,4,0.4,0.6666666666666666
97
+ bag,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,5,5,5,0.625,0.6666666666666666
98
+ GPT,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",3,3,2,5,5,5,1.0,1.0
99
+ hid,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,5,5,5,0.5,1.0
100
+ jan,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",1,2,2,3,2,2,0.5,0.6666666666666666
101
+ sd3,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,4,3,3,0.75,0.8333333333333334
human_score/idiom_clip.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_alignment,qwen_quality,clip_score
2
+ bag,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,4,3,3,5,5,5,0.875,1.0,0.2437744140625
3
+ GPT,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,5,5,5,5,5,5,1.0,1.0,0.385498046875
4
+ hid,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,3,2,5,5,5,0.75,1.0,0.23583984375
5
+ jan,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,1,2,2,3,2,2,0.5,0.8333333333333334,0.2467041015625
6
+ sd3,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,2,3,4,4,3,0.875,1.0,0.30029296875
7
+ bag,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",5,4,4,5,5,5,0.9,1.0,0.2271728515625
8
+ GPT,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",4,3,3,5,5,5,0.4,1.0,0.29443359375
9
+ hid,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",3,3,3,5,5,5,0.5,1.0,0.2301025390625
10
+ jan,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",1,2,2,3,2,3,0.6,1.0,0.2274169921875
11
+ sd3,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",2,2,2,4,3,4,0.4,1.0,0.2410888671875
12
+ bag,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",3,3,3,5,5,5,0.0,1.0,0.227294921875
13
+ GPT,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",5,4,5,4,3,4,0.6,1.0,0.3359375
14
+ hid,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,2,1,5,4,4,0.0,1.0,0.30419921875
15
+ jan,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",1,1,1,1,1,2,0.0,1.0,0.2186279296875
16
+ sd3,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,1,3,2,3,3,0.0,1.0,0.21533203125
17
+ bag,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",3,2,2,5,4,5,0.2,1.0,0.276123046875
18
+ GPT,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",5,4,3,5,4,4,0.9,1.0,0.31787109375
19
+ hid,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,2,5,5,5,0.1,1.0,0.2568359375
20
+ jan,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,1,4,3,3,0.0,1.0,0.26171875
21
+ sd3,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",1,2,2,4,3,2,0.3,1.0,0.26904296875
22
+ bag,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",4,4,3,5,5,5,0.25,1.0,0.24658203125
23
+ GPT,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",2,1,1,5,4,3,0.625,1.0,0.36962890625
24
+ hid,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",3,2,3,5,5,4,0.375,1.0,0.368896484375
25
+ jan,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,1,2,1,0.0,1.0,0.208740234375
26
+ sd3,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,4,3,3,0.0,0.8333333333333334,0.22412109375
27
+ bag,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",4,3,3,5,5,5,0.875,0.5,0.2322998046875
28
+ GPT,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",5,4,3,5,5,5,0.75,1.0,0.30517578125
29
+ hid,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,4,3,5,4,4,0.5,1.0,0.265380859375
30
+ jan,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",1,1,1,2,2,1,0.375,1.0,0.225830078125
31
+ sd3,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,3,3,3,4,3,0.5,1.0,0.285888671875
32
+ bag,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,2,2,4,3,3,0.25,0.8333333333333334,0.2330322265625
33
+ GPT,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,2,2,5,3,4,0.625,1.0,0.35595703125
34
+ hid,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,4,3,4,3,4,0.625,1.0,0.359375
35
+ jan,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",2,1,1,3,2,2,0.125,0.6666666666666666,0.250732421875
36
+ sd3,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,1,2,4,4,4,0.25,0.5,0.236328125
37
+ bag,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",2,3,4,5,3,4,1.0,0.6666666666666666,0.248046875
38
+ GPT,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",5,4,4,5,3,3,1.0,1.0,0.251708984375
39
+ hid,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",4,4,3,4,5,5,0.75,0.8333333333333334,0.26611328125
40
+ jan,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",2,1,2,3,4,3,0.375,0.3333333333333333,0.2274169921875
41
+ sd3,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",1,1,2,4,3,4,0.25,0.6666666666666666,0.2386474609375
42
+ bag,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,2,3,5,4,5,0.2,0.8333333333333334,0.281494140625
43
+ GPT,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",3,4,2,5,4,4,0.9,1.0,0.3134765625
44
+ hid,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,3,2,5,4,5,0.3,1.0,0.264892578125
45
+ jan,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,1,2,3,3,3,0.5,1.0,0.25048828125
46
+ sd3,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,2,1,4,3,4,0.3,0.8333333333333334,0.314208984375
47
+ bag,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,4,4,4,5,3,4,0.9,1.0,0.282470703125
48
+ GPT,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,5,4,5,3,4,4,1.0,1.0,0.339599609375
49
+ hid,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,5,5,5,4,5,4,1.0,1.0,0.34619140625
50
+ jan,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,1,1,1,1,1,2,0.0,0.6666666666666666,0.22216796875
51
+ sd3,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,2,2,2,3,2,2,0.1,1.0,0.290771484375
52
+ bag,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",4,3,3,4,3,3,0.0,0.5,0.2188720703125
53
+ GPT,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",3,3,2,3,3,4,0.875,1.0,0.272705078125
54
+ hid,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",1,2,1,4,4,4,0.0,0.5,0.2037353515625
55
+ jan,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",1,1,1,2,2,3,0.0,0.25,0.2237548828125
56
+ sd3,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",3,2,2,3,3,2,0.0,0.5,0.1856689453125
57
+ bag,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,1,2,1,5,4,3,0.0,1.0,0.192138671875
58
+ GPT,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,5,5,4,5,5,5,0.6,1.0,0.2388916015625
59
+ hid,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,2,2,2,3,2,3,0.5,1.0,0.292724609375
60
+ jan,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,1,1,1,3,3,2,0.0,1.0,0.2117919921875
61
+ sd3,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,3,2,3,1,1,2,0.4,1.0,0.2330322265625
62
+ bag,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,3,2,5,4,4,0.25,0.6666666666666666,0.2493896484375
63
+ GPT,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",4,4,4,3,4,3,0.875,1.0,0.25634765625
64
+ hid,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,2,2,5,5,5,0.375,1.0,0.27099609375
65
+ jan,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",1,2,2,2,2,3,0.25,0.5,0.22900390625
66
+ sd3,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,2,3,5,4,5,0.375,0.8333333333333334,0.275634765625
67
+ bag,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",3,2,2,5,5,5,0.4,1.0,0.1876220703125
68
+ GPT,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",3,4,4,3,4,4,0.9,1.0,0.29150390625
69
+ hid,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",4,4,3,5,4,5,0.7,1.0,0.26220703125
70
+ jan,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",1,2,1,3,2,3,0.4,0.8333333333333334,0.218994140625
71
+ sd3,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",1,1,1,3,3,2,0.3,1.0,0.205322265625
72
+ bag,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,2,2,3,4,3,0.375,0.6666666666666666,0.228759765625
73
+ GPT,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",5,4,5,5,4,3,0.5,1.0,0.3388671875
74
+ hid,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,2,2,5,4,5,0.125,0.6666666666666666,0.25537109375
75
+ jan,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",1,1,1,2,2,2,0.0,0.6666666666666666,0.193359375
76
+ sd3,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,1,1,2,1,1,0.125,0.6666666666666666,0.252685546875
77
+ bag,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,4,4,3,0.4,0.6666666666666666,0.28076171875
78
+ GPT,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,4,4,3,0.9,1.0,0.332763671875
79
+ hid,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,3,2,3,4,4,3,0.7,1.0,0.349853515625
80
+ jan,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,1,2,2,3,2,0.2,1.0,0.2423095703125
81
+ sd3,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,5,5,4,0.2,1.0,0.251953125
82
+ bag,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,5,0.25,0.6666666666666666,0.26953125
83
+ GPT,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,3,3,2,5,4,5,0.75,0.8333333333333334,0.27685546875
84
+ hid,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,5,0.25,0.6666666666666666,0.29443359375
85
+ jan,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,3,4,3,0.25,0.6666666666666666,0.284912109375
86
+ sd3,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,4,0.25,0.6666666666666666,0.270751953125
87
+ bag,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.8,1.0,0.305419921875
88
+ GPT,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.7,1.0,0.30908203125
89
+ hid,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.7,1.0,0.31201171875
90
+ jan,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,2,2,3,1.0,1.0,0.3115234375
91
+ sd3,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,2,3,3,0.8,1.0,0.31103515625
92
+ bag,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,3,4,5,4,0.7,1.0,0.22607421875
93
+ GPT,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,4,4,3,3,4,0.9,0.6666666666666666,0.271240234375
94
+ hid,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,3,4,4,5,0.5,0.5,0.259033203125
95
+ jan,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,2,2,3,3,0.2,0.8333333333333334,0.25634765625
96
+ sd3,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,2,3,4,4,0.4,0.6666666666666666,0.272216796875
97
+ bag,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,5,5,5,0.625,0.6666666666666666,0.22802734375
98
+ GPT,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",3,3,2,5,5,5,1.0,1.0,0.33740234375
99
+ hid,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,5,5,5,0.5,1.0,0.283447265625
100
+ jan,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",1,2,2,3,2,2,0.5,0.6666666666666666,0.283203125
101
+ sd3,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,4,3,3,0.75,0.8333333333333334,0.26806640625
human_score/idiom_vqa.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_alignment,qwen_quality,vqa_score
2
+ bag,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,4,3,3,5,5,5,0.875,1.0,0.7697253227233887
3
+ GPT,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,5,5,5,5,5,5,1.0,1.0,0.9786233901977539
4
+ hid,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,3,2,5,5,5,0.75,1.0,0.6381255984306335
5
+ jan,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,1,2,2,3,2,2,0.5,0.8333333333333334,0.3349578082561493
6
+ sd3,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,2,3,4,4,3,0.875,1.0,0.7795606851577759
7
+ bag,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",5,4,4,5,5,5,0.9,1.0,0.4596247375011444
8
+ GPT,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",4,3,3,5,5,5,0.4,1.0,0.7795593738555908
9
+ hid,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",3,3,3,5,5,5,0.5,1.0,0.7980471849441528
10
+ jan,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",1,2,2,3,2,3,0.6,1.0,0.6257829666137695
11
+ sd3,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",2,2,2,4,3,4,0.4,1.0,0.49503540992736816
12
+ bag,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",3,3,3,5,5,5,0.0,1.0,0.4267473518848419
13
+ GPT,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",5,4,5,4,3,4,0.6,1.0,0.6953880786895752
14
+ hid,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,2,1,5,4,4,0.0,1.0,0.24506036937236786
15
+ jan,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",1,1,1,1,1,2,0.0,1.0,0.3271983563899994
16
+ sd3,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,1,3,2,3,3,0.0,1.0,0.3097853362560272
17
+ bag,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",3,2,2,5,4,5,0.2,1.0,0.39467665553092957
18
+ GPT,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",5,4,3,5,4,4,0.9,1.0,0.8688029646873474
19
+ hid,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,2,5,5,5,0.1,1.0,0.32719850540161133
20
+ jan,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,1,4,3,3,0.0,1.0,0.35378578305244446
21
+ sd3,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",1,2,2,4,3,2,0.3,1.0,0.22487998008728027
22
+ bag,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",4,4,3,5,5,5,0.25,1.0,0.8816342949867249
23
+ GPT,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",2,1,1,5,4,3,0.625,1.0,0.9562975168228149
24
+ hid,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",3,2,3,5,5,4,0.375,1.0,0.9270890951156616
25
+ jan,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,1,2,1,0.0,1.0,0.6494401097297668
26
+ sd3,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,4,3,3,0.0,0.8333333333333334,0.5187922120094299
27
+ bag,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",4,3,3,5,5,5,0.875,0.5,0.7795612215995789
28
+ GPT,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",5,4,3,5,5,5,0.75,1.0,0.9348204135894775
29
+ hid,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,4,3,5,4,4,0.5,1.0,0.5067750811576843
30
+ jan,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",1,1,1,2,2,1,0.375,1.0,0.6018098592758179
31
+ sd3,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,3,3,3,4,3,0.5,1.0,0.7489637732505798
32
+ bag,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,2,2,4,3,3,0.25,0.8333333333333334,0.6136792302131653
33
+ GPT,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,2,2,5,3,4,0.625,1.0,0.9417017698287964
34
+ hid,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,4,3,4,3,4,0.625,1.0,0.9481666684150696
35
+ jan,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",2,1,1,3,2,2,0.125,0.6666666666666666,0.48356786370277405
36
+ sd3,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,1,2,4,4,4,0.25,0.5,0.495035320520401
37
+ bag,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",2,3,4,5,3,4,1.0,0.6666666666666666,0.7795612215995789
38
+ GPT,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",5,4,4,5,3,3,1.0,1.0,0.9537367820739746
39
+ hid,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",4,4,3,4,5,5,0.75,0.8333333333333334,0.8756269812583923
40
+ jan,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",2,1,2,3,4,3,0.375,0.3333333333333333,0.518792986869812
41
+ sd3,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",1,1,2,4,3,4,0.25,0.6666666666666666,0.34559059143066406
42
+ bag,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,2,3,5,4,5,0.2,0.8333333333333334,0.5544135570526123
43
+ GPT,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",3,4,2,5,4,4,0.9,1.0,0.8322723507881165
44
+ hid,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,3,2,5,4,5,0.3,1.0,0.34559059143066406
45
+ jan,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,1,2,3,3,3,0.5,1.0,0.4267473518848419
46
+ sd3,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",2,2,1,4,3,4,0.3,0.8333333333333334,0.18789434432983398
47
+ bag,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,4,4,4,5,3,4,0.9,1.0,0.8620516061782837
48
+ GPT,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,5,4,5,3,4,4,1.0,1.0,0.9711190462112427
49
+ hid,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,5,5,5,4,5,4,1.0,1.0,0.9693445563316345
50
+ jan,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,1,1,1,1,1,2,0.0,0.6666666666666666,0.5653476715087891
51
+ sd3,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,2,2,2,3,2,2,0.1,1.0,0.6953903436660767
52
+ bag,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",4,3,3,4,3,3,0.0,0.5,0.5653483867645264
53
+ GPT,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",3,3,2,3,3,4,0.875,1.0,0.9635663628578186
54
+ hid,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",1,2,1,4,4,4,0.0,0.5,0.2608654499053955
55
+ jan,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",1,1,1,2,2,3,0.0,0.25,0.4596249461174011
56
+ sd3,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",3,2,2,3,3,2,0.0,0.5,0.3171316981315613
57
+ bag,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,1,2,1,5,4,3,0.0,1.0,0.5310956835746765
58
+ GPT,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,5,5,4,5,5,5,0.6,1.0,0.9140703082084656
59
+ hid,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,2,2,2,3,2,3,0.5,1.0,0.8933228850364685
60
+ jan,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,1,1,1,3,3,2,0.0,1.0,0.44897761940956116
61
+ sd3,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,3,2,3,1,1,2,0.4,1.0,0.7063410878181458
62
+ bag,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,3,2,5,4,4,0.25,0.6666666666666666,0.7174639701843262
63
+ GPT,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",4,4,4,3,4,3,0.875,1.0,0.9307268857955933
64
+ hid,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,2,2,5,5,5,0.375,1.0,0.6494417190551758
65
+ jan,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",1,2,2,2,2,3,0.25,0.5,0.7387924790382385
66
+ sd3,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",3,2,3,5,4,5,0.375,0.8333333333333334,0.5653477907180786
67
+ bag,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",3,2,2,5,5,5,0.4,1.0,0.8876819610595703
68
+ GPT,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",3,4,4,3,4,4,0.9,1.0,0.881619930267334
69
+ hid,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",4,4,3,5,4,5,0.7,1.0,0.9311856031417847
70
+ jan,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",1,2,1,3,2,3,0.4,0.8333333333333334,0.649441659450531
71
+ sd3,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",1,1,1,3,3,2,0.3,1.0,0.684609055519104
72
+ bag,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,2,2,3,4,3,0.375,0.6666666666666666,0.45962443947792053
73
+ GPT,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",5,4,5,5,4,3,0.5,1.0,0.8240910768508911
74
+ hid,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,2,2,5,4,5,0.125,0.6666666666666666,0.3002542555332184
75
+ jan,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",1,1,1,2,2,2,0.0,0.6666666666666666,0.5187926292419434
76
+ sd3,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",2,1,1,2,1,1,0.125,0.6666666666666666,0.518792450428009
77
+ bag,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,4,4,3,0.4,0.6666666666666666,0.5187906622886658
78
+ GPT,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,4,4,3,0.9,1.0,0.7592708468437195
79
+ hid,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,3,2,3,4,4,3,0.7,1.0,0.9091739058494568
80
+ jan,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,1,2,2,3,2,0.2,1.0,0.40561747550964355
81
+ sd3,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,2,2,2,5,5,4,0.2,1.0,0.4489777088165283
82
+ bag,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,5,0.25,0.6666666666666666,0.37513479590415955
83
+ GPT,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,3,3,2,5,4,5,0.75,0.8333333333333334,0.9449295401573181
84
+ hid,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,5,0.25,0.6666666666666666,0.38403087854385376
85
+ jan,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,3,4,3,0.25,0.6666666666666666,0.36501625180244446
86
+ sd3,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,2,2,2,5,5,4,0.25,0.6666666666666666,0.36501628160476685
87
+ bag,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.8,1.0,0.8985832929611206
88
+ GPT,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.7,1.0,0.9711197018623352
89
+ hid,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,5,5,5,0.7,1.0,0.9225897789001465
90
+ jan,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,2,2,3,1.0,1.0,0.9271053671836853
91
+ sd3,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",3,3,3,2,3,3,0.8,1.0,0.9271055459976196
92
+ bag,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,3,4,5,4,0.7,1.0,0.4056176245212555
93
+ GPT,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,4,4,3,3,4,0.9,0.6666666666666666,0.9481666684150696
94
+ hid,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,3,4,4,5,0.5,0.5,0.4489777982234955
95
+ jan,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,2,2,3,3,0.2,0.8333333333333334,0.24506039917469025
96
+ sd3,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",3,3,2,3,4,4,0.4,0.6666666666666666,0.4056176543235779
97
+ bag,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,5,5,5,0.625,0.6666666666666666,0.6257836818695068
98
+ GPT,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",3,3,2,5,5,5,1.0,1.0,0.938494861125946
99
+ hid,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,5,5,5,0.5,1.0,0.4723663032054901
100
+ jan,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",1,2,2,3,2,2,0.5,0.6666666666666666,0.6136795878410339
101
+ sd3,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",2,2,2,4,3,3,0.75,0.8333333333333334,0.7063411474227905
human_score/physics.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality
2
+ bag,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,3,5,5,5,0.5,1.0,1.0
3
+ GPT,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",4,4,4,5,5,5,0.8333333333333334,1.0,1.0
4
+ hid,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",2,2,2,5,5,5,0.5,1.0,1.0
5
+ jan,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,3,3,4,4,0.5,0.5,1.0
6
+ sd3,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,4,5,5,5,0.6666666666666666,1.0,1.0
7
+ bag,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",3,2,2,5,5,4,0.16666666666666666,1.0,0.6666666666666666
8
+ GPT,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",5,5,5,5,5,5,0.0,0.75,1.0
9
+ hid,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,3,5,4,5,0.0,1.0,0.3333333333333333
10
+ jan,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,2,4,2,3,0.0,1.0,0.3333333333333333
11
+ sd3,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,2,2,2,2,0.0,1.0,0.3333333333333333
12
+ bag,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,4,4,0.375,0.6666666666666666,1.0
13
+ GPT,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",5,5,4,5,5,5,1.0,1.0,1.0
14
+ hid,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,5,5,0.5,0.6666666666666666,0.6666666666666666
15
+ jan,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",2,2,1,3,2,3,0.5,0.3333333333333333,0.6666666666666666
16
+ sd3,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,5,5,0.625,1.0,0.6666666666666666
17
+ bag,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,3,4,4,4,0.125,0.75,1.0
18
+ GPT,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",3,2,3,5,5,5,0.25,1.0,1.0
19
+ hid,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,5,5,5,0.0,1.0,1.0
20
+ jan,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,4,3,2,0.0,1.0,1.0
21
+ sd3,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,5,4,5,0.0,1.0,1.0
22
+ bag,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",1,1,2,5,5,5,0.0,0.0,1.0
23
+ GPT,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",3,3,3,5,5,5,0.5,1.0,1.0
24
+ hid,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",2,2,2,5,4,5,1.0,0.75,1.0
25
+ jan,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",2,1,2,3,3,3,0.25,0.5,1.0
26
+ sd3,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",1,1,2,4,5,4,0.0,0.75,0.5
27
+ bag,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",3,3,3,5,5,5,0.75,1.0,1.0
28
+ GPT,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",3,3,3,5,5,5,0.75,1.0,1.0
29
+ hid,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",2,2,2,5,5,5,0.625,1.0,1.0
30
+ jan,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",1,2,1,2,3,2,0.5,0.3333333333333333,1.0
31
+ sd3,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",2,1,2,2,1,3,0.75,0.8333333333333334,1.0
32
+ bag,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,3,5,4,5,1.0,0.6666666666666666,0.6666666666666666
33
+ GPT,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",4,3,4,5,5,5,1.0,1.0,1.0
34
+ hid,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",5,4,5,5,5,5,1.0,0.8333333333333334,0.8333333333333334
35
+ jan,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,3,4,3,3,1.0,0.8333333333333334,0.5
36
+ sd3,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,4,5,4,4,1.0,0.8333333333333334,1.0
37
+ bag,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,3,3,4,3,5,0.625,0.8333333333333334,0.6666666666666666
38
+ GPT,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,4,4,5,4,4,1.0,1.0,1.0
39
+ hid,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,3,3,5,5,5,0.625,0.6666666666666666,0.6666666666666666
40
+ jan,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,2,2,3,3,3,1.0,1.0,0.5
41
+ sd3,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube���s thermometer reading significantly higher than the white cube’s.",3,2,2,5,5,5,0.5,0.6666666666666666,0.5
42
+ bag,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,3,3,4,3,3,0.16666666666666666,0.6666666666666666,0.8333333333333334
43
+ GPT,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,4,3,5,5,5,1.0,1.0,1.0
44
+ hid,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",4,4,4,5,4,4,1.0,0.8333333333333334,1.0
45
+ jan,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",2,1,2,3,3,3,0.3333333333333333,0.5,0.8333333333333334
46
+ sd3,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,3,3,5,5,5,0.5,0.8333333333333334,1.0
47
+ bag,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",2,2,2,4,4,4,0.0,0.5,0.0
48
+ GPT,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",4,3,3,5,5,5,0.3333333333333333,1.0,0.6666666666666666
49
+ hid,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",5,4,3,5,5,5,0.0,0.5,0.5
50
+ jan,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",3,3,3,5,5,5,0.3333333333333333,0.75,0.0
51
+ sd3,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",3,3,4,5,5,5,1.0,0.5,0.3333333333333333
52
+ bag,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",3,3,3,5,5,5,0.3333333333333333,0.5,0.0
53
+ GPT,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",5,5,5,5,5,5,1.0,1.0,1.0
54
+ hid,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",4,4,3,5,5,5,0.6666666666666666,1.0,1.0
55
+ jan,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",5,4,5,5,5,5,0.8333333333333334,1.0,1.0
56
+ sd3,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",3,3,3,4,5,4,0.3333333333333333,0.5,0.3333333333333333
57
+ bag,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",3,4,4,5,5,5,0.8333333333333334,0.75,1.0
58
+ GPT,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",3,3,3,5,5,5,0.6666666666666666,0.75,0.8333333333333334
59
+ hid,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,3,2,5,5,5,0.16666666666666666,0.5,0.8333333333333334
60
+ jan,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,1,1,4,3,4,0.0,0.5,0.6666666666666666
61
+ sd3,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,2,1,4,4,4,0.5,0.5,0.6666666666666666
62
+ bag,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,2,1,4,4,5,0.3333333333333333,0.0,0.5
63
+ GPT,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",3,3,3,5,5,5,0.3333333333333333,1.0,0.8333333333333334
64
+ hid,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,3,2,5,5,4,0.0,0.5,0.3333333333333333
65
+ jan,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,1,2,4,4,5,0.0,0.3333333333333333,0.3333333333333333
66
+ sd3,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,1,2,5,5,4,0.16666666666666666,0.5,0.5
67
+ bag,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,5,5,5,5,5,1.0,1.0,1.0
68
+ GPT,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",4,4,3,5,5,5,1.0,1.0,1.0
69
+ hid,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,5,5,5,5,5,1.0,0.5,1.0
70
+ jan,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",3,3,4,5,3,4,0.6666666666666666,1.0,0.6666666666666666
71
+ sd3,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,4,5,5,4,5,1.0,0.5,1.0
72
+ bag,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",2,1,2,5,5,5,0.0,1.0,0.5
73
+ GPT,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",3,3,3,5,5,5,0.3333333333333333,1.0,0.8333333333333334
74
+ hid,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",2,2,1,3,4,4,0.0,0.5,1.0
75
+ jan,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",1,2,1,3,4,3,0.3333333333333333,0.5,0.6666666666666666
76
+ sd3,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",1,2,2,5,4,5,0.0,0.5,0.6666666666666666
77
+ bag,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.5,0.75,1.0
78
+ GPT,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.5,1.0,1.0
79
+ hid,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.3333333333333333,0.5,0.8333333333333334
80
+ jan,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,3,4,5,4,3,4,0.3333333333333333,0.5,1.0
81
+ sd3,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,2,3,3,5,5,5,0.16666666666666666,0.5,0.8333333333333334
82
+ bag,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,5,5,0.8333333333333334,1.0,0.8333333333333334
83
+ GPT,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",2,2,2,5,5,5,0.6666666666666666,1.0,0.6666666666666666
84
+ hid,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,5,5,0.8333333333333334,1.0,1.0
85
+ jan,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,4,4,5,0.8333333333333334,1.0,0.6666666666666666
86
+ sd3,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,4,4,0.8333333333333334,1.0,0.6666666666666666
87
+ bag,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,2,4,5,5,0.0,0.6666666666666666,1.0
88
+ GPT,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",3,3,3,5,5,5,0.0,1.0,1.0
89
+ hid,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,2,5,5,5,0.0,0.6666666666666666,1.0
90
+ jan,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,1,2,2,3,0.0,0.6666666666666666,1.0
91
+ sd3,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,1,1,2,2,1,0.0,0.3333333333333333,1.0
92
+ bag,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",4,3,4,5,5,5,0.5,1.0,1.0
93
+ GPT,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,4,5,5,5,1.0,1.0,1.0
94
+ hid,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,3,5,5,5,0.0,0.75,1.0
95
+ jan,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",3,2,1,3,3,3,0.25,0.75,1.0
96
+ sd3,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,5,5,5,5,0.0,1.0,1.0
97
+ bag,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0
98
+ GPT,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0
99
+ hid,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0
100
+ jan,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,4,4,3,5,5,5,0.625,1.0,1.0
101
+ sd3,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,1,2,2,5,5,5,0.25,0.6666666666666666,0.3333333333333333
human_score/physics_clip.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality,clip_score
2
+ bag,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,3,5,5,5,0.5,1.0,1.0,0.31689453125
3
+ GPT,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",4,4,4,5,5,5,0.8333333333333334,1.0,1.0,0.371337890625
4
+ hid,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",2,2,2,5,5,5,0.5,1.0,1.0,0.375
5
+ jan,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,3,3,4,4,0.5,0.5,1.0,0.378662109375
6
+ sd3,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,4,5,5,5,0.6666666666666666,1.0,1.0,0.3720703125
7
+ bag,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",3,2,2,5,5,4,0.16666666666666666,1.0,0.6666666666666666,0.31005859375
8
+ GPT,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",5,5,5,5,5,5,0.0,0.75,1.0,0.315673828125
9
+ hid,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,3,5,4,5,0.0,1.0,0.3333333333333333,0.32275390625
10
+ jan,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,2,4,2,3,0.0,1.0,0.3333333333333333,0.320556640625
11
+ sd3,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,2,2,2,2,0.0,1.0,0.3333333333333333,0.347900390625
12
+ bag,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,4,4,0.375,0.6666666666666666,1.0,0.25390625
13
+ GPT,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",5,5,4,5,5,5,1.0,1.0,1.0,0.248291015625
14
+ hid,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,5,5,0.5,0.6666666666666666,0.6666666666666666,0.2724609375
15
+ jan,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",2,2,1,3,2,3,0.5,0.3333333333333333,0.6666666666666666,0.272705078125
16
+ sd3,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,5,5,0.625,1.0,0.6666666666666666,0.324951171875
17
+ bag,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,3,4,4,4,0.125,0.75,1.0,0.2861328125
18
+ GPT,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",3,2,3,5,5,5,0.25,1.0,1.0,0.29443359375
19
+ hid,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,5,5,5,0.0,1.0,1.0,0.300048828125
20
+ jan,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,4,3,2,0.0,1.0,1.0,0.264404296875
21
+ sd3,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,5,4,5,0.0,1.0,1.0,0.287109375
22
+ bag,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",1,1,2,5,5,5,0.0,0.0,1.0,0.244140625
23
+ GPT,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",3,3,3,5,5,5,0.5,1.0,1.0,0.2705078125
24
+ hid,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",2,2,2,5,4,5,1.0,0.75,1.0,0.28076171875
25
+ jan,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",2,1,2,3,3,3,0.25,0.5,1.0,0.286865234375
26
+ sd3,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",1,1,2,4,5,4,0.0,0.75,0.5,0.328857421875
27
+ bag,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",3,3,3,5,5,5,0.75,1.0,1.0,0.269287109375
28
+ GPT,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",3,3,3,5,5,5,0.75,1.0,1.0,0.362060546875
29
+ hid,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",2,2,2,5,5,5,0.625,1.0,1.0,0.33642578125
30
+ jan,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",1,2,1,2,3,2,0.5,0.3333333333333333,1.0,0.3203125
31
+ sd3,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",2,1,2,2,1,3,0.75,0.8333333333333334,1.0,0.33544921875
32
+ bag,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,3,5,4,5,1.0,0.6666666666666666,0.6666666666666666,0.291259765625
33
+ GPT,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",4,3,4,5,5,5,1.0,1.0,1.0,0.2484130859375
34
+ hid,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",5,4,5,5,5,5,1.0,0.8333333333333334,0.8333333333333334,0.326904296875
35
+ jan,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,3,4,3,3,1.0,0.8333333333333334,0.5,0.310791015625
36
+ sd3,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,4,5,4,4,1.0,0.8333333333333334,1.0,0.3037109375
37
+ bag,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,3,3,4,3,5,0.625,0.8333333333333334,0.6666666666666666,0.284912109375
38
+ GPT,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,4,4,5,4,4,1.0,1.0,1.0,0.3193359375
39
+ hid,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,3,3,5,5,5,0.625,0.6666666666666666,0.6666666666666666,0.316650390625
40
+ jan,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,2,2,3,3,3,1.0,1.0,0.5,0.316162109375
41
+ sd3,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,2,2,5,5,5,0.5,0.6666666666666666,0.5,0.365234375
42
+ bag,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,3,3,4,3,3,0.16666666666666666,0.6666666666666666,0.8333333333333334,0.287841796875
43
+ GPT,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,4,3,5,5,5,1.0,1.0,1.0,0.330078125
44
+ hid,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",4,4,4,5,4,4,1.0,0.8333333333333334,1.0,0.317626953125
45
+ jan,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",2,1,2,3,3,3,0.3333333333333333,0.5,0.8333333333333334,0.2548828125
46
+ sd3,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,3,3,5,5,5,0.5,0.8333333333333334,1.0,0.34375
47
+ bag,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",2,2,2,4,4,4,0.0,0.5,0.0,0.294921875
48
+ GPT,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",4,3,3,5,5,5,0.3333333333333333,1.0,0.6666666666666666,0.30712890625
49
+ hid,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",5,4,3,5,5,5,0.0,0.5,0.5,0.30126953125
50
+ jan,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",3,3,3,5,5,5,0.3333333333333333,0.75,0.0,0.326171875
51
+ sd3,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",3,3,4,5,5,5,1.0,0.5,0.3333333333333333,0.31494140625
52
+ bag,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",3,3,3,5,5,5,0.3333333333333333,0.5,0.0,0.306884765625
53
+ GPT,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",5,5,5,5,5,5,1.0,1.0,1.0,0.320556640625
54
+ hid,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",4,4,3,5,5,5,0.6666666666666666,1.0,1.0,0.295166015625
55
+ jan,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",5,4,5,5,5,5,0.8333333333333334,1.0,1.0,0.345458984375
56
+ sd3,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",3,3,3,4,5,4,0.3333333333333333,0.5,0.3333333333333333,0.3388671875
57
+ bag,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",3,4,4,5,5,5,0.8333333333333334,0.75,1.0,0.273193359375
58
+ GPT,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",3,3,3,5,5,5,0.6666666666666666,0.75,0.8333333333333334,0.281982421875
59
+ hid,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,3,2,5,5,5,0.16666666666666666,0.5,0.8333333333333334,0.287841796875
60
+ jan,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,1,1,4,3,4,0.0,0.5,0.6666666666666666,0.310546875
61
+ sd3,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,2,1,4,4,4,0.5,0.5,0.6666666666666666,0.2529296875
62
+ bag,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,2,1,4,4,5,0.3333333333333333,0.0,0.5,0.26611328125
63
+ GPT,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",3,3,3,5,5,5,0.3333333333333333,1.0,0.8333333333333334,0.30078125
64
+ hid,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,3,2,5,5,4,0.0,0.5,0.3333333333333333,0.250244140625
65
+ jan,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,1,2,4,4,5,0.0,0.3333333333333333,0.3333333333333333,0.276123046875
66
+ sd3,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,1,2,5,5,4,0.16666666666666666,0.5,0.5,0.2783203125
67
+ bag,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,5,5,5,5,5,1.0,1.0,1.0,0.3056640625
68
+ GPT,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",4,4,3,5,5,5,1.0,1.0,1.0,0.3203125
69
+ hid,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,5,5,5,5,5,1.0,0.5,1.0,0.303466796875
70
+ jan,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",3,3,4,5,3,4,0.6666666666666666,1.0,0.6666666666666666,0.3291015625
71
+ sd3,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,4,5,5,4,5,1.0,0.5,1.0,0.326416015625
72
+ bag,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",2,1,2,5,5,5,0.0,1.0,0.5,0.243408203125
73
+ GPT,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",3,3,3,5,5,5,0.3333333333333333,1.0,0.8333333333333334,0.38232421875
74
+ hid,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",2,2,1,3,4,4,0.0,0.5,1.0,0.270751953125
75
+ jan,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",1,2,1,3,4,3,0.3333333333333333,0.5,0.6666666666666666,0.2093505859375
76
+ sd3,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",1,2,2,5,4,5,0.0,0.5,0.6666666666666666,0.298095703125
77
+ bag,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.5,0.75,1.0,0.318603515625
78
+ GPT,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.5,1.0,1.0,0.341796875
79
+ hid,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.3333333333333333,0.5,0.8333333333333334,0.314453125
80
+ jan,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,3,4,5,4,3,4,0.3333333333333333,0.5,1.0,0.289306640625
81
+ sd3,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,2,3,3,5,5,5,0.16666666666666666,0.5,0.8333333333333334,0.3212890625
82
+ bag,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,5,5,0.8333333333333334,1.0,0.8333333333333334,0.378173828125
83
+ GPT,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",2,2,2,5,5,5,0.6666666666666666,1.0,0.6666666666666666,0.35302734375
84
+ hid,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,5,5,0.8333333333333334,1.0,1.0,0.40478515625
85
+ jan,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,4,4,5,0.8333333333333334,1.0,0.6666666666666666,0.3369140625
86
+ sd3,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,4,4,0.8333333333333334,1.0,0.6666666666666666,0.3818359375
87
+ bag,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,2,4,5,5,0.0,0.6666666666666666,1.0,0.286376953125
88
+ GPT,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",3,3,3,5,5,5,0.0,1.0,1.0,0.35595703125
89
+ hid,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,2,5,5,5,0.0,0.6666666666666666,1.0,0.3154296875
90
+ jan,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,1,2,2,3,0.0,0.6666666666666666,1.0,0.307373046875
91
+ sd3,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,1,1,2,2,1,0.0,0.3333333333333333,1.0,0.31884765625
92
+ bag,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",4,3,4,5,5,5,0.5,1.0,1.0,0.288818359375
93
+ GPT,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,4,5,5,5,1.0,1.0,1.0,0.321044921875
94
+ hid,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,3,5,5,5,0.0,0.75,1.0,0.337646484375
95
+ jan,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",3,2,1,3,3,3,0.25,0.75,1.0,0.2958984375
96
+ sd3,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,5,5,5,5,0.0,1.0,1.0,0.3076171875
97
+ bag,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0,0.310302734375
98
+ GPT,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0,0.3095703125
99
+ hid,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0,0.3037109375
100
+ jan,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,4,4,3,5,5,5,0.625,1.0,1.0,0.311279296875
101
+ sd3,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,1,2,2,5,5,5,0.25,0.6666666666666666,0.3333333333333333,0.2489013671875
human_score/physics_vqa.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_reason,qwen_alignment,qwen_quality,vqa_score
2
+ bag,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,3,5,5,5,0.5,1.0,1.0,0.7795601487159729
3
+ GPT,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",4,4,4,5,5,5,0.8333333333333334,1.0,1.0,0.601809561252594
4
+ hid,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",2,2,2,5,5,5,0.5,1.0,1.0,0.8816337585449219
5
+ jan,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,3,3,4,4,0.5,0.5,1.0,0.47236567735671997
6
+ sd3,0001.png,A wooden block and an iron cube submerged in water,"A wooden block and an iron cube submerged in water, the block floating at the surface and the iron cube sunk in water.",3,3,4,5,5,5,0.6666666666666666,1.0,1.0,0.7287614345550537
7
+ bag,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",3,2,2,5,5,4,0.16666666666666666,1.0,0.6666666666666666,0.49503469467163086
8
+ GPT,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",5,5,5,5,5,5,0.0,0.75,1.0,0.8933332562446594
9
+ hid,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,3,5,4,5,0.0,1.0,0.3333333333333333,0.5415695309638977
10
+ jan,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,2,4,2,3,0.0,1.0,0.3333333333333333,0.6846083998680115
11
+ sd3,0011.png,"A passenger inside a car holding a cup of coffee, the car suddenly accelerates.","A passenger inside a car holding a cup of coffee, the car suddenly accelerates causing the coffee to spill.",2,2,2,2,2,2,0.0,1.0,0.3333333333333333,0.5544126033782959
12
+ bag,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,4,4,0.375,0.6666666666666666,1.0,0.8688124418258667
13
+ GPT,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",5,5,4,5,5,5,1.0,1.0,1.0,0.8985508680343628
14
+ hid,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,5,5,0.5,0.6666666666666666,0.6666666666666666,0.8620502352714539
15
+ jan,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",2,2,1,3,2,3,0.5,0.3333333333333333,0.6666666666666666,0.7887486219406128
16
+ sd3,0021.png,"Two bulbs, one connected to the battery and the other is not.","Two bulbs, one is connected to the battery and is lit, and the other is not connected to the battery and is unlit.",3,3,3,5,5,5,0.625,1.0,0.6666666666666666,0.8545056581497192
17
+ bag,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,3,4,4,4,0.125,0.75,1.0,0.3097849488258362
18
+ GPT,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",3,2,3,5,5,5,0.25,1.0,1.0,0.6953893899917603
19
+ hid,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,5,5,5,0.0,1.0,1.0,0.40561702847480774
20
+ jan,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,4,3,2,0.0,1.0,1.0,0.7387928366661072
21
+ sd3,0031.png,"Honey, vegetable oil, and water poured into a tall glass","Honey, vegetable oil, and water poured into a tall glass forming three distinct layers: honey settled at the bottom, water in the middle, and oil floating on top.",2,2,2,5,4,5,0.0,1.0,1.0,0.6136788725852966
22
+ bag,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",1,1,2,5,5,5,0.0,0.0,1.0,0.13854442536830902
23
+ GPT,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",3,3,3,5,5,5,0.5,1.0,1.0,0.8620510697364807
24
+ hid,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",2,2,2,5,4,5,1.0,0.75,1.0,0.7489643692970276
25
+ jan,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",2,1,2,3,3,3,0.25,0.5,1.0,0.6846072673797607
26
+ sd3,0041.png,Two identical holes at different heights in a water tank.,"A water tank with two identical holes at different heights along its side: the lower hole shooting water the further horizontal distance, the higher hole shooting to a lower distance.",1,1,2,4,5,4,0.0,0.75,0.5,0.7174633145332336
27
+ bag,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",3,3,3,5,5,5,0.75,1.0,1.0,0.5187909603118896
28
+ GPT,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",3,3,3,5,5,5,0.75,1.0,1.0,0.8876803517341614
29
+ hid,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",2,2,2,5,5,5,0.625,1.0,1.0,0.9271071553230286
30
+ jan,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",1,2,1,2,3,2,0.5,0.3333333333333333,1.0,0.2450595498085022
31
+ sd3,0051.png,A seesaw with a child on one end and an adult on the other,"A seesaw with a child on one end and an adult on the other, the child lifted high in the air while the adult remains low to the ground.",2,1,2,2,1,3,0.75,0.8333333333333334,1.0,0.9091761112213135
32
+ bag,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,3,5,4,5,1.0,0.6666666666666666,0.6666666666666666,0.8985815644264221
33
+ GPT,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",4,3,4,5,5,5,1.0,1.0,1.0,0.9675756692886353
34
+ hid,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",5,4,5,5,5,5,1.0,0.8333333333333334,0.8333333333333334,0.9811350107192993
35
+ jan,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,3,4,3,3,1.0,0.8333333333333334,0.5,0.9509487152099609
36
+ sd3,0061.png,A magnifying glass examining text on a newspaper.,"A magnifying glass examining text on a newspaper, with the words beneath the lens appearing significantly larger",3,3,4,5,4,4,1.0,0.8333333333333334,1.0,0.9799373745918274
37
+ bag,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,3,3,4,3,5,0.625,0.8333333333333334,0.6666666666666666,0.9091759920120239
38
+ GPT,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,4,4,5,4,4,1.0,1.0,1.0,0.9348350167274475
39
+ hid,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,3,3,5,5,5,0.625,0.6666666666666666,0.6666666666666666,0.9091761112213135
40
+ jan,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,2,2,3,3,3,1.0,1.0,0.5,0.9185466766357422
41
+ sd3,0071.png,"Sunlight falling on two identical cubes of black and white colors, thermometer on each","Sunlight falling on two identical cubes of black and white colors, thermometer on each; The black cube’s thermometer reading significantly higher than the white cube’s.",3,2,2,5,5,5,0.5,0.6666666666666666,0.5,0.7592742443084717
42
+ bag,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,3,3,4,3,3,0.16666666666666666,0.6666666666666666,0.8333333333333334,0.9140714406967163
43
+ GPT,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,4,3,5,5,5,1.0,1.0,1.0,0.9675731062889099
44
+ hid,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",4,4,4,5,4,4,1.0,0.8333333333333334,1.0,0.9384936094284058
45
+ jan,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",2,1,2,3,3,3,0.3333333333333333,0.5,0.8333333333333334,0.6136784553527832
46
+ sd3,0081.png,An ammeter connected to a solar panel in sunlight,"An ammeter connected to a solar panel in sunlight, the ammeter’s needle deflected to a non-zero reading",3,3,3,5,5,5,0.5,0.8333333333333334,1.0,0.9612187743186951
47
+ bag,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",2,2,2,4,4,4,0.0,0.5,0.0,0.8322693109512329
48
+ GPT,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",4,3,3,5,5,5,0.3333333333333333,1.0,0.6666666666666666,0.9038599729537964
49
+ hid,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",5,4,3,5,5,5,0.0,0.5,0.5,0.874772310256958
50
+ jan,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",3,3,3,5,5,5,0.3333333333333333,0.75,0.0,0.8470312356948853
51
+ sd3,0091.png,Sodium salts sprinkled into a fire.,"Sodium salts sprinkled into a fire, producing bright yellow flames.",3,3,4,5,5,5,1.0,0.5,0.3333333333333333,0.874771773815155
52
+ bag,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",3,3,3,5,5,5,0.3333333333333333,0.5,0.0,0.8545082211494446
53
+ GPT,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",5,5,5,5,5,5,1.0,1.0,1.0,0.9563037753105164
54
+ hid,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",4,4,3,5,5,5,0.6666666666666666,1.0,1.0,0.9311875700950623
55
+ jan,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",5,4,5,5,5,5,0.8333333333333334,1.0,1.0,0.9417062997817993
56
+ sd3,0101.png,Eggs dropped onto concrete.,"Eggs dropped onto concrete, shatters into fragments.",3,3,3,4,5,4,0.3333333333333333,0.5,0.3333333333333333,0.9417065978050232
57
+ bag,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",3,4,4,5,5,5,0.8333333333333334,0.75,1.0,0.7887492179870605
58
+ GPT,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",3,3,3,5,5,5,0.6666666666666666,0.75,0.8333333333333334,0.8241837620735168
59
+ hid,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,3,2,5,5,5,0.16666666666666666,0.5,0.8333333333333334,0.7697266340255737
60
+ jan,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,1,1,4,3,4,0.0,0.5,0.6666666666666666,0.34558966755867004
61
+ sd3,0111.png,A piece of sodium placed in water,"A piece of sodium placed in water, producing a vigorous reaction with bubbles and heat, and the sodium floating on the water's surface.",2,2,1,4,4,4,0.5,0.5,0.6666666666666666,0.5544130802154541
62
+ bag,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,2,1,4,4,5,0.3333333333333333,0.0,0.5,0.6381245851516724
63
+ GPT,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",3,3,3,5,5,5,0.3333333333333333,1.0,0.8333333333333334,0.806659460067749
64
+ hid,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,3,2,5,5,4,0.0,0.5,0.3333333333333333,0.7387915849685669
65
+ jan,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,1,2,4,4,5,0.0,0.3333333333333333,0.3333333333333333,0.3650147616863251
66
+ sd3,0121.png,A piece of silver placed in concentrated nitric acid,"A piece of silver placed in concentrated nitric acid, brown fumes of nitrogen dioxide are released",2,1,2,5,5,4,0.16666666666666666,0.5,0.5,0.5544111728668213
67
+ bag,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,5,5,5,5,5,1.0,1.0,1.0,0.7063394784927368
68
+ GPT,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",4,4,3,5,5,5,1.0,1.0,1.0,0.7489579916000366
69
+ hid,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,5,5,5,5,5,1.0,0.5,1.0,0.7489631175994873
70
+ jan,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",3,3,4,5,3,4,0.6666666666666666,1.0,0.6666666666666666,0.9562919735908508
71
+ sd3,0131.png,A person wearing a pair of glasses with photochromic lens under sunlight,"A person wearing a pair of glasses with photochromic lens under sunlight, the lens darkening to protect eyes from UV rays.",5,4,5,5,4,5,1.0,0.5,1.0,0.8241833448410034
72
+ bag,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",2,1,2,5,5,5,0.0,1.0,0.5,0.3271980285644531
73
+ GPT,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",3,3,3,5,5,5,0.3333333333333333,1.0,0.8333333333333334,0.9811257123947144
74
+ hid,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",2,2,1,3,4,4,0.0,0.5,1.0,0.5067736506462097
75
+ jan,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",1,2,1,3,4,3,0.3333333333333333,0.5,0.6666666666666666,0.41686129570007324
76
+ sd3,0141.png,Iodine solution mixed with Vitamin C,"Iodine solution mixed with Vitamin C, the dark brown iodine turns colorless",1,2,2,5,4,5,0.0,0.5,0.6666666666666666,0.37513476610183716
77
+ bag,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.5,0.75,1.0,0.6017946004867554
78
+ GPT,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.5,1.0,1.0,0.7387621998786926
79
+ hid,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,5,5,5,5,5,5,0.3333333333333333,0.5,0.8333333333333334,0.39467453956604004
80
+ jan,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,3,4,5,4,3,4,0.3333333333333333,0.5,1.0,0.3349546194076538
81
+ sd3,0151.png,A beaver building a dam,A beaver constructing a dam with interlocking sticks and mud in a river,2,3,3,5,5,5,0.16666666666666666,0.5,0.8333333333333334,0.176507830619812
82
+ bag,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,5,5,0.8333333333333334,1.0,0.8333333333333334,0.9612174034118652
83
+ GPT,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",2,2,2,5,5,5,0.6666666666666666,1.0,0.6666666666666666,0.9509459733963013
84
+ hid,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,5,5,0.8333333333333334,1.0,1.0,0.9851555228233337
85
+ jan,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,4,4,5,0.8333333333333334,1.0,0.6666666666666666,0.9694681167602539
86
+ sd3,0161.png,A chameleon on a blue neon sign,"A chameleon on a blue neon sign, its skin matching the exact hue of the background",3,3,3,5,4,4,0.8333333333333334,1.0,0.6666666666666666,0.9185435771942139
87
+ bag,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,2,4,5,5,0.0,0.6666666666666666,1.0,0.49503403902053833
88
+ GPT,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",3,3,3,5,5,5,0.0,1.0,1.0,0.7980456948280334
89
+ hid,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,2,5,5,5,0.0,0.6666666666666666,1.0,0.8816332817077637
90
+ jan,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,2,1,2,2,3,0.0,0.6666666666666666,1.0,0.8322715163230896
91
+ sd3,0171.png,Mimosa pudica being touched by hand,"Mimosa pudica being touched by hand, folding its leaflets inward",2,1,1,2,2,1,0.0,0.3333333333333333,1.0,0.8066653609275818
92
+ bag,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",4,3,4,5,5,5,0.5,1.0,1.0,0.9348325133323669
93
+ GPT,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,4,5,5,5,1.0,1.0,1.0,0.9773090481758118
94
+ hid,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,3,5,5,5,0.0,0.75,1.0,0.9842513203620911
95
+ jan,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",3,2,1,3,3,3,0.25,0.75,1.0,0.8396171927452087
96
+ sd3,0181.png,The solar system,"The solar system with planets orbiting the sun, the planets varying in size and color",5,4,5,5,5,5,0.0,1.0,1.0,0.9230414032936096
97
+ bag,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0,0.9654484391212463
98
+ GPT,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0,0.9773073196411133
99
+ hid,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,5,5,5,5,5,5,1.0,1.0,1.0,0.9693470597267151
100
+ jan,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,4,4,3,5,5,5,0.625,1.0,1.0,0.6018043160438538
101
+ sd3,0191.png,A meteor shower,A meteor shower: streaks of light in the night sky as meteors burn up in the atmosphere,1,2,2,5,5,5,0.25,0.6666666666666666,0.3333333333333333,0.2450597733259201
human_score/text_image.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_alignment,qwen_alignment,qwen_quality
2
+ bag,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,1,1,1,2,2,2,0.0,0.0,0.3333333333333333
3
+ GPT,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,5,5,4,4,4,5,1.0,1.0,1.0
4
+ hid,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,4,4,3,4,3,5,0.625,0.625,0.5
5
+ jan,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,1,1,1,2,2,1,0.0,0.0,0.5
6
+ sd3,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,3,3,2,3,3,2,0.875,0.875,0.5
7
+ bag,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",2,2,1,2,1,1,0.5,0.5,0.8333333333333334
8
+ GPT,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",5,5,5,5,5,5,1.0,1.0,1.0
9
+ hid,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",4,4,3,4,4,3,0.6,0.6,0.6666666666666666
10
+ jan,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",1,1,1,2,1,1,0.2,0.2,0.6666666666666666
11
+ sd3,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",2,2,1,2,2,1,0.8,0.8,0.6666666666666666
12
+ bag,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",2,1,1,2,2,2,0.1,0.1,0.8333333333333334
13
+ GPT,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",4,4,3,4,4,4,0.8,0.8,1.0
14
+ hid,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",4,4,3,4,4,4,0.6,0.6,0.8333333333333334
15
+ jan,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",1,1,1,1,1,1,0.1,0.1,1.0
16
+ sd3,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",3,2,2,2,2,3,0.5,0.5,0.6666666666666666
17
+ bag,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",2,1,1,2,2,2,0.0,0.0,0.5
18
+ GPT,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",5,5,5,4,4,4,0.8,0.8,1.0
19
+ hid,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",4,3,2,5,4,4,0.6,0.6,0.5
20
+ jan,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",1,1,1,2,1,2,0.2,0.2,0.8333333333333334
21
+ sd3,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",2,2,1,2,2,1,0.2,0.2,0.5
22
+ bag,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",3,2,4,3,4,4,0.625,0.625,1.0
23
+ GPT,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",4,4,4,4,4,4,1.0,1.0,1.0
24
+ hid,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",5,5,5,5,5,5,1.0,1.0,1.0
25
+ jan,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",3,3,2,3,2,2,0.875,0.875,1.0
26
+ sd3,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",5,5,4,4,3,3,1.0,1.0,1.0
27
+ bag,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",3,2,2,3,2,3,0.3,0.3,0.6666666666666666
28
+ GPT,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,4,5,5,4,4,0.6,0.6,1.0
29
+ hid,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,5,4,5,5,4,0.7,0.7,1.0
30
+ jan,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",2,1,2,2,3,2,0.1,0.1,0.5
31
+ sd3,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,3,3,4,4,4,0.4,0.4,0.5
32
+ bag,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,2,3,2,4,3,4,0.6666666666666666,0.6666666666666666,1.0
33
+ GPT,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,5,5,5,4,4,4,1.0,1.0,1.0
34
+ hid,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,5,5,4,5,4,5,1.0,1.0,1.0
35
+ jan,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,4,2,3,3,2,3,0.6666666666666666,0.6666666666666666,0.75
36
+ sd3,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,4,5,5,5,4,5,1.0,1.0,1.0
37
+ bag,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",3,4,3,3,3,4,0.6,0.6,1.0
38
+ GPT,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",4,5,5,4,4,5,1.0,1.0,1.0
39
+ hid,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",5,5,5,5,5,5,0.9,0.9,1.0
40
+ jan,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",2,2,4,3,3,3,0.5,0.5,1.0
41
+ sd3,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",5,4,5,5,5,4,0.8,0.8,1.0
42
+ bag,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,1,1,2,2,2,1,0.1,0.1,1.0
43
+ GPT,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,5,5,5,4,4,5,0.6,0.6,1.0
44
+ hid,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,5,5,4,5,4,5,0.6,0.6,0.6666666666666666
45
+ jan,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,3,3,3,3,4,3,0.1,0.1,1.0
46
+ sd3,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,4,4,4,5,3,4,0.5,0.5,0.6666666666666666
47
+ bag,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,3,3,4,3,4,3,0.375,0.375,0.8333333333333334
48
+ GPT,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,5,5,4,4,4,4,1.0,1.0,1.0
49
+ hid,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,5,5,5,5,5,5,0.875,0.875,0.8333333333333334
50
+ jan,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,4,4,4,2,3,4,0.75,0.75,0.8333333333333334
51
+ sd3,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,2,3,4,2,4,3,0.5,0.5,1.0
52
+ bag,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,3,3,3,3,4,0.5,0.5,0.6666666666666666
53
+ GPT,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,4,4,4,4,4,0.9,0.9,1.0
54
+ hid,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,5,5,5,5,5,4,0.9,0.9,1.0
55
+ jan,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,5,5,4,4,3,3,0.7,0.7,1.0
56
+ sd3,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,4,4,5,5,4,0.7,0.7,1.0
57
+ bag,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,3,3,3,2,3,3,0.5,0.5,0.8333333333333334
58
+ GPT,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,5,4,4,4,4,4,1.0,1.0,1.0
59
+ hid,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,4,4,5,4,4,3,0.625,0.625,0.6666666666666666
60
+ jan,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,2,1,2,2,2,3,0.5,0.5,0.16666666666666666
61
+ sd3,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,2,2,1,5,5,4,0.5,0.5,0.6666666666666666
62
+ bag,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,3,2,3,5,5,5,1.0,1.0,0.8333333333333334
63
+ GPT,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,5,4,5,5,4,1.0,1.0,1.0
64
+ hid,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,5,5,5,5,5,1.0,1.0,1.0
65
+ jan,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,3,4,4,1,1,1,1.0,1.0,0.8333333333333334
66
+ sd3,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,4,4,3,2,1,1.0,1.0,1.0
67
+ bag,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",3,4,3,4,3,4,0.8,0.8,0.6666666666666666
68
+ GPT,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",4,5,4,4,4,5,1.0,1.0,1.0
69
+ hid,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",5,5,5,5,5,5,0.9,0.9,1.0
70
+ jan,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",2,1,1,2,3,2,0.6,0.6,0.8333333333333334
71
+ sd3,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",3,2,4,5,5,4,0.7,0.7,0.6666666666666666
72
+ bag,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,4,4,4,4,3,3,0.7,0.7,0.8333333333333334
73
+ GPT,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,5,5,4,5,5,5,0.6,0.6,1.0
74
+ hid,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,5,5,5,5,5,5,0.7,0.7,0.6666666666666666
75
+ jan,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,1,2,1,3,2,2,0.4,0.4,0.8333333333333334
76
+ sd3,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,4,3,4,3,4,4,1.0,1.0,0.6666666666666666
77
+ bag,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,3,4,3,3,0.75,0.75,0.8333333333333334
78
+ GPT,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",5,5,5,5,5,5,1.0,1.0,1.0
79
+ hid,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,4,5,5,4,1.0,1.0,1.0
80
+ jan,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",3,3,3,2,3,2,0.625,0.625,0.5
81
+ sd3,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,4,4,4,3,1.0,1.0,1.0
82
+ bag,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",3,2,2,3,2,3,0.4,0.4,0.8333333333333334
83
+ GPT,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",4,4,5,5,5,5,1.0,1.0,1.0
84
+ hid,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",3,3,3,5,5,4,0.3,0.3,0.6666666666666666
85
+ jan,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",2,2,3,2,2,2,0.2,0.2,0.8333333333333334
86
+ sd3,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",2,2,2,5,5,5,0.2,0.2,0.6666666666666666
87
+ bag,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",2,2,3,2,2,3,0.5,0.5,0.3333333333333333
88
+ GPT,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",4,4,4,4,4,4,0.875,0.875,0.8333333333333334
89
+ hid,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",4,4,4,4,4,3,0.875,0.875,0.3333333333333333
90
+ jan,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",2,1,1,2,2,2,0.0,0.0,0.3333333333333333
91
+ sd3,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",3,2,2,2,2,2,0.125,0.125,0.0
92
+ bag,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,3,2,2,2,3,3,0.5714285714285714,0.5714285714285714,0.8333333333333334
93
+ GPT,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,5,5,5,5,5,5,1.0,1.0,0.8333333333333334
94
+ hid,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,4,5,4,4,4,4,0.9285714285714286,0.9285714285714286,0.8333333333333334
95
+ jan,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,1,1,1,3,3,3,0.0,0.0,0.3333333333333333
96
+ sd3,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,4,3,4,3,3,4,0.7142857142857143,0.7142857142857143,0.5
97
+ bag,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,3,3,2,3,3,3,0.2,0.2,0.5
98
+ GPT,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,5,5,5,5,5,5,0.9,0.9,1.0
99
+ hid,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,4,4,4,4,4,4,0.7,0.7,1.0
100
+ jan,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,1,1,2,2,2,2,0.0,0.0,0.6666666666666666
101
+ sd3,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,3,2,2,3,3,3,0.3,0.3,0.8333333333333334
human_score/text_image_clip.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_alignment,qwen_alignment,qwen_quality,clip_score
2
+ bag,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,1,1,1,2,2,2,0.0,0.0,0.3333333333333333,0.263916015625
3
+ GPT,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,5,5,4,4,4,5,1.0,1.0,1.0,0.388427734375
4
+ hid,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,4,4,3,4,3,5,0.625,0.625,0.5,0.35107421875
5
+ jan,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,1,1,1,2,2,1,0.0,0.0,0.5,0.231689453125
6
+ sd3,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,3,3,2,3,3,2,0.875,0.875,0.5,0.384033203125
7
+ bag,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",2,2,1,2,1,1,0.5,0.5,0.8333333333333334,0.23779296875
8
+ GPT,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",5,5,5,5,5,5,1.0,1.0,1.0,0.373779296875
9
+ hid,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",4,4,3,4,4,3,0.6,0.6,0.6666666666666666,0.368896484375
10
+ jan,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",1,1,1,2,1,1,0.2,0.2,0.6666666666666666,0.277099609375
11
+ sd3,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",2,2,1,2,2,1,0.8,0.8,0.6666666666666666,0.286376953125
12
+ bag,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",2,1,1,2,2,2,0.1,0.1,0.8333333333333334,0.2303466796875
13
+ GPT,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",4,4,3,4,4,4,0.8,0.8,1.0,0.3291015625
14
+ hid,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",4,4,3,4,4,4,0.6,0.6,0.8333333333333334,0.396484375
15
+ jan,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",1,1,1,1,1,1,0.1,0.1,1.0,0.222900390625
16
+ sd3,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",3,2,2,2,2,3,0.5,0.5,0.6666666666666666,0.350341796875
17
+ bag,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",2,1,1,2,2,2,0.0,0.0,0.5,0.2183837890625
18
+ GPT,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",5,5,5,4,4,4,0.8,0.8,1.0,0.39599609375
19
+ hid,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",4,3,2,5,4,4,0.6,0.6,0.5,0.353271484375
20
+ jan,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",1,1,1,2,1,2,0.2,0.2,0.8333333333333334,0.21728515625
21
+ sd3,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",2,2,1,2,2,1,0.2,0.2,0.5,0.312255859375
22
+ bag,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",3,2,4,3,4,4,0.625,0.625,1.0,0.298095703125
23
+ GPT,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",4,4,4,4,4,4,1.0,1.0,1.0,0.370849609375
24
+ hid,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",5,5,5,5,5,5,1.0,1.0,1.0,0.374755859375
25
+ jan,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",3,3,2,3,2,2,0.875,0.875,1.0,0.375244140625
26
+ sd3,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",5,5,4,4,3,3,1.0,1.0,1.0,0.377197265625
27
+ bag,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",3,2,2,3,2,3,0.3,0.3,0.6666666666666666,0.26220703125
28
+ GPT,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,4,5,5,4,4,0.6,0.6,1.0,0.410400390625
29
+ hid,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,5,4,5,5,4,0.7,0.7,1.0,0.434814453125
30
+ jan,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",2,1,2,2,3,2,0.1,0.1,0.5,0.217529296875
31
+ sd3,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,3,3,4,4,4,0.4,0.4,0.5,0.368408203125
32
+ bag,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,2,3,2,4,3,4,0.6666666666666666,0.6666666666666666,1.0,0.241455078125
33
+ GPT,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,5,5,5,4,4,4,1.0,1.0,1.0,0.367919921875
34
+ hid,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,5,5,4,5,4,5,1.0,1.0,1.0,0.361083984375
35
+ jan,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,4,2,3,3,2,3,0.6666666666666666,0.6666666666666666,0.75,0.31494140625
36
+ sd3,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,4,5,5,5,4,5,1.0,1.0,1.0,0.3837890625
37
+ bag,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",3,4,3,3,3,4,0.6,0.6,1.0,0.252685546875
38
+ GPT,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",4,5,5,4,4,5,1.0,1.0,1.0,0.364990234375
39
+ hid,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",5,5,5,5,5,5,0.9,0.9,1.0,0.340576171875
40
+ jan,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",2,2,4,3,3,3,0.5,0.5,1.0,0.2435302734375
41
+ sd3,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",5,4,5,5,5,4,0.8,0.8,1.0,0.322021484375
42
+ bag,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,1,1,2,2,2,1,0.1,0.1,1.0,0.238037109375
43
+ GPT,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,5,5,5,4,4,5,0.6,0.6,1.0,0.413330078125
44
+ hid,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,5,5,4,5,4,5,0.6,0.6,0.6666666666666666,0.355712890625
45
+ jan,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,3,3,3,3,4,3,0.1,0.1,1.0,0.31689453125
46
+ sd3,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,4,4,4,5,3,4,0.5,0.5,0.6666666666666666,0.351318359375
47
+ bag,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,3,3,4,3,4,3,0.375,0.375,0.8333333333333334,0.306884765625
48
+ GPT,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,5,5,4,4,4,4,1.0,1.0,1.0,0.38134765625
49
+ hid,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,5,5,5,5,5,5,0.875,0.875,0.8333333333333334,0.392822265625
50
+ jan,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,4,4,4,2,3,4,0.75,0.75,0.8333333333333334,0.375244140625
51
+ sd3,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,2,3,4,2,4,3,0.5,0.5,1.0,0.310791015625
52
+ bag,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,3,3,3,3,4,0.5,0.5,0.6666666666666666,0.335205078125
53
+ GPT,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,4,4,4,4,4,0.9,0.9,1.0,0.369873046875
54
+ hid,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,5,5,5,5,5,4,0.9,0.9,1.0,0.3544921875
55
+ jan,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,5,5,4,4,3,3,0.7,0.7,1.0,0.3701171875
56
+ sd3,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,4,4,5,5,4,0.7,0.7,1.0,0.34423828125
57
+ bag,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,3,3,3,2,3,3,0.5,0.5,0.8333333333333334,0.278076171875
58
+ GPT,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,5,4,4,4,4,4,1.0,1.0,1.0,0.343505859375
59
+ hid,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,4,4,5,4,4,3,0.625,0.625,0.6666666666666666,0.36865234375
60
+ jan,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,2,1,2,2,2,3,0.5,0.5,0.16666666666666666,0.263916015625
61
+ sd3,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,2,2,1,5,5,4,0.5,0.5,0.6666666666666666,0.3564453125
62
+ bag,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,3,2,3,5,5,5,1.0,1.0,0.8333333333333334,0.31884765625
63
+ GPT,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,5,4,5,5,4,1.0,1.0,1.0,0.32373046875
64
+ hid,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,5,5,5,5,5,1.0,1.0,1.0,0.311279296875
65
+ jan,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,3,4,4,1,1,1,1.0,1.0,0.8333333333333334,0.3583984375
66
+ sd3,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,4,4,3,2,1,1.0,1.0,1.0,0.361083984375
67
+ bag,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",3,4,3,4,3,4,0.8,0.8,0.6666666666666666,0.30029296875
68
+ GPT,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",4,5,4,4,4,5,1.0,1.0,1.0,0.352294921875
69
+ hid,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",5,5,5,5,5,5,0.9,0.9,1.0,0.368896484375
70
+ jan,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",2,1,1,2,3,2,0.6,0.6,0.8333333333333334,0.288330078125
71
+ sd3,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",3,2,4,5,5,4,0.7,0.7,0.6666666666666666,0.3232421875
72
+ bag,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,4,4,4,4,3,3,0.7,0.7,0.8333333333333334,0.2724609375
73
+ GPT,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,5,5,4,5,5,5,0.6,0.6,1.0,0.3408203125
74
+ hid,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,5,5,5,5,5,5,0.7,0.7,0.6666666666666666,0.37548828125
75
+ jan,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,1,2,1,3,2,2,0.4,0.4,0.8333333333333334,0.3134765625
76
+ sd3,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,4,3,4,3,4,4,1.0,1.0,0.6666666666666666,0.357421875
77
+ bag,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,3,4,3,3,0.75,0.75,0.8333333333333334,0.310302734375
78
+ GPT,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",5,5,5,5,5,5,1.0,1.0,1.0,0.400390625
79
+ hid,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,4,5,5,4,1.0,1.0,1.0,0.379638671875
80
+ jan,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",3,3,3,2,3,2,0.625,0.625,0.5,0.35595703125
81
+ sd3,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,4,4,4,3,1.0,1.0,1.0,0.3974609375
82
+ bag,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",3,2,2,3,2,3,0.4,0.4,0.8333333333333334,0.31884765625
83
+ GPT,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",4,4,5,5,5,5,1.0,1.0,1.0,0.331787109375
84
+ hid,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",3,3,3,5,5,4,0.3,0.3,0.6666666666666666,0.324462890625
85
+ jan,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",2,2,3,2,2,2,0.2,0.2,0.8333333333333334,0.285888671875
86
+ sd3,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",2,2,2,5,5,5,0.2,0.2,0.6666666666666666,0.31884765625
87
+ bag,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",2,2,3,2,2,3,0.5,0.5,0.3333333333333333,0.27978515625
88
+ GPT,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",4,4,4,4,4,4,0.875,0.875,0.8333333333333334,0.39208984375
89
+ hid,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",4,4,4,4,4,3,0.875,0.875,0.3333333333333333,0.35791015625
90
+ jan,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",2,1,1,2,2,2,0.0,0.0,0.3333333333333333,0.255859375
91
+ sd3,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",3,2,2,2,2,2,0.125,0.125,0.0,0.285888671875
92
+ bag,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,3,2,2,2,3,3,0.5714285714285714,0.5714285714285714,0.8333333333333334,0.1541748046875
93
+ GPT,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,5,5,5,5,5,5,1.0,1.0,0.8333333333333334,0.353759765625
94
+ hid,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,4,5,4,4,4,4,0.9285714285714286,0.9285714285714286,0.8333333333333334,0.31103515625
95
+ jan,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,1,1,1,3,3,3,0.0,0.0,0.3333333333333333,0.1612548828125
96
+ sd3,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,4,3,4,3,3,4,0.7142857142857143,0.7142857142857143,0.5,0.218017578125
97
+ bag,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,3,3,2,3,3,3,0.2,0.2,0.5,0.2298583984375
98
+ GPT,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,5,5,5,5,5,5,0.9,0.9,1.0,0.37255859375
99
+ hid,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,4,4,4,4,4,4,0.7,0.7,1.0,0.39111328125
100
+ jan,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,1,1,2,2,2,2,0.0,0.0,0.6666666666666666,0.2415771484375
101
+ sd3,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,3,2,2,3,3,3,0.3,0.3,0.8333333333333334,0.280517578125
human_score/text_image_vqa.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3,qwen_alignment,qwen_alignment,qwen_quality,vqa_score
2
+ bag,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,1,1,1,2,2,2,0.0,0.0,0.3333333333333333,0.39467668533325195
3
+ GPT,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,5,5,4,4,4,5,1.0,1.0,1.0,0.9311919212341309
4
+ hid,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,4,4,3,4,3,5,0.625,0.625,0.5,0.9091765880584717
5
+ jan,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,1,1,1,2,2,1,0.0,0.0,0.5,0.38403093814849854
6
+ sd3,0001.png,Design an infographic explaining Japan's economic impact due to COVID-19.,3,3,2,3,3,2,0.875,0.875,0.5,0.9140731692314148
7
+ bag,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",2,2,1,2,1,1,0.5,0.5,0.8333333333333334,0.7174643278121948
8
+ GPT,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",5,5,5,5,5,5,1.0,1.0,1.0,0.8322727084159851
9
+ hid,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",4,4,3,4,4,3,0.6,0.6,0.6666666666666666,0.9091762900352478
10
+ jan,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",1,1,1,2,1,1,0.2,0.2,0.6666666666666666,0.5653483867645264
11
+ sd3,0011.png,"Design an infographic on online risks for children aged 9-16, using clear visuals and stats.",2,2,1,2,2,1,0.8,0.8,0.6666666666666666,0.8816345930099487
12
+ bag,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",2,1,1,2,2,2,0.1,0.1,0.8333333333333334,0.3171316683292389
13
+ GPT,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",4,4,3,4,4,4,0.8,0.8,1.0,0.8620530366897583
14
+ hid,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",4,4,3,4,4,4,0.6,0.6,0.8333333333333334,0.8985841274261475
15
+ jan,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",1,1,1,1,1,1,0.1,0.1,1.0,0.3537858724594116
16
+ sd3,0021.png,"Design an infographic comparing Canadian women's and men's political engagement using icons, charts, and color coding.",3,2,2,2,2,3,0.5,0.5,0.6666666666666666,0.832273006439209
17
+ bag,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",2,1,1,2,2,2,0.0,0.0,0.5,0.4489775598049164
18
+ GPT,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",5,5,5,4,4,4,0.8,0.8,1.0,0.9384949207305908
19
+ hid,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",4,3,2,5,4,4,0.6,0.6,0.5,0.9038644433021545
20
+ jan,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",1,1,1,2,1,2,0.2,0.2,0.8333333333333334,0.5310956239700317
21
+ sd3,0031.png,"Design an infographic on climate change impacts in London, focusing on heatwaves and the aging population.",2,2,1,2,2,1,0.2,0.2,0.5,0.8985846042633057
22
+ bag,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",3,2,4,3,4,4,0.625,0.625,1.0,0.8396199345588684
23
+ GPT,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",4,4,4,4,4,4,1.0,1.0,1.0,0.898584246635437
24
+ hid,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",5,5,5,5,5,5,1.0,1.0,1.0,0.8876817226409912
25
+ jan,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",3,3,2,3,2,2,0.875,0.875,1.0,0.8545093536376953
26
+ sd3,0041.png,"Create a bold, illustrative poster promoting 'Explosive Creativity,' encouraging viewers to tap into their imagination.",5,5,4,4,3,3,1.0,1.0,1.0,0.8816350102424622
27
+ bag,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",3,2,2,3,2,3,0.3,0.3,0.6666666666666666,0.43857714533805847
28
+ GPT,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,4,5,5,4,4,0.6,0.6,1.0,0.8756284117698669
29
+ hid,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,5,4,5,5,4,0.7,0.7,1.0,0.8756284117698669
30
+ jan,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",2,1,2,2,3,2,0.1,0.1,0.5,0.32719844579696655
31
+ sd3,0051.png,"Design a poster for a nighttime photography exhibit, inviting all photography enthusiasts to the 'In Focus: Capturing the Night' exhibit, including details for the event.",4,3,3,4,4,4,0.4,0.4,0.5,0.8620532751083374
32
+ bag,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,2,3,2,4,3,4,0.6666666666666666,0.6666666666666666,1.0,0.518792450428009
33
+ GPT,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,5,5,5,4,4,4,1.0,1.0,1.0,0.8985840082168579
34
+ hid,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,5,5,4,5,4,5,1.0,1.0,1.0,0.9140729308128357
35
+ jan,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,4,2,3,3,2,3,0.6666666666666666,0.6666666666666666,0.75,0.6136794090270996
36
+ sd3,0061.png,Create a motivational poster encouraging self-expression with text 'Write Your Own Story'.,4,5,5,5,4,5,1.0,1.0,1.0,0.9091766476631165
37
+ bag,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",3,4,3,3,3,4,0.6,0.6,1.0,0.788750410079956
38
+ GPT,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",4,5,5,4,4,5,1.0,1.0,1.0,0.8478597402572632
39
+ hid,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",5,5,5,5,5,5,0.9,0.9,1.0,0.8620530962944031
40
+ jan,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",2,2,4,3,3,3,0.5,0.5,1.0,0.8066668510437012
41
+ sd3,0071.png,"Design a poster that invites viewers to explore 'City Illuminations', the poetic essence of city life.",5,4,5,5,5,4,0.8,0.8,1.0,0.8876824378967285
42
+ bag,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,1,1,2,2,2,1,0.1,0.1,1.0,0.33495786786079407
43
+ GPT,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,5,5,5,4,4,5,0.6,0.6,1.0,0.8985844850540161
44
+ hid,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,5,5,4,5,4,5,0.6,0.6,0.6666666666666666,0.8688144087791443
45
+ jan,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,3,3,3,3,4,3,0.1,0.1,1.0,0.2842749357223511
46
+ sd3,0081.png,Design a high-contrast black-and-white promotional poster for a summer music tour featuring Lifehouse and Switchfoot.,4,4,4,5,3,4,0.5,0.5,0.6666666666666666,0.7697268724441528
47
+ bag,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,3,3,4,3,4,3,0.375,0.375,0.8333333333333334,0.7795608639717102
48
+ GPT,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,5,5,4,4,4,4,1.0,1.0,1.0,0.8153782486915588
49
+ hid,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,5,5,5,5,5,5,0.875,0.875,0.8333333333333334,0.9185474514961243
50
+ jan,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,4,4,4,2,3,4,0.75,0.75,0.8333333333333334,0.8985846042633057
51
+ sd3,0091.png,Create a vibrant magazine cover for 'Home Entertaining' featuring a stylish dining setup with modern furniture and greenery.,2,3,4,2,4,3,0.5,0.5,1.0,0.8478599190711975
52
+ bag,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,3,3,3,3,4,0.5,0.5,0.6666666666666666,0.8620530366897583
53
+ GPT,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,4,4,4,4,4,0.9,0.9,1.0,0.9230436682701111
54
+ hid,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,5,5,5,5,5,4,0.9,0.9,1.0,0.9038652777671814
55
+ jan,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,5,5,4,4,3,3,0.7,0.7,1.0,0.8985846042633057
56
+ sd3,0101.png,Design a comic book cover for 'Doctor Who' featuring the Twelfth Doctor in a contemplative pose against a cosmic backdrop with mathematical symbols.,4,4,4,5,5,4,0.7,0.7,1.0,0.9185476303100586
57
+ bag,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,3,3,3,2,3,3,0.5,0.5,0.8333333333333334,0.7887498140335083
58
+ GPT,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,5,4,4,4,4,4,1.0,1.0,1.0,0.9038639664649963
59
+ hid,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,4,4,5,4,4,3,0.625,0.625,0.6666666666666666,0.8241847157478333
60
+ jan,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,2,1,2,2,2,3,0.5,0.5,0.16666666666666666,0.6609585881233215
61
+ sd3,0111.png,Design a minimalist tutorial poster for a DIY fall garland using colorful paper leaves.,2,2,1,5,5,4,0.5,0.5,0.6666666666666666,0.39467647671699524
62
+ bag,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,3,2,3,5,5,5,1.0,1.0,0.8333333333333334,0.7387946844100952
63
+ GPT,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,5,4,5,5,4,1.0,1.0,1.0,0.8876822590827942
64
+ hid,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,5,5,5,5,5,1.0,1.0,1.0,0.779560923576355
65
+ jan,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,3,4,4,1,1,1,1.0,1.0,0.8333333333333334,0.832273006439209
66
+ sd3,0121.png,Design a book cover featuring hands holding a bowl of colorful vegan dishes.,5,4,4,3,2,1,1.0,1.0,1.0,0.8478599190711975
67
+ bag,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",3,4,3,4,3,4,0.8,0.8,0.6666666666666666,0.8322730660438538
68
+ GPT,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",4,5,4,4,4,5,1.0,1.0,1.0,0.7489644289016724
69
+ hid,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",5,5,5,5,5,5,0.9,0.9,1.0,0.8153784275054932
70
+ jan,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",2,1,1,2,3,2,0.6,0.6,0.8333333333333334,0.73879474401474
71
+ sd3,0131.png,"Design a poster with the theme 'Capturing the Magic of Childhood' using a photo captured by Holly Anwad as the background, creating a serene, magical ambiance.",3,2,4,5,5,4,0.7,0.7,0.6666666666666666,0.8153790831565857
72
+ bag,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,4,4,4,4,3,3,0.7,0.7,0.8333333333333334,0.8985849022865295
73
+ GPT,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,5,5,4,5,5,5,0.6,0.6,1.0,0.9038654565811157
74
+ hid,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,5,5,5,5,5,5,0.7,0.7,0.6666666666666666,0.8756287693977356
75
+ jan,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,1,2,1,3,2,2,0.4,0.4,0.8333333333333334,0.8478600978851318
76
+ sd3,0141.png,Design a DVD cover for a historical drama set in the Scottish Highlands.,4,3,4,3,4,4,1.0,1.0,0.6666666666666666,0.8816350102424622
77
+ bag,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,3,4,3,3,0.75,0.75,0.8333333333333334,0.839619517326355
78
+ GPT,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",5,5,5,5,5,5,1.0,1.0,1.0,0.9185470938682556
79
+ hid,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,4,5,5,4,1.0,1.0,1.0,0.8688135147094727
80
+ jan,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",3,3,3,2,3,2,0.625,0.625,0.5,0.7387936115264893
81
+ sd3,0151.png,"Design a promotional graphic for 'Rich Dad Poor Dad' using the book cover, coins in a jar with a growing plant, and scattered coins.",4,3,4,4,4,3,1.0,1.0,1.0,0.9091759920120239
82
+ bag,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",3,2,2,3,2,3,0.4,0.4,0.8333333333333334,0.8620519042015076
83
+ GPT,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",4,4,5,5,5,5,1.0,1.0,1.0,0.8153773546218872
84
+ hid,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",3,3,3,5,5,4,0.3,0.3,0.6666666666666666,0.7592736482620239
85
+ jan,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",2,2,3,2,2,2,0.2,0.2,0.8333333333333334,0.3946765065193176
86
+ sd3,0161.png,"Design a clear, step-by-step assembly guide for building a stylish bookshelf using 3D renderings and visual cues.",2,2,2,5,5,5,0.2,0.2,0.6666666666666666,0.10539907217025757
87
+ bag,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",2,2,3,2,2,3,0.5,0.5,0.3333333333333333,0.7592747211456299
88
+ GPT,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",4,4,4,4,4,4,0.875,0.875,0.8333333333333334,0.9140728712081909
89
+ hid,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",4,4,4,4,4,3,0.875,0.875,0.3333333333333333,0.9140727519989014
90
+ jan,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",2,1,1,2,2,2,0.0,0.0,0.3333333333333333,0.49503543972969055
91
+ sd3,0171.png,"Design an agenda-style infographic on film editing evolution, from silent films to modern cinema.",3,2,2,2,2,2,0.125,0.125,0.0,0.8620532751083374
92
+ bag,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,3,2,2,2,3,3,0.5714285714285714,0.5714285714285714,0.8333333333333334,0.6257833242416382
93
+ GPT,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,5,5,5,5,5,5,1.0,1.0,0.8333333333333334,0.8816340565681458
94
+ hid,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,4,5,4,4,4,4,0.9285714285714286,0.9285714285714286,0.8333333333333334,0.8478595018386841
95
+ jan,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,1,1,1,3,3,3,0.0,0.0,0.3333333333333333,0.21796110272407532
96
+ sd3,0181.png,Design a bolded table showcasing 2023 funding allocations for climate resilience projects in Pacific Islands.,4,3,4,3,3,4,0.7142857142857143,0.7142857142857143,0.5,0.8066667318344116
97
+ bag,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,3,3,2,3,3,3,0.2,0.2,0.5,0.33495762944221497
98
+ GPT,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,5,5,5,5,5,5,0.9,0.9,1.0,0.881633460521698
99
+ hid,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,4,4,4,4,4,4,0.7,0.7,1.0,0.8985823392868042
100
+ jan,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,1,1,2,2,2,2,0.0,0.0,0.6666666666666666,0.5415700674057007
101
+ sd3,0191.png,Design a bottom-up flow chart illustrating pollination enhancement strategies for farms.,3,2,2,3,3,3,0.3,0.3,0.8333333333333334,0.7697268128395081
idiom.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_name,image_name,prompt,rewritten_prompt,correctness_1,correctness_2,correctness_3,aesthetic_1,aesthetic_2,aesthetic_3
2
+ bag,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,4,3,3,5,5,5
3
+ GPT,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,5,5,5,5,5,5
4
+ hid,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,3,2,5,5,5
5
+ jan,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,1,2,2,3,2,2
6
+ sd3,0001.png,He told a funny joke to break the ice at the start of the meeting.,He told a funny joke to help everyone relax and begin talking to each other at the start of the meeting.,3,2,3,4,4,3
7
+ bag,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",5,4,4,5,5,5
8
+ GPT,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",4,3,3,5,5,5
9
+ hid,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",3,3,3,5,5,5
10
+ jan,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",1,2,2,3,2,3
11
+ sd3,0011.png,"After three weeks of burning the midnight oil, she finally submitted her dissertation.","After three weeks of working late into the night, she finally submitted her dissertation.",2,2,2,4,3,4
12
+ bag,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",3,3,3,5,5,5
13
+ GPT,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",5,4,5,4,3,4
14
+ hid,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,2,1,5,4,4
15
+ jan,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",1,1,1,1,1,2
16
+ sd3,0021.png,"After three hours of interrogating the witness, Detective Peterson realized he had been barking up the wrong tree.","After three hours of interrogating the witness, Detective Peterson realized he had been pursuing a mistaken line of investigation.",2,1,3,2,3,3
17
+ bag,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",3,2,2,5,4,5
18
+ GPT,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",5,4,3,5,4,4
19
+ hid,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,2,5,5,5
20
+ jan,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",2,1,1,4,3,3
21
+ sd3,0031.png,"Despite the financial advisor's warnings, Sarah continued building castles in the air.","Despite the financial advisor's warnings, Sarah continued making impractical plans with no foundation in reality.",1,2,2,4,3,2
22
+ bag,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",4,4,3,5,5,5
23
+ GPT,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",2,1,1,5,4,3
24
+ hid,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",3,2,3,5,5,4
25
+ jan,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,1,2,1
26
+ sd3,0041.png,"Ideas are a dime a dozen, but execution is what really matters.","Ideas are very common and plentiful, but execution is what really matters.",1,1,1,4,3,3
27
+ bag,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",4,3,3,5,5,5
28
+ GPT,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",5,4,3,5,5,5
29
+ hid,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,4,3,5,4,4
30
+ jan,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",1,1,1,2,2,1
31
+ sd3,0051.png,"Despite the rising cost of living, they managed to make ends meet through careful budgeting.","Despite the rising cost of living, they managed to have just enough money for basic necessities through careful budgeting.",3,3,3,3,4,3
32
+ bag,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,2,2,4,3,3
33
+ GPT,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,2,2,5,3,4
34
+ hid,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",3,4,3,4,3,4
35
+ jan,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",2,1,1,3,2,2
36
+ sd3,0061.png,"Losing that job was a blessing in disguise, as it led me to a much better opportunity.","Losing that job was fortunate in hindsight, as it led me to a much better opportunity.",1,1,2,4,4,4
37
+ bag,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",,,,,,
38
+ GPT,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",,,,,,
39
+ hid,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",,,,,,
40
+ jan,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",,,,,,
41
+ sd3,0071.png,"Rather than immediately committing to the proposal, Gary was waiting to see which way the wind blows.","Rather than immediately committing to the proposal, Gary was delaying his decision until he could determine the likely outcome.",,,,,,
42
+ bag,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",,,,,,
43
+ GPT,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",,,,,,
44
+ hid,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",,,,,,
45
+ jan,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",,,,,,
46
+ sd3,0081.png,"With all the legal issues surrounding the project, they felt like they were ""standing on thin ice.","With all the legal issues surrounding the project, they felt like they were in a precarious situation where one wrong move could lead to serious trouble.",,,,,,
47
+ bag,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,,,,,,
48
+ GPT,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,,,,,,
49
+ hid,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,,,,,,
50
+ jan,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,,,,,,
51
+ sd3,0091.png,Working part-time allows me to have the best of both worlds—time with my kids and a career.,Working part-time allows me to enjoy the advantages of two different situations simultaneously—time with my kids and a career.,,,,,,
52
+ bag,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",,,,,,
53
+ GPT,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",,,,,,
54
+ hid,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",,,,,,
55
+ jan,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",,,,,,
56
+ sd3,0101.png,"Despite their careful planning, I got wind of it before they made the announcement.","Despite their careful planning, I heard about it indirectly before they made the announcement.",,,,,,
57
+ bag,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,,,,,,
58
+ GPT,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,,,,,,
59
+ hid,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,,,,,,
60
+ jan,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,,,,,,
61
+ sd3,0111.png,Let me play devil's advocate here and question the plan's feasibility.,Let me express a contrary opinion to test your argument's strength and question the plan's feasibility.,,,,,,
62
+ bag,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",,,,,,
63
+ GPT,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",,,,,,
64
+ hid,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",,,,,,
65
+ jan,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",,,,,,
66
+ sd3,0121.png,"The prototype failed, so it's back to the drawing board.","The prototype failed, so we need to start over and make a new plan.",,,,,,
67
+ bag,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",,,,,,
68
+ GPT,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",,,,,,
69
+ hid,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",,,,,,
70
+ jan,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",,,,,,
71
+ sd3,0131.png,"They're unaware of the challenges ahead. Well, ignorance is bliss.","They're unaware of the challenges ahead. Well, being unaware of these facts probably makes them happier.",,,,,,
72
+ bag,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",,,,,,
73
+ GPT,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",,,,,,
74
+ hid,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",,,,,,
75
+ jan,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",,,,,,
76
+ sd3,0141.png,"John eagerly signed up for the complimentary financial seminar, but his father reminded him that there's no such thing as a free lunch.","John eagerly signed up for the complimentary financial seminar, but his father reminded him that anything offered for free usually comes with hidden costs or expectations.",,,,,,
77
+ bag,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,,,,,,
78
+ GPT,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,,,,,,
79
+ hid,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,,,,,,
80
+ jan,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,,,,,,
81
+ sd3,0151.png,You can trust this news; I got it straight from the horse's mouth.,You can trust this news; I received it directly from the most authoritative source.,,,,,,
82
+ bag,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,,,,,,
83
+ GPT,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,,,,,,
84
+ hid,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,,,,,,
85
+ jan,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,,,,,,
86
+ sd3,0161.png,You can say that again! This is the best pizza I've ever had!,I strongly agree with you! This is the best pizza I've ever had!,,,,,,
87
+ bag,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",,,,,,
88
+ GPT,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",,,,,,
89
+ hid,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",,,,,,
90
+ jan,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",,,,,,
91
+ sd3,0171.png,"The banquet was fit for a king, with an abundance of gourmet dishes.","The banquet was extremely luxurious, with an abundance of gourmet dishes.",,,,,,
92
+ bag,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",,,,,,
93
+ GPT,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",,,,,,
94
+ hid,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",,,,,,
95
+ jan,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",,,,,,
96
+ sd3,0181.png,"After dinner, John offered me the 50 cent tour of his new apartment.","After dinner, John offered me a quick, brief overview of his new apartment.",,,,,,
97
+ bag,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",,,,,,
98
+ GPT,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",,,,,,
99
+ hid,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",,,,,,
100
+ jan,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",,,,,,
101
+ sd3,0191.png,She always encouraged her students to reach for the moon in their ambitions.,"She always encouraged her students to strive for ambitious, seemingly impossible goals in their ambitions.",,,,,,
images_eval/entity/0001_GPT.png ADDED

Git LFS Details

  • SHA256: 69571025a5afe94c9be245e93738ac9310df60bd7b7dbe510a3e54cffdf5270a
  • Pointer size: 132 Bytes
  • Size of remote file: 2.11 MB
images_eval/entity/0001_bagel.png ADDED

Git LFS Details

  • SHA256: 559ebf54f76ad2aec76856b7ad6de3c8dd3f5d314138d50d1783493ec5a6d4ff
  • Pointer size: 132 Bytes
  • Size of remote file: 1.79 MB
images_eval/entity/0001_hidream.png ADDED

Git LFS Details

  • SHA256: 9890bf1606f09a18c75d0a7531e3c9b737b31d599a785cd6bd0f63cbd42e8cef
  • Pointer size: 132 Bytes
  • Size of remote file: 1.85 MB
images_eval/entity/0001_janus_pro_7B.png ADDED

Git LFS Details

  • SHA256: af7a70fa5e887069bc44e13ee492aa1f9d10bdf80486f8feead47fe5b50ebc77
  • Pointer size: 131 Bytes
  • Size of remote file: 213 kB
images_eval/entity/0001_sd30_medium.png ADDED

Git LFS Details

  • SHA256: ce2ac1cc9eeea78ff739a0cef118c08588e828b8ce1c4de710dcdb10c524a414
  • Pointer size: 132 Bytes
  • Size of remote file: 2.54 MB
images_eval/entity/0011_GPT.png ADDED

Git LFS Details

  • SHA256: 5eeb9f73fd2a24befadc4bc14a309469ae52c0be1df9607fa08988b4bde9d3e5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.49 MB
images_eval/entity/0011_bagel.png ADDED

Git LFS Details

  • SHA256: 762cd8f0a152bcfd1844ce229b552129dc4b919ffe46d8305b3d50736e3d92b2
  • Pointer size: 132 Bytes
  • Size of remote file: 1.24 MB
images_eval/entity/0011_hidream.png ADDED

Git LFS Details

  • SHA256: c408bdb7b96ad909cc881cebe96196acf0a24b598cf3d185467f7bbaca07ee35
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
images_eval/entity/0011_janus_pro_7B.png ADDED

Git LFS Details

  • SHA256: 6adf6ef93edf6bfe083d74b84322e266ba76c967d87760a71fbf03c6973d0125
  • Pointer size: 131 Bytes
  • Size of remote file: 187 kB
images_eval/entity/0011_sd30_medium.png ADDED

Git LFS Details

  • SHA256: 13fa963fe121cea1904d672289159513ecb4da0af0e8b6ba0315146f1cc4417f
  • Pointer size: 131 Bytes
  • Size of remote file: 994 kB
images_eval/entity/0021_GPT.png ADDED

Git LFS Details

  • SHA256: 6ac1abe8d3616c12f30e9431acdadac7c3df2af5891ac99aed76135e859dc44d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.9 MB
images_eval/entity/0021_bagel.png ADDED

Git LFS Details

  • SHA256: 8157d17048ed40e91541a589bb498b6c9d2f1a5d952f73c860418045f2aec185
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
images_eval/entity/0021_hidream.png ADDED

Git LFS Details

  • SHA256: 8fd533bafcc307d21aa218a561cb1643d4c1215285025a9be60a6af752a17495
  • Pointer size: 132 Bytes
  • Size of remote file: 1.63 MB
images_eval/entity/0021_janus_pro_7B.png ADDED

Git LFS Details

  • SHA256: b3c89624865c4d8cb01a7362844e04ed78dfb55a4191fe597725c3d5b95fd610
  • Pointer size: 131 Bytes
  • Size of remote file: 220 kB
images_eval/entity/0021_sd30_medium.png ADDED

Git LFS Details

  • SHA256: c3bf7f6386fe9833dbced1f25ab289bd22470c5f826739cb5df2f27f2d243a1c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.89 MB
images_eval/entity/0031_GPT.png ADDED

Git LFS Details

  • SHA256: 0254aa4da5d92ae34b6f03b48a84f1a401eb25be2d4bae23374f0daafc4c7820
  • Pointer size: 132 Bytes
  • Size of remote file: 1.5 MB
images_eval/entity/0031_bagel.png ADDED

Git LFS Details

  • SHA256: 17d9434c9efec24ec2227ed2f2757f85a9dcb9b1599b8cd14094194766f7314b
  • Pointer size: 131 Bytes
  • Size of remote file: 930 kB
images_eval/entity/0031_hidream.png ADDED

Git LFS Details

  • SHA256: 664692d007e82acb548ac5e7ce129030a93ebec1f6af5d126761a15d8e527896
  • Pointer size: 132 Bytes
  • Size of remote file: 1.15 MB
images_eval/entity/0031_janus_pro_7B.png ADDED

Git LFS Details

  • SHA256: 04ec57eebc2557e70d76b63b5bc5bbef28d11e9c32c7b8297b6d7216bf460a73
  • Pointer size: 131 Bytes
  • Size of remote file: 181 kB
images_eval/entity/0031_sd30_medium.png ADDED

Git LFS Details

  • SHA256: fc657bcf9495ef8ffeed43d3a6f553885060814c56818817bdfbe8eb7cbae90c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.51 MB
images_eval/entity/0041_GPT.png ADDED

Git LFS Details

  • SHA256: 4983ecab1ef4e10ed24559116590e0590feadc59a6314e51b89dce50fccbad4e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.65 MB
images_eval/entity/0041_bagel.png ADDED

Git LFS Details

  • SHA256: 1df984222e64776cc9bcaad344f86d5a4db95713619a5f8111d53e4923868414
  • Pointer size: 132 Bytes
  • Size of remote file: 1.06 MB
images_eval/entity/0041_hidream.png ADDED

Git LFS Details

  • SHA256: e21f6aaecbaf3c52a2298d14f888b3877ba4fa62d07eeb14ce57fe9e7b151809
  • Pointer size: 132 Bytes
  • Size of remote file: 1.12 MB
images_eval/entity/0041_janus_pro_7B.png ADDED

Git LFS Details

  • SHA256: 2565e448fc3231af33de7174fe38c27ca3653a3b20ec7103dbfab01aee06aee8
  • Pointer size: 131 Bytes
  • Size of remote file: 190 kB
images_eval/entity/0041_sd30_medium.png ADDED

Git LFS Details

  • SHA256: 6bbcfb201184983ad5dda3ae5305b9280346e788a2d38d5535b5cfd3c68d4233
  • Pointer size: 132 Bytes
  • Size of remote file: 1.01 MB
images_eval/entity/0051_GPT.png ADDED

Git LFS Details

  • SHA256: d9975de9eda0917fd9e0cbc72052c7ea86989c0c0c287439c46112d3b7fcd8bb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.67 MB