-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-config.yaml
77 lines (73 loc) · 1.55 KB
/
example-config.yaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
timeseries:
- name: example-ecg-signal
length: 10000
anomalies:
- position: middle
length: 200
kinds:
- kind: frequency
frequency_factor: 2.0
base-oscillations:
- amplitude: 15
ecg-sim-method: ecgsyn
frequency: 1
kind: ecg
offset: -2
variance: 0.01
mutations:
- &ecg-mutations
n_mutations: 10
mutations:
- name: base-oscillations.0.frequency
paths:
- base-oscillations.0.frequency
dtype: float
min: 0.4
max: 0.8
- name: base-oscillations.0.variance
paths:
- base-oscillations.0.variance
dtype: float
min: 0.001
max: 0.1
- name: anomalies.0.length
paths:
- anomalies.0.length
dtype: int
min: 100
max: 500
studies:
- name: simple-study-using-LOF
study_override: true
algorithm: sub_lof
n_trials:
train: 100
validation: 20
test_model: 20
test_full_optimization: 100
# start_from_snapshot:
# study_name: simple-study-using-LOF
# train: false
# best_thresholds: false
# fixed_parameters: false
# test: false
timeseries:
- name: example-ecg-signal
<<: *ecg-mutations
parameters:
- name: window_size
dtype: int
min: 50
max: 250
- name: n_neighbors
dtype: int
min: 2
max: 100
- name: leaf_size
dtype: int
min: 10
max: 80
- name: random_state
dtype: int
min: 0
max: 42