From d7a193dd7197e33c617a0613a4f88a9a767f08f1 Mon Sep 17 00:00:00 2001 From: em474re Date: Mon, 13 Sep 2021 11:27:49 +0200 Subject: [PATCH] run experiments script --- run_experiments.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run_experiments.sh b/run_experiments.sh index b0dc455..e321928 100644 --- a/run_experiments.sh +++ b/run_experiments.sh @@ -1,16 +1,21 @@ #!/bin/bash + +# Handcrafted Features 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 +# VGGish Features 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 +# OpenL3 Features 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 +# SVM Train and Predict for each combination of features python src/svm_hand.py python src/svm_vgg.py python src/svm_openl3.py