forked from felixbur/nkululeko
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
FBurkhardt
committed
Mar 18, 2024
1 parent
f52bb46
commit 24b21f9
Showing
9 changed files
with
53 additions
and
16 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,2 +1,2 @@ | ||
VERSION="0.80.4" | ||
VERSION="0.81.0" | ||
SAMPLING_RATE = 16000 |
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
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
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,29 +1,38 @@ | ||
# test explore module | ||
python -m nkululeko.explore --config tests/exp_emodb_explore_data.ini | ||
python -m nkululeko.explore --config tests/exp_emodb_explore_featimportance.ini | ||
python -m nkululeko.explore --config tests/exp_emodb_explore_scatter.ini | ||
python -m nkululeko.explore --config tests/exp_emodb_explore_features.ini | ||
python -m nkululeko.explore --config tests/exp_androids_explore.ini | ||
python -m nkululeko.explore --config tests/exp_agedb_explore_data.ini | ||
# test basic nkululeko | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_os_praat_xgb.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_featimport_xgb.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_cnn.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_balancing.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_audmodel_xgb.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_split.ini | ||
#python -m nkululeko.nkululeko --config tests/exp_emodb_clap_mlp.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_os_mlp.ini | ||
python -m nkululeko.nkululeko --config tests/exp_ravdess_os_xgb.ini | ||
python -m nkululeko.nkululeko --config tests/exp_agedb_os_xgr.ini | ||
python -m nkululeko.nkululeko --config tests/exp_agedb_os_mlp.ini | ||
python -m nkululeko.nkululeko --config tests/exp_agedb_class_os_xgb.ini | ||
python -m nkululeko.explore --config tests/exp_agedb_explore_data.ini | ||
# test augmentation | ||
python -m nkululeko.augment --config tests/exp_emodb_augment_os_xgb.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb-aug_os_xgb.ini | ||
python -m nkululeko.augment --config tests/exp_emodb_random_splice_os_xgb.ini | ||
python -m nkululeko.nkululeko --config tests/exp_emodb_rs_os_xgb.ini | ||
python -m nkululeko.aug_train --config tests/emodb_aug_train.ini | ||
python -m nkululeko.nkululeko --config tests/exp_androids_os_svm.ini | ||
# test prediction | ||
python -m nkululeko.predict --config tests/exp_emodb_predict.ini | ||
python -m nkululeko.nkululeko --config tests/emodb_demo.ini | ||
# test demo | ||
python -m nkululeko.demo --config tests/emodb_demo.ini --list data/test/samples.csv | ||
# test test module | ||
python -m nkululeko.nkululeko --config exp_emodb_os_xgb_test.ini | ||
python -m nkululeko.test --config exp_emodb_os_xgb_test.ini | ||
# test multidb | ||
python -m nkululeko.multidb --config tests/exp_multidb.ini | ||
# test spotlight | ||
python -m nkululeko.explore --config tests/exp_explore.ini |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[EXP] | ||
root = ./tests/results/ | ||
name = exp_testmodule | ||
save = True | ||
[DATA] | ||
databases = ['emodb'] | ||
root_folders = tests/data_roots.ini | ||
target = emotion | ||
tests = ['polish'] | ||
polish.split_strategy = speaker_split | ||
labels = ['angry', 'happy', 'neutral', 'sad'] | ||
no_reuse = True | ||
[FEATS] | ||
type = ['os'] | ||
[MODEL] | ||
type = xgb | ||
save = True |