-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnaim.yaml
64 lines (39 loc) · 836 Bytes
/
naim.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
name: naim
framework: torch
model_type: tabular
is_SOTA: False
model_tasks:
- classification
label_types:
- binary
- categorical
set_params_function:
_target_: CMC_utils.models.set_naim_params
init_params:
_target_: CMC_utils.models.NAIM
_convert_: all
input_size:
output_size:
cat_idxs:
cat_dims:
d_token: 6
embedder_initialization: normal
bias: False # True
mask_type: 2
missing_value: ~inf
num_heads: 3
feedforward_dim: 1000
dropout_rate: 0.0
activation: relu
num_layers: 6
extractor: False
fit_params: {}
train_function:
_target_: CMC_utils.models.train_torch_model
test_function:
_target_: CMC_utils.models.test_torch_model
save_function:
_target_: CMC_utils.save_load.save_model
file_extension: pth
load_function:
_target_: CMC_utils.save_load.load_model