Spaces:
Running
Running
yinanhe
commited on
Commit
•
59f1f35
1
Parent(s):
e6d1f05
[update] fix bug
Browse files- constants.py +23 -2
constants.py
CHANGED
@@ -7,9 +7,9 @@ TASK_INFO = [
|
|
7 |
"background consistency",
|
8 |
"temporal flickering",
|
9 |
"motion smoothness",
|
10 |
-
"dynamic degree",
|
11 |
"aesthetic quality",
|
12 |
"imaging quality",
|
|
|
13 |
"object class",
|
14 |
"multiple objects",
|
15 |
"human action",
|
@@ -25,9 +25,9 @@ DEFAULT_INFO = [
|
|
25 |
"background consistency",
|
26 |
"temporal flickering",
|
27 |
"motion smoothness",
|
28 |
-
"dynamic degree",
|
29 |
"aesthetic quality",
|
30 |
"imaging quality",
|
|
|
31 |
"object class",
|
32 |
"multiple objects",
|
33 |
"human action",
|
@@ -38,6 +38,27 @@ DEFAULT_INFO = [
|
|
38 |
"temporal style",
|
39 |
"overall consistency"]
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
DATA_TITILE_TYPE = ['markdown', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number']
|
42 |
|
43 |
SUBMISSION_NAME = "vbench_leaderboard_submission"
|
|
|
7 |
"background consistency",
|
8 |
"temporal flickering",
|
9 |
"motion smoothness",
|
|
|
10 |
"aesthetic quality",
|
11 |
"imaging quality",
|
12 |
+
"dynamic degree",
|
13 |
"object class",
|
14 |
"multiple objects",
|
15 |
"human action",
|
|
|
25 |
"background consistency",
|
26 |
"temporal flickering",
|
27 |
"motion smoothness",
|
|
|
28 |
"aesthetic quality",
|
29 |
"imaging quality",
|
30 |
+
"dynamic degree",
|
31 |
"object class",
|
32 |
"multiple objects",
|
33 |
"human action",
|
|
|
38 |
"temporal style",
|
39 |
"overall consistency"]
|
40 |
|
41 |
+
QUALITY_LIST = [
|
42 |
+
"subject consistency",
|
43 |
+
"background consistency",
|
44 |
+
"temporal flickering",
|
45 |
+
"motion smoothness",
|
46 |
+
"aesthetic quality",
|
47 |
+
"imaging quality",
|
48 |
+
"dynamic degree"]
|
49 |
+
|
50 |
+
SEMANTIC_LIST = [
|
51 |
+
"object class",
|
52 |
+
"multiple objects",
|
53 |
+
"human action",
|
54 |
+
"color",
|
55 |
+
"spatial relationship",
|
56 |
+
"scene",
|
57 |
+
"appearance style",
|
58 |
+
"temporal style",
|
59 |
+
"overall consistency"
|
60 |
+
]
|
61 |
+
|
62 |
DATA_TITILE_TYPE = ['markdown', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number']
|
63 |
|
64 |
SUBMISSION_NAME = "vbench_leaderboard_submission"
|