[22f4a9]: / code / configs / wavelet_configs.py

Download this file

18 lines (15 with data), 482 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
conf_wavelet_standard_lr = {'modelname':'Wavelet+LR', 'modeltype':'WAVELET',
'parameters':dict(
regularizer_C=.001,
classifier='LR'
)}
conf_wavelet_standard_rf = {'modelname':'Wavelet+RF', 'modeltype':'WAVELET',
'parameters':dict(
regularizer_C=.001,
classifier='RF'
)}
conf_wavelet_standard_nn = {'modelname':'Wavelet+NN', 'modeltype':'WAVELET',
'parameters':dict(
regularizer_C=.001,
classifier='NN'
)}