CovidSpeechChallenge_2021/run_experiments.sh

25 lines
805 B
Bash
Raw Permalink Normal View History

2021-09-13 09:22:59 +00:00
#!/bin/bash
2021-09-13 09:27:49 +00:00
# Handcrafted Features
2021-09-13 09:22:59 +00:00
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
2021-09-13 09:27:49 +00:00
# VGGish Features
2021-09-13 09:22:59 +00:00
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
2021-09-13 09:27:49 +00:00
# OpenL3 Features
2021-09-13 09:22:59 +00:00
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
2021-09-13 09:27:49 +00:00
# SVM Train and Predict for each combination of features
2021-09-13 09:22:59 +00:00
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