-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md * Update README_legacy.md * supported additional training dataset * Update README.md * fix additional training data --------- Co-authored-by: Noboru Harada <64912994+noboru2000@users.noreply.github.com>
- Loading branch information
1 parent
887e67a
commit c7886d9
Showing
3 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
mkdir -p "data/dcase2023t2/eval_data/raw" | ||
mkdir -p "data/dcase2024t2/eval_data/raw" | ||
|
||
# download eval data | ||
cd "data/dcase2024t2/eval_data/raw" | ||
for machine_type in 3DPrinter AirCompressor Scanner ToyCircuit HoveringDrone HairDryer ToothBrush RoboticArm BrushlessMotor; do | ||
wget "https://zenodo.org/records/11183284/files/eval_data_${machine_type}_train.zip" | ||
unzip "eval_data_${machine_type}_train.zip" | ||
|
||
# for machine_type in 3DPrinter AirCompressor Scanner ToyCircuit HoveringDrone HairDryer ToothBrush RoboticArm BrushlessMotor; do | ||
# wget "https://zenodo.org/records/11183284/files/eval_data_${machine_type}_train.zip" | ||
# unzip "eval_data_${machine_type}_train.zip" | ||
# done | ||
|
||
for machine_type in \ | ||
3DPrinter_train_r2 \ | ||
AirCompressor_train \ | ||
Scanner_train \ | ||
ToyCircuit_train \ | ||
HoveringDrone_train \ | ||
HairDryer_train \ | ||
ToothBrush_train \ | ||
RoboticArm_train_r2 \ | ||
BrushlessMotor_train \ | ||
; do | ||
wget "https://zenodo.org/records/11259435/files/eval_data_${machine_type}.zip" | ||
unzip "eval_data_${machine_type}.zip" | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters