Replace eval-noanswer.jsonl with eval.jsonl (with answers); update README
Browse files- README.md +5 -4
- eval-noanswer.jsonl → eval.jsonl +0 -0
README.md
CHANGED
|
@@ -3,7 +3,7 @@ configs:
|
|
| 3 |
- config_name: default
|
| 4 |
data_files:
|
| 5 |
- split: eval
|
| 6 |
-
path: "eval
|
| 7 |
license: apache-2.0
|
| 8 |
---
|
| 9 |
# ADQA-Bench: Audio-Dependent Question Answering Evaluation Benchmark
|
|
@@ -49,21 +49,21 @@ All samples undergo the four-step **Audio-Dependency Filtering (ADF)** process d
|
|
| 49 |
|
| 50 |
```text
|
| 51 |
ADQA-Bench/
|
| 52 |
-
├── eval
|
| 53 |
-
├── eval.jsonl # Full data with answers (to be released after the competition)
|
| 54 |
├── eval_audios/ # Audio files (3,000 .wav files)
|
| 55 |
└── README.md
|
| 56 |
```
|
| 57 |
|
| 58 |
## Data Format
|
| 59 |
|
| 60 |
-
Each entry in `eval
|
| 61 |
|
| 62 |
| Field | Type | Description |
|
| 63 |
|-------|------|-------------|
|
| 64 |
| `id` | string | Unique sample identifier (e.g., `eval_0001`) |
|
| 65 |
| `audio_path` | string | Relative path to audio file |
|
| 66 |
| `question_text` | string | Question text |
|
|
|
|
| 67 |
| `multi_choice` | list[string] | Answer choices |
|
| 68 |
|
| 69 |
### Example
|
|
@@ -73,6 +73,7 @@ Each entry in `eval-noanswer.jsonl` is a JSON object with the following fields:
|
|
| 73 |
"id": "eval_0001",
|
| 74 |
"audio_path": "eval_audios/eval_0001.wav",
|
| 75 |
"question_text": "What is the speaker's primary emotion in this audio?",
|
|
|
|
| 76 |
"multi_choice": ["Sadness", "Happiness", "Anger", "Fear"]
|
| 77 |
}
|
| 78 |
```
|
|
|
|
| 3 |
- config_name: default
|
| 4 |
data_files:
|
| 5 |
- split: eval
|
| 6 |
+
path: "eval.jsonl"
|
| 7 |
license: apache-2.0
|
| 8 |
---
|
| 9 |
# ADQA-Bench: Audio-Dependent Question Answering Evaluation Benchmark
|
|
|
|
| 49 |
|
| 50 |
```text
|
| 51 |
ADQA-Bench/
|
| 52 |
+
├── eval.jsonl # Full evaluation data with answers (3,000 samples)
|
|
|
|
| 53 |
├── eval_audios/ # Audio files (3,000 .wav files)
|
| 54 |
└── README.md
|
| 55 |
```
|
| 56 |
|
| 57 |
## Data Format
|
| 58 |
|
| 59 |
+
Each entry in `eval.jsonl` is a JSON object with the following fields:
|
| 60 |
|
| 61 |
| Field | Type | Description |
|
| 62 |
|-------|------|-------------|
|
| 63 |
| `id` | string | Unique sample identifier (e.g., `eval_0001`) |
|
| 64 |
| `audio_path` | string | Relative path to audio file |
|
| 65 |
| `question_text` | string | Question text |
|
| 66 |
+
| `answer` | string | Ground-truth answer (one of `multi_choice`) |
|
| 67 |
| `multi_choice` | list[string] | Answer choices |
|
| 68 |
|
| 69 |
### Example
|
|
|
|
| 73 |
"id": "eval_0001",
|
| 74 |
"audio_path": "eval_audios/eval_0001.wav",
|
| 75 |
"question_text": "What is the speaker's primary emotion in this audio?",
|
| 76 |
+
"answer": "Happiness",
|
| 77 |
"multi_choice": ["Sadness", "Happiness", "Anger", "Fear"]
|
| 78 |
}
|
| 79 |
```
|
eval-noanswer.jsonl → eval.jsonl
RENAMED
|
The diff for this file is too large to render.
See raw diff
|
|
|