-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_params_tune.yaml
56 lines (50 loc) · 1.21 KB
/
model_params_tune.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
data_params:
need_normalize: True
mat_file: 'DC_motor_simulation/res.mat'
leave_nth: 13 #KD: choosing simple value to avoid systematic error
integration_step: 0.01
test_size: 0.3
use_part_of_data: 1.0
network_params:
#input_size: 128
input_size: 64
retrospective_steps: 128
# If `per_element` is True, then LSTM reads in one timestep at a time.
per_element: True
# size of hidden layers
hidden_size: 16
output_dim: 3
num_layers: 1
dtype: torch.float
train_params:
param_decay: 10
optimizer:
loss_fn: mse
reduction: sum
optimizer: adam
weight_decay: 0
learning_rate: 0.001
lr_scheduler:
early_stop_order: -7
threshold: 0.01
lr_drop: 0.3
patience: 2
cooldown: 3
auto_loss: True
num_epochs: 150
batch_size: 1024
core_loss:
part_of_max_for_const: 0.2
scaling_order: 5
aux_loss:
part_of_max_for_const: 0.5
scaling_order: 5
steady_state_threshold: 0.001
exp_path: "only_batches"
is_debug: False
to_generate_data: False
generator_params:
a: 0.5
b: 1.0
f_X: "math.sin"
f_Y: "math.cos"