heycao commited on
Commit
c629525
·
verified ·
1 Parent(s): fff7a51

Upload config.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.yaml +128 -0
config.yaml ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: ml-100k
28
+ dataset_save_path: null
29
+ discretization: null
30
+ enable_amp: false
31
+ enable_scaler: false
32
+ entity_kg_num_interval: null
33
+ epochs: 500
34
+ eval_args:
35
+ group_by: user
36
+ mode:
37
+ test: full
38
+ valid: full
39
+ order: TO
40
+ split:
41
+ LS: valid_and_test
42
+ eval_batch_size: 40960
43
+ eval_step: 1
44
+ eval_type: EvaluatorType.RANKING
45
+ field_separator: "\t"
46
+ filter_inter_by_user_or_item: true
47
+ gpu_id: '0'
48
+ hidden_act: gelu
49
+ hidden_dropout_prob: 0.5
50
+ hidden_size: 64
51
+ initializer_range: 0.02
52
+ inner_size: 256
53
+ item_inter_num_interval: '[10,inf)'
54
+ kg_reverse_r: false
55
+ layer_norm_eps: 1.0e-12
56
+ learner: adam
57
+ learning_rate: 0.001
58
+ load_col:
59
+ inter:
60
+ - user_id
61
+ - item_id
62
+ - rating
63
+ - timestamp
64
+ local_rank: 0
65
+ log_wandb: false
66
+ loss_decimal_place: 4
67
+ loss_type: CE
68
+ metric_decimal_place: 4
69
+ metrics:
70
+ - NDCG
71
+ - Hit
72
+ - AveragePopularity
73
+ - GiniIndex
74
+ - ItemCoverage
75
+ - ShannonEntropy
76
+ - TailPercentage
77
+ model: SASRec
78
+ n_heads: 2
79
+ n_layers: 2
80
+ normalize_all: true
81
+ normalize_field: null
82
+ numerical_features: []
83
+ preload_weight: null
84
+ relation_kg_num_interval: null
85
+ repeatable: true
86
+ reproducibility: true
87
+ require_pow: false
88
+ rm_dup_inter: null
89
+ save_dataloaders: true
90
+ save_dataset: true
91
+ seed: 2020
92
+ seq_len: null
93
+ seq_separator: ' '
94
+ show_progress: false
95
+ shuffle: true
96
+ single_spec: true
97
+ state: INFO
98
+ stopping_step: 10
99
+ test_neg_sample_args:
100
+ distribution: uniform
101
+ sample_num: none
102
+ threshold: null
103
+ topk:
104
+ - 10
105
+ train_batch_size: 4096
106
+ train_neg_sample_args:
107
+ alpha: none
108
+ candidate_num: 0
109
+ distribution: none
110
+ dynamic: false
111
+ sample_num: none
112
+ transform: null
113
+ unload_col: null
114
+ unused_col:
115
+ inter:
116
+ - rating
117
+ use_gpu: true
118
+ user_inter_num_interval: '[10,inf)'
119
+ val_interval:
120
+ rating: '[3,inf)'
121
+ valid_metric: NDCG@10
122
+ valid_metric_bigger: true
123
+ valid_neg_sample_args:
124
+ distribution: uniform
125
+ sample_num: none
126
+ wandb_project: recbole
127
+ weight_decay: 0.0
128
+ worker: 0