From 70a1300506ebd8fab1622502043e84ce530c66ce Mon Sep 17 00:00:00 2001 From: em474re Date: Mon, 13 Sep 2021 11:22:59 +0200 Subject: [PATCH] run experiments script --- run_experiments.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 run_experiments.sh diff --git a/run_experiments.sh b/run_experiments.sh new file mode 100644 index 0000000..b0dc455 --- /dev/null +++ b/run_experiments.sh @@ -0,0 +1,20 @@ +#!/bin/bash +python src/extract_handcrafted_features.py dist/wav/ train +python src/extract_handcrafted_features.py dist/wav/ test +python src/extract_handcrafted_features.py dist/wav/ devel + +python src/extract_vgg_features.py dist/wav/ train +python src/extract_vgg_features.py dist/wav/ test +python src/extract_vgg_features.py dist/wav/ devel + +python src/extract_openl3_features.py dist/wav/ train +python src/extract_openl3_features.py dist/wav/ test +python src/extract_openl3_features.py dist/wav/ devel + +python src/svm_hand.py +python src/svm_vgg.py +python src/svm_openl3.py +python src/svm_hand_vgg.py +python src/svm_openl3_vgg.py +python src/svm_openl3_hand.py +python src/svm_openl3_all.py \ No newline at end of file