Howieeeee commited on
Commit
46238df
·
verified ·
1 Parent(s): 777ee5b

Delete constants.py

Browse files
Files changed (1) hide show
  1. constants.py +0 -90
constants.py DELETED
@@ -1,90 +0,0 @@
1
- import os
2
- # this is .py for store constants
3
- MODEL_TYPE = [
4
- "Video",
5
- "3D",
6
- "4D"
7
- ]
8
- DEFAULT_MODEL_TYPE = [
9
- "Video",
10
- "3D",
11
- "4D"
12
- ]
13
-
14
- ABILITY = [
15
- "I2V",
16
- "T2V"
17
- ]
18
- DEFAULT_ABILITY = [
19
- "I2V",
20
- "T2V"
21
- ]
22
-
23
- TASK_INFO = [
24
- "WorldScore-Static",
25
- "WorldScore-Dynamic",
26
- "Camera Control",
27
- "Object Control",
28
- "Content Alignment",
29
- "3D Consistency",
30
- "Photometric Consistency",
31
- "Style Consistency",
32
- "Subjective Quality",
33
- "Motion Accuracy",
34
- "Motion Magnitude",
35
- "Motion Smoothness",
36
- ]
37
- DEFAULT_INFO = [
38
- "WorldScore-Static",
39
- ]
40
-
41
- MODEL_INFO = [
42
- "Model Type",
43
- "Model Name",
44
- "Ability",
45
- "Sampled by",
46
- "Evaluated by",
47
- "Accessibility",
48
- "Date",
49
- ]
50
-
51
- COLNAME2KEY = {
52
- "WorldScore-Static":"WorldScore-Static",
53
- "WorldScore-Dynamic":"WorldScore-Dynamic",
54
- "Camera Control":"camera_control",
55
- "Object Control":"object_control",
56
- "Content Alignment":"content_alignment",
57
- "3D Consistency":"3d_consistency",
58
- "Photometric Consistency":"photometric_consistency",
59
- "Style Consistency":"style_consistency",
60
- "Subjective Quality":"subjective_quality",
61
- "Motion Accuracy":"motion_accuracy",
62
- "Motion Magnitude":"motion_magnitude",
63
- "Motion Smoothness":"motion_smoothness",
64
- }
65
- DATA_TITILE_TYPE = ['markdown', 'markdown', 'markdown', 'markdown', 'markdown', 'markdown', 'markdown', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number']
66
-
67
- SUBMISSION_NAME = "worldscore_leaderboard_submission"
68
- SUBMISSION_URL = os.path.join("https://huggingface.co/datasets/Howieeeee/", SUBMISSION_NAME)
69
- CSV_DIR = "./worldscore_leaderboard_submission/results.csv"
70
- INFO_DIR = "./worldscore_leaderboard_submission/model_info.csv"
71
-
72
- COLUMN_NAMES = MODEL_INFO + TASK_INFO
73
-
74
- LEADERBORAD_INTRODUCTION = """# WorldScore Leaderboard
75
- [Paper](https://arxiv.org/abs/2504.00983) | [Website](https://haoyi-duan.github.io/WorldScore/) | [Code](https://github.com/haoyi-duan/WorldScore) | [Dataset](https://huggingface.co/datasets/Howieeeee/WorldScore)
76
-
77
- 🏆 Welcome to the leaderboard of **WorldScore**, the first unified evaluation benchmark for world generation.
78
-
79
- **Join Leaderboard**: Clicking the `Submit here!` button for more details.
80
- """
81
-
82
- SUBMIT_INTRODUCTION = """# Instruction for WorldScore Leaderboard Submission
83
-
84
- 1. Please see the [instructions](https://github.com/haoyi-duan/WorldScore/blob/main/README.md#leaderboard) for two ways to participate. One option is to upload the generated `worldscore.json` file directly on this page.
85
- 2. To obtain the `worldscore_output/worldscore.json`, you need to run WorldScore. For setup and usage, refer to the project on [GitHub](https://github.com/haoyi-duan/WorldScore).
86
- 3. Click the `Submit here!` button and fill in the required information.
87
- 4. Finally, upload the JSON file below, make sure to click the `Refresh` button.
88
-
89
- ⚠️ Submissions that do not correctly fill in the model name and model link may be removed by the WorldScore team.
90
- """