-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_config.yaml
81 lines (64 loc) · 1.69 KB
/
model_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
78
79
80
model_config:
lags: 256 ## this is for maximum lags, above which overflow will occur
embedding_dim: 768
n_blocks: 15
pool_size: 16
number_of_heads: 8
number_ts: 264
#number_of_clusters: None
## As long as really want to experiment, do not touch any part of below ##
## Upsampling_Details ##
#conv_activation: F.gelu
#conv_FFN_activation: F.gelu
conv_dropout_FFN: 0.5
conv_dropout_linear: 0.5
conv_FFN_bias: True
conv_FFN_expansion_size: 2
conv_bias: True
# Attention_Block_Details #
attention_head_dropout: 0.5
attention_projection_dropout: 0.5
attention_FFN_dropout: 0.5
#attention_FFN_activation: F.gelu
attention_FFN_bias: True
attention_FFN_expansion_size: 4
project_name:
project_name: "One_For_All_Cluster_Training"
group_name: "EMA_positional_embedding_2"
trainer_config:
save_every: 1
max_epochs: 2
snapshot_name: "small_model_12_heads"
snapshot_dir: "model"
compile_model: False
optimizer_config:
lr: 0.0001
weight_decay: 0.1
#momentum: 0.9
scheduler_config:
T_0: 5
eta_min: 0.0000088
data:
train_path:
file: "data/array_train.dat"
length_file: "data/lengthsarray_train.dat"
file_names: "data/names_array_train.txt"
lags: 128 # 128 -> 1 prediction, we will do
val_path:
file: "data/array_test.dat"
length_file: "data/lengthsarray_test.dat"
file_names: "data/names_array_test.txt"
lags: 128 # 128 -> 1 prediction, we will do
train_data_details:
batch_size: 64
num_workers: 12
# shuffle: True
pin_memory: True
persistent_workers: True
prefetch_factor: 2
val_data_details:
batch_size: 128
num_workers: 4
# shuffle: False
pin_memory: True
drop_last: True