-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.yaml
More file actions
62 lines (58 loc) · 1.5 KB
/
Copy pathconfig.yaml
File metadata and controls
62 lines (58 loc) · 1.5 KB
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
# General settings
general:
seed: 2025
classification: False
train: True
dataset: "mitsui"
data_path: "./data/mitsui/"
save_path: null
# Data hyperparameters
data:
normalize: True
sequence_length: 512
data_dim: 981
# Model hyperparameters
model:
root_width_size: 8
root_depth: 1
root_activation: "sin"
root_final_activation: null
root_output_dim: 424 ## If set, then careful with the NLL loss, and its splitting into means and stds.
# positional_encoding: [6, 10] # Dimension of positional encoding, then denominator constant.
positional_encoding: null
init_state_layers: 2
input_prev_data: True
conv_embedding: [256, 1024, 1] ## Convolutional embedding output size, then kernel size, and whether causal or not
# conv_embedding: null
model_type: "wsm"
nb_rnn_layers: 1
weights_lim: null
time_as_channel: False
forcing_prob: 0.5
noise_theta_init: null
std_lower_bound: 1.0e-4
# Optimizer hyperparameters
optimizer:
init_lr: 1.0e-5
gradients_lim: 1.0e-7
on_plateau:
factor: 0.5
min_scale: 1.0e-2
patience: 20
cooldown: 0
rtol: 1.0e-4
accum_size: 50
# Training/Inference configurations
training:
nb_epochs: 5000
batch_size: 16
autoregressive: False
print_every: 10
save_every: 10
valid_every: 10
stochastic: False
val_criterion: "mae"
nb_recons_loss_steps: null
use_nll_loss: False
inference_start: null ## Should be None if non-autoregressive training. (1827 for mitsui)
smooth_inference: True