[21363a]: / lvl1 / models / FBLC_256pts.yml

Download this file

38 lines (35 with data), 915 Bytes

 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
# Import python package
imports:
preprocessing.filterBank:
- FilterBank
preprocessing.aux:
- SubSample
- DelayPreds
sklearn.linear_model:
- LogisticRegression
sklearn.preprocessing:
- StandardScaler
- Normalizer
sklearn.lda:
- LDA
# Meta variables
Meta:
file: 'FBLC_256pts_alex2'
cores: 6
subsample: 10
subsample_test: 1
cachePreprocessed: False
addPreprocessed:
- 'CovsAlex_35Hz_500pts'
# preprocessing functions receive arguments: X, y(only for train)
Preprocessing:
- FilterBank:
filters: "'LowpassBank'"
- SubSample:
subsample: subsample
Models:
- '("l1",Normalizer(norm="l1")),("lr",LogisticRegression())'
- '("l2",Normalizer(norm="l2")),("lr",LogisticRegression())'
- '("sc",StandardScaler()),("lr",LogisticRegression())'
- '("lda",LDA())'
- '("l1",Normalizer(norm="l1")),("lda",LDA())'