-
Notifications
You must be signed in to change notification settings - Fork 151
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
1 parent
5c329fb
commit bf300ae
Showing
125 changed files
with
108,750 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2,747 changes: 2,747 additions & 0 deletions
2,747
technical_validation/gender_classification/annotations/LABELS/breathing-deep.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,747 changes: 2,747 additions & 0 deletions
2,747
technical_validation/gender_classification/annotations/LABELS/breathing-shallow.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,234 changes: 2,234 additions & 0 deletions
2,234
technical_validation/gender_classification/annotations/LABELS/cough-heavy.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,233 changes: 2,233 additions & 0 deletions
2,233
technical_validation/gender_classification/annotations/LABELS/cough-shallow.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,234 changes: 2,234 additions & 0 deletions
2,234
technical_validation/gender_classification/annotations/LABELS/counting-fast.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,234 changes: 2,234 additions & 0 deletions
2,234
technical_validation/gender_classification/annotations/LABELS/counting-normal.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,234 changes: 2,234 additions & 0 deletions
2,234
technical_validation/gender_classification/annotations/LABELS/vowel-a.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,747 changes: 2,747 additions & 0 deletions
2,747
technical_validation/gender_classification/annotations/LABELS/vowel-e.csv
Large diffs are not rendered by default.
Oops, something went wrong.
2,233 changes: 2,233 additions & 0 deletions
2,233
technical_validation/gender_classification/annotations/LABELS/vowel-o.csv
Large diffs are not rendered by default.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
technical_validation/gender_classification/conf/classification.conf
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,13 @@ | ||
[default] | ||
#feature_type=mfcc | ||
classifier = RandomForest | ||
#can be LogisticRegression, RandomForest | ||
|
||
[RandomForest] | ||
n_estimators=50 | ||
criterion=gini | ||
|
||
[LogisticRegression] | ||
C=1.0 | ||
max_iter=100 | ||
class_weight=balanced |
29 changes: 29 additions & 0 deletions
29
technical_validation/gender_classification/conf/feature.conf
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,29 @@ | ||
[default] | ||
#feature_type=mfcc | ||
feature_type=logMelSpec | ||
sampling_rate = 44100 | ||
# parameters below are in samples | ||
window_size = 1024 | ||
window_shift = 441 | ||
|
||
[sad] | ||
threshold = 0.0001 | ||
# parameters below are in milli-seconds | ||
start_end_sil_length = 20 | ||
silence_margin = 50 | ||
|
||
[mfcc] | ||
n_mfcc = 39 | ||
n_mels = 64 | ||
fmax = 22050 | ||
add_deltas = True | ||
add_delta_deltas = True | ||
|
||
[logMelSpec] | ||
n_mfcc = 40 | ||
n_mels = 64 | ||
f_max = 22050 | ||
#window_size = 25 | ||
#hop_length = 10 | ||
compute_deltas = True | ||
compute_delta_deltas = True |
12 changes: 12 additions & 0 deletions
12
technical_validation/gender_classification/conf/train_lr.conf
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,12 @@ | ||
[default] | ||
#model = linearSVM, LogisticRegression, rbfSVM | ||
model = linearSVM | ||
seed = 42 | ||
|
||
[LogisticRegression] | ||
C = 0.01 | ||
max_iter = 40 | ||
solver = liblinear | ||
penalty = l2 | ||
class_weight = balanced | ||
verbose = True |
13 changes: 13 additions & 0 deletions
13
technical_validation/gender_classification/conf/train_mlp.conf
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,13 @@ | ||
[default] | ||
model = MLP | ||
seed = 42 | ||
|
||
[MLP] | ||
learning_rate_init = 0.001 | ||
alpha = 0.001 | ||
solver = adam | ||
hidden_layer_sizes = 20 | ||
max_iter = 500 | ||
activation = tanh | ||
verbose = True | ||
class_weight = balanced |
11 changes: 11 additions & 0 deletions
11
technical_validation/gender_classification/conf/train_rbfSVM.conf
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,11 @@ | ||
[default] | ||
#model = linearSVM, LogisticRegression, rbfSVM | ||
model = rbfSVM | ||
seed = 42 | ||
|
||
[rbfSVM] | ||
C = 100 | ||
kernel=rbf | ||
class_weight=balanced | ||
probability=True | ||
verbose = True |
Oops, something went wrong.