RyanWW commited on
Commit
abbe20e
Β·
verified Β·
1 Parent(s): 30a17ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -17
README.md CHANGED
@@ -68,27 +68,68 @@ pip install -r requirements.txt
68
 
69
  ## πŸ“‚ Dataset Structure
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  ```
72
  XModBench/
73
- β”œβ”€β”€ data/
74
- β”‚ β”œβ”€β”€ text/
75
- β”‚ β”‚ β”œβ”€β”€ perception/
76
- β”‚ β”‚ β”œβ”€β”€ spatial/
77
- β”‚ β”‚ β”œβ”€β”€ temporal/
78
- β”‚ β”‚ β”œβ”€β”€ linguistic/
79
- β”‚ β”‚ └── knowledge/
80
- β”‚ β”œβ”€β”€ vision/
81
- β”‚ β”‚ └── [same task categories]
82
- β”‚ └── audio/
83
- β”‚ └── [same task categories]
84
- β”œβ”€β”€ models/
85
- β”‚ └── evaluation_scripts/
86
- β”œβ”€β”€ results/
87
- β”‚ └── model_performances/
88
- └── analysis/
89
- └── visualization/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  ```
91
 
 
 
92
 
93
 
94
  ### Basic Usage
 
68
 
69
  ## πŸ“‚ Dataset Structure
70
 
71
+ ### Download and Setup
72
+
73
+ After cloning from HuggingFace, you'll need to extract the data:
74
+
75
+ ```bash
76
+ # Download the dataset from HuggingFace
77
+ git clone https://huggingface.co/datasets/RyanWW/XModBench
78
+
79
+ cd XModBench
80
+
81
+ # Extract the Data.zip file
82
+ unzip Data.zip
83
+
84
+ # Now you have the following structure:
85
+ ```
86
+
87
+ ### Directory Structure
88
+
89
  ```
90
  XModBench/
91
+ β”œβ”€β”€ Data/ # Unzipped from Data.zip
92
+ β”‚ β”œβ”€β”€ landscape_audiobench/ # Nature sound scenes
93
+ β”‚ β”œβ”€β”€ emotions/ # Emotion classification data
94
+ β”‚ β”œβ”€β”€ solos_processed/ # Musical instrument solos
95
+ β”‚ β”œβ”€β”€ gtzan-dataset-music-genre-classification/ # Music genre data
96
+ β”‚ β”œβ”€β”€ singers_data_processed/ # Singer identification
97
+ β”‚ β”œβ”€β”€ temporal_audiobench/ # Temporal reasoning tasks
98
+ β”‚ β”œβ”€β”€ urbansas_samples_videos_filtered/ # Urban 3D movements
99
+ β”‚ β”œβ”€β”€ STARSS23_processed_augmented/ # Spatial audio panorama
100
+ β”‚ β”œβ”€β”€ vggss_audio_bench/ # Fine-grained audio-visual
101
+ β”‚ β”œβ”€β”€ URMP_processed/ # Musical instrument arrangements
102
+ β”‚ β”œβ”€β”€ ExtremCountAV/ # Counting tasks
103
+ β”‚ β”œβ”€β”€ posters/ # Movie posters
104
+ β”‚ └── trailer_clips/ # Movie trailers
105
+ β”‚
106
+ └── tasks/ # Task configurations (ready to use)
107
+ β”œβ”€β”€ 01_perception/ # Perception tasks
108
+ β”‚ β”œβ”€β”€ finegrained/ # Fine-grained recognition
109
+ β”‚ β”œβ”€β”€ natures/ # Nature scenes
110
+ β”‚ β”œβ”€β”€ instruments/ # Musical instruments
111
+ β”‚ β”œβ”€β”€ instruments_comp/ # Instrument compositions
112
+ β”‚ └── general_activities/ # General activities
113
+ β”œβ”€β”€ 02_spatial/ # Spatial reasoning tasks
114
+ β”‚ β”œβ”€β”€ 3D_movements/ # 3D movement tracking
115
+ β”‚ β”œβ”€β”€ panaroma/ # Panoramic spatial audio
116
+ β”‚ └── arrangements/ # Spatial arrangements
117
+ β”œβ”€β”€ 03_speech/ # Speech and language tasks
118
+ β”‚ β”œβ”€β”€ recognition/ # Speech recognition
119
+ β”‚ └── translation/ # Translation
120
+ β”œβ”€β”€ 04_temporal/ # Temporal reasoning tasks
121
+ β”‚ β”œβ”€β”€ count/ # Temporal counting
122
+ β”‚ β”œβ”€β”€ order/ # Temporal ordering
123
+ β”‚ └── calculation/ # Temporal calculations
124
+ └── 05_Exteral/ # Additional classification tasks
125
+ β”œβ”€β”€ emotion_classification/ # Emotion recognition
126
+ β”œβ”€β”€ music_genre_classification/ # Music genre
127
+ β”œβ”€β”€ singer_identification/ # Singer identification
128
+ └── movie_matching/ # Movie matching
129
  ```
130
 
131
+ **Note**: All file paths in the task JSON files use relative paths (`./benchmark/Data/...`), so ensure your working directory is set correctly when running evaluations.
132
+
133
 
134
 
135
  ### Basic Usage