-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_c.py
54 lines (23 loc) · 1.08 KB
/
config_c.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import cPickle as pickle
# Portion a is to access the vectors generated in preprocessing to train a silence/noise classifier
# The VanDam daylong recordings contain near and far annotations.
# I use _1 modifier to signify near only,
# _2 modifier to signify near+far both.
# These scores are calculated during the hyperparametrization
scores = ['f1','precision','recall']
# Define the classifier here. Example Random Forest is used.
# This will be initialized when this config module is imported
# remember to import the classifier in wrap-c also
from sklearn.ensemble import RandomForestClassifier
rfc = RandomForestClassifier()
pickle.dump(rfc,open('models/a_classifier_template.p','w'))
# Use corresponding parameter search space
param_grid = {'n_estimators': [1,10], 'max_features': ['auto', 'sqrt']}
FEATUREPATH = '../data/features/st/VanDam/'
FOLDS_PATH = '../data/folds/VanDam/portion*'
FEAT_DIM = 34
# The labelType is to differentiate between the silence/noise and classification data
labelType = 'sil'
## Extra
WAV_PATH = '../data/VanDam/'
DATA_PATH = '../data/'