Skip to content

Commit 55dbfc9

Browse files
Fix downlaod script for evaluation dataset (#15)
* Update README.md * Update README_legacy.md * supported additional training dataset * Update README.md * fix additional training data * supported evaluation dataset * fix download script 2024t2 eval data url fixed --------- Co-authored-by: Noboru Harada <64912994+noboru2000@users.noreply.github.com>
1 parent 04ed90d commit 55dbfc9

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,12 @@ We developed and tested the source code on Ubuntu 20.04.4 LTS.
294294
- fasteners == 0.18
295295

296296
## Change Log
297+
### [3.2.1](https://github.com/nttcslab/dcase2023_task2_baseline_ae/releases/tag/v3.2.1)
298+
299+
#### Fixed download shell script
300+
301+
- The URL to download DCASE2024T2 Evaluation dataset was incorrect, so I fixed data_download_2024eval.sh.
302+
297303
### [3.2.0](https://github.com/nttcslab/dcase2023_task2_baseline_ae/releases/tag/v3.2.0)
298304

299305
#### Added

data_download_2024eval.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ mkdir -p "${ROOT_DIR}/${parent_dir}/dcase2024t2/eval_data/raw"
44

55
# download eval data
66
cd "${parent_dir}/dcase2024t2/eval_data/raw"
7-
for machine_type in bandsaw grinder shaker ToyDrone ToyNscale ToyTank Vacuum; do
7+
for machine_type in \
8+
3DPrinter \
9+
AirCompressor \
10+
Scanner \
11+
ToyCircuit \
12+
HoveringDrone \
13+
HairDryer \
14+
ToothBrush \
15+
RoboticArm \
16+
BrushlessMotor \
17+
; do
818
wget "https://zenodo.org/records/11363076/files/eval_data_${machine_type}_test.zip"
919
unzip "eval_data_${machine_type}_test.zip"
1020
done

0 commit comments

Comments
 (0)