Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -68,27 +68,68 @@ pip install -r requirements.txt
|
|
| 68 |
|
| 69 |
## π Dataset Structure
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
```
|
| 72 |
XModBench/
|
| 73 |
-
βββ
|
| 74 |
-
β βββ
|
| 75 |
-
β
|
| 76 |
-
β
|
| 77 |
-
β
|
| 78 |
-
β
|
| 79 |
-
β
|
| 80 |
-
β βββ
|
| 81 |
-
β
|
| 82 |
-
β
|
| 83 |
-
β
|
| 84 |
-
βββ
|
| 85 |
-
β
|
| 86 |
-
|
| 87 |
-
β
|
| 88 |
-
βββ
|
| 89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|