heycao commited on
Commit
12e95e1
·
verified ·
1 Parent(s): b4667cd

Upload config.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.yaml +127 -0
config.yaml ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ENTITY_ID_FIELD: entity_id
2
+ HEAD_ENTITY_ID_FIELD: head_id
3
+ ITEM_ID_FIELD: item_id
4
+ ITEM_LIST_LENGTH_FIELD: item_length
5
+ LABEL_FIELD: label
6
+ LIST_SUFFIX: _list
7
+ MAX_ITEM_LIST_LENGTH: 50
8
+ MODEL_INPUT_TYPE: InputType.POINTWISE
9
+ MODEL_TYPE: ModelType.SEQUENTIAL
10
+ NEG_PREFIX: neg_
11
+ POSITION_FIELD: position_id
12
+ RATING_FIELD: rating
13
+ RELATION_ID_FIELD: relation_id
14
+ TAIL_ENTITY_ID_FIELD: tail_id
15
+ TIME_FIELD: timestamp
16
+ USER_ID_FIELD: user_id
17
+ additional_feat_suffix: null
18
+ alias_of_entity_id: null
19
+ alias_of_item_id: null
20
+ alias_of_relation_id: null
21
+ alias_of_user_id: null
22
+ attn_dropout_prob: 0.5
23
+ benchmark_filename: null
24
+ checkpoint_dir: saved
25
+ clip_grad_norm: null
26
+ dataloaders_save_path: null
27
+ dataset: amazon-books
28
+ dataset_save_path: null
29
+ discretization: null
30
+ embedding_size: 64
31
+ enable_amp: false
32
+ enable_scaler: false
33
+ entity_kg_num_interval: '[0,inf)'
34
+ epochs: 500
35
+ eval_args:
36
+ group_by: user
37
+ mode:
38
+ test: full
39
+ valid: full
40
+ order: TO
41
+ split:
42
+ LS: valid_and_test
43
+ eval_batch_size: 4096
44
+ eval_step: 1
45
+ eval_type: EvaluatorType.RANKING
46
+ field_separator: "\t"
47
+ filter_inter_by_user_or_item: true
48
+ gpu_id: '0'
49
+ hidden_act: gelu
50
+ hidden_dropout_prob: 0.5
51
+ hidden_size: 64
52
+ initializer_range: 0.02
53
+ inner_size: 256
54
+ item_inter_num_interval: '[5,inf)'
55
+ kg_reverse_r: false
56
+ layer_norm_eps: 1.0e-12
57
+ learner: adam
58
+ learning_rate: 0.0003
59
+ load_col:
60
+ inter:
61
+ - user_id
62
+ - item_id
63
+ - rating
64
+ - timestamp
65
+ local_rank: 0
66
+ log_wandb: false
67
+ loss_decimal_place: 4
68
+ loss_type: CE
69
+ metric_decimal_place: 4
70
+ metrics:
71
+ - Recall
72
+ - MRR
73
+ - NDCG
74
+ - Hit
75
+ - Precision
76
+ model: SASRec
77
+ n_heads: 2
78
+ n_layers: 2
79
+ normalize_all: null
80
+ normalize_field: null
81
+ numerical_features: []
82
+ preload_weight: null
83
+ relation_kg_num_interval: '[0,inf)'
84
+ repeatable: true
85
+ reproducibility: true
86
+ require_pow: false
87
+ rm_dup_inter: null
88
+ save_dataloaders: true
89
+ save_dataset: true
90
+ seed: 2020
91
+ seq_len: null
92
+ seq_separator: ' '
93
+ show_progress: true
94
+ shuffle: true
95
+ single_spec: true
96
+ state: INFO
97
+ stopping_step: 10
98
+ test_neg_sample_args:
99
+ distribution: uniform
100
+ sample_num: none
101
+ threshold: null
102
+ topk:
103
+ - 10
104
+ train_batch_size: 4096
105
+ train_neg_sample_args:
106
+ alpha: none
107
+ candidate_num: 0
108
+ distribution: none
109
+ dynamic: false
110
+ sample_num: none
111
+ transform: null
112
+ unload_col: null
113
+ unused_col:
114
+ inter:
115
+ - rating
116
+ use_gpu: true
117
+ user_inter_num_interval: '[5,inf)'
118
+ val_interval:
119
+ rating: '[3,inf)'
120
+ valid_metric: NDCG@10
121
+ valid_metric_bigger: true
122
+ valid_neg_sample_args:
123
+ distribution: uniform
124
+ sample_num: none
125
+ wandb_project: recbole
126
+ weight_decay: 0.0
127
+ worker: 0