-
Notifications
You must be signed in to change notification settings - Fork 147
/
config.ini
1561 lines (1404 loc) · 23.1 KB
/
config.ini
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[MHGCN]
lr = 0.0001
weight_decay = 0.0005
model_lr = 0.05
hidden_dim = 384
emb_dim = 200
num_layers = 2
max_epoch = 500
[BPHGNN]
seed = 42
lr=0.2
epochs=100
weight_decay=0.000005
hidden_dim=384
out=200
dropout=0
feature="mul"
normalization='AugNormAdj'
degree=2
per=-1
experiment="base-experiment"
[MetaHIN]
input_dir=/openhgnn/dataset/Common_Dataset/
output_dir=/openhgnn/dataset/Common_Dataset/
dataset=dbook
use_cuda= True
file_num= 10
num_location= 453
num_fea_item= 2
num_publisher =1698
num_fea_user= 1
item_fea_len= 1
embedding_dim= 32
user_embedding_dim= 32
item_embedding_dim= 32
first_fc_hidden_dim= 64
second_fc_hidden_dim= 64
mp_update= 1
local_update= 1
lr= 5e-4
mp_lr= 5e-3
local_lr= 5e-3
batch_size= 32
num_epoch= 50
seed=13
[FedHGNN]
fea_dim = 64
in_dim = 64
hidden_dim = 64
out_dim = 64
shared_num = 20
path = Data/
num_heads = [2]
eps = 1
num_sample = 0
valid_step = 5
nonlinearity = relu
is_gcn = False
is_attention = False
hetero = True
is_trans = False
is_random_init = True
is_graph = True
local_train_num = 1
agg_mode = add
agg_func = ATTENTION
lr = 0.01
dropout = 0
weight_decay = 0
epochs = 10000
batch_size = 32
l2_reg = True
grad_limit = 1.0
clients_limit = 0.1
items_limit = 60
type = ATTENTION
p1 = 1
p2 = 1
seed = 20211111
hidden_size=8
out_size=64
[HGA]
lr = 0.05
weight_decay = 0.001
dropout = 0.6
hidden_dim = 64
patience = 100
mini_batch_flag = true
batch_size = 256
max_epoch = 10
num_layers = 3
num_heads = 8
seed = 0
out_dim = 4
gamma=1.0
[HGMAE]
dataset = acm
in_dim = 1902
hidden_dim = 1024
category = paper
feat_drop = 0.2
attn_drop = 0.5
residual = False
negative_slope = 0.2
num_classes = 3
num_heads = 4
num_layers = 2
num_out_heads = 1
mp_edge_recon_loss_weight = 1.0
mp_edge_mask_rate = 0.7
mp_edge_gamma = 3.0
node_mask_rate = 0.5, 0.005, 0.8
attr_restore_loss_weight = 1.0
attr_restore_gamma = 1.0
attr_replace_rate = 0.2
attr_unchanged_rate = 0.3
mp2vec_negative_size = 3
mp2vec_window_size = 3
mp2vec_batch_size = 256
mp2vec_rw_length = 10
mp2vec_walks_per_node = 3
mp2vec_train_epoch = 20
mp2vec_train_lr = 0.001
mp2vec_feat_dim = 64
mp2vec_feat_pred_loss_weight = 0.1
mp2vec_feat_gamma = 2.0
mp2vec_feat_drop = 0.2
patience = 10
gpu = 0
mae_epochs = 10000
mae_lr = 0.0008
l2_coef = 0
eva_lr = 0.01
eva_wd = 0.0005
scheduler_gamma = 0.999
[HGPrompt]
feats-type = 2
hidden-dim = 64
num-heads = 8
epoch = 300
patience = 30
repeat = 1
model-type = gcn
num-layers = 2
lr = 1e-3
run = 1
device = 1
dropout = 0.5
weight-decay = 1e-6
slope = 0.05
_dataset = ACM
seed = 0
tuple_neg_disconnected_num = 1
tuple_neg_unrelated_num = 1
target_tuple_neg_disconnected_num = 1
subgraph_hop_num = 1
subgraph_neighbor_num_bar = 10
temperature = 1.0
loss_weight = 1.0
hetero_pretrain = 0
target_pretrain = 0
hetero_subgraph = 0
semantic_weight = 0
each_loss = 0
freebase_type = 2
edge_feats = 64
; downstream
feats_type_down = 2
hidden_dim_down = 64
bottle_net_hidden_dim_down = 2
bottle_net_output_dim_down = 64
edge_feats_down = 64
num_heads_down = 8
epoch_down = 300
patience_down = 30
repeat_down = 1
model_type_down = gcn
num_layers_down = 2
lr_down = 1.0
run_down = 1
device_down = 1
dropout_down = 0.5
weight_decay_down = 1e-6
slope_down = 0.05
dataset_down = ACM
seed_down = 0
tasknum_down = 100
shotnum_down = 1
load_pretrain_down = 1
tuning_down = weight-sum-center-fixed
subgraph_hop_num_down = 1
pre_loss_weight_down = 1.0
hetero_pretrain_down = 0
hetero_pretrain_subgraph_down = 0
pretrain_semantic_down = 0
add_edge_info2prompt_down = 1
each_type_subgraph_down = 1
pretrain_each_loss_down = 0
cat_prompt_dim_down = 64
cat_hprompt_dim_down = 64
tuple_neg_disconnected_num_down = 1
tuple_neg_unrelated_num_down = 1
meta_path_down = 0
semantic_prompt_down = 1
freebase_type_down = 0
semantic_prompt_weight_down = 0.1
shgn_hidden_dim_down = 3
;##########################################
[DisenKGAT]
# str
name = Disen_Model
# data = DisenKGAT_WN18RR
# model = DisenKGAT
score_func = interacte
opn = cross
# gpu = 2
logdir = ./log/
config = ./config/
strategy = one_to_n
form = plain
mi_method = club_b
att_mode = dot_weight
score_method = dot_rel
score_order = after
gamma_method = norm
# int
k_w = 10
batch = 2048
test_batch = 2048
epoch = 1500
num_workers = 10
seed = 41504
init_dim = 100
gcn_dim = 200
embed_dim = 200
gcn_layer = 1
k_h = 20
num_filt = 200
ker_sz = 7
num_bases = -1
neg_num = 1000
ik_w = 10
ik_h = 20
inum_filt = 200
iker_sz = 9
iperm = 1
head_num = 1
num_factors = 3
early_stop = 200
mi_epoch = 1
# float
feat_drop = 0.3
hid_drop2 = 0.3
hid_drop = 0.3
gcn_drop = 0.4
gamma = 9.0
l2 = 0.0
lr = 0.001
lbl_smooth = 0.1
iinp_drop = 0.3
ifeat_drop = 0.4
ihid_drop = 0.3
alpha = 1e-1
max_gamma = 5.0
init_gamma = 9.0
# boolean
restore = False
bias = False
no_act = False
mi_train = True
no_enc = False
mi_drop = True
fix_gamma = False
[NBF]
input_dim = 32
hidden_dims = [32, 32, 32, 32, 32, 32]
message_func = distmult
aggregate_func = pna
short_cut = True
layer_norm = True
dependent = False
num_negative = 32
strict_negative = True
adversarial_temperature = 1
metric = ['mr', 'mrr', 'hits@1', 'hits@3', 'hits@10', 'hits@10_50']
lr = 0.005
gpus = [0]
batch_size = 64
num_epoch = 20
log_interval = 100
[General]
learning_rate = 0.01
weight_decay = 0.0001
dropout = 0.2
seed = 0
hidden_dim = 64
max_epoch = 50
patience = 200
mini_batch_flag = False
[SHGP]
save_emb = store_true
dataset = mag
target_type = p
train_percent = 0.08
seed = 0
hidden_dim = [256,512]
epochs = 100
lr = 0.0005
l2_coef = 5e-4
type_fusion = att
type_att_size = 64
warm_epochs = 10
compress_ratio = 0.01
cuda = -1
[NSHE]
learning_rate = 0.001
weight_decay = 0.00001
beta = 0.05
seed = 0
norm_emd_flag = True
dropout = 0.5
project_dim = 128
context_dim = 64
hidden_dim = 128
emd_dim = 128
num_e_neg = 1
num_ns_neg = 4
num_heads = 8
max_epoch = 500
patience = 10
optimizer = adam
mini_batch_flag = False
[GTN]
learning_rate = 0.005
weight_decay = 0.001
hidden_dim = 128
out_dim = 16
num_channels = 2
num_layers = 2
seed = 0
max_epoch = 50
patience = 10
identity = True
norm_emd_flag = True
adaptive_lr_flag = True
mini_batch_flag = False
[MHNF]
learning_rate = 0.05
weight_decay = 0.001
;Hidden layer dimension
hidden_dim = 64
;Number of classification type.
out_dim = 16
;Number of conv channels
num_channels = 2
;Length of hybrid metapath
num_layers = 2
seed = 0
max_epoch = 50
patience = 10
;If True, the identity matrix will be added to relation matrix set
identity = False
;If True, the adjacency matrix will be normalized.
norm_emd_flag = True
;If True, the learning rate can be adaptived
adaptive_lr_flag = True
mini_batch_flag = False
[RSHN]
learning_rate = 0.005
weight_decay = 0.001
dropout = 0.2
seed = 1233
;Hidden layer dimension
hidden_dim = 16
max_epoch = 500
rw_len = 4
batch_size = 1000
;Number of Nodes Layers applied
num_node_layer = 2
;Number of Edges Layers applied
num_edge_layer = 2
patience = 50
validation = True
mini_batch_flag = False
[RHGNN]
learning_rate = 0.001
num_heads = 8
hidden_dim = 64
relation_hidden_units = 8
drop_out = 0.5
num_layers = 2
residual = True
batch_size = 80
node_neighbors_min_num = 10
optimizer = adam
weight_decay = 0.0
max_epoch = 100
patience = 50
mini_batch_flag = True
negative_slope = 0.2
norm = True
dropout = 0.2
n_heads = 4
category = movie
out_dim = 3
use_uva = False
fanout = -1
[RGCN]
learning_rate = 0.01
weight_decay = 0.0001
dropout = 0.2
seed = 0
in_dim = 64
hidden_dim = 64
# number of weight matrix bases
n_bases = 40
num_layers = 3
max_epoch = 50
patience = 50
batch_size = 128
fanout = 4
validation = True
use_self_loop = False
mini_batch_flag = True
use_uva = True
[CompGCN]
learning_rate = 0.01
weight_decay = 0.0001
dropout = 0.2
seed = 0
num_layers = 2
in_dim = 32
hidden_dim = 32
out_dim = 32
;We restrict the number of hidden units to 32. from paper
max_epoch = 500
patience = 100
;sub(subtraction) mult(multiplication) ccorr(circular-correlation)
comp_fn = sub
validation = True
mini_batch_flag = True
batch_size = 128
fanout = 4
[HetGNN]
seed = 0
learning_rate = 0.001
weight_decay = 0.00001
dim = 128
max_epoch = 500
batch_size = 64
window_size = 5
num_workers = 4
batches_per_epoch = 50
rw_length = 50
rw_walks = 10
rwr_prob = 0.5
patience = 20
mini_batch_flag = True
[Metapath2vec]
learning_rate = 0.01
# embedding dimension
dim = 128
max_epoch = 1
batch_size = 512
# context window size on a walk trace
window_size = 5
num_workers = 4
# walk length of one random walk
rw_length = 20
# number of random walks per node
rw_walks = 10
# number of negative nodes per positive sample
neg_size = 5
seed = 0
# key of meta path defined in dataset
meta_path_key = APVPA
[HERec]
learning_rate = 0.01
# embedding dimension
dim = 128
max_epoch = 1
batch_size = 128
# context window size on a walk trace
window_size = 2
num_workers = 4
rw_length = 100
# number of random walks per node
rw_walks = 10
# number of negative nodes per positive sample
neg_size = 5
seed = 0
# key of meta path defined in dataset
meta_path_key = APVPA
[HAN]
seed = 0
learning_rate = 0.005
weight_decay = 0.001
dropout = 0.6
hidden_dim = 128
out_dim = 16
; number of attention heads
num_heads = 8
max_epoch = 200
patience = 100
mini_batch_flag = True
[RoHe]
seed = 0
learning_rate = 0.005
weight_decay = 0.001
dropout = 0.6
hidden_dim = 128
out_dim = 16
; number of attention heads
num_heads = 8
max_epoch = 200
patience = 100
mini_batch_flag = False
[NARS]
seed = 0
learning_rate = 0.003
weight_decay = 0.001
dropout = 0.7
hidden_dim = 64
out_dim = 16
num_heads = 8
num_hops = 2
max_epoch = 200
mini_batch_flag = False
R = 2
patience = 100
input_dropout = True
cpu_preprocess = True
ff_layer = 2
[MAGNN]
seed = 0
learning_rate = 0.005
weight_decay = 0.001
dropout = 0.3
hidden_dim = 64
out_dim = 3
inter_attn_feats = 128
;The number of attention heads
num_heads = 8
;The number of layers
num_layers = 4
;Maximum number of epoches
max_epoch = 10
patience = 30
;the type of encoder, e.g ['RotateE', 'Average', 'Linear']
encoder_type = RotateE
mini_batch_flag = False
batch_size = 8
num_samples = 5
[HGNN_AC]
feats_drop_rate = 0.2
attn_vec_dim = 32
feats_opt = 110
loss_lambda = 0.2
src_node_type = 2
dropout = 0.1
num_heads = 8
HIN = MAGNN
[HGT]
seed = 0
learning_rate = 0.001
weight_decay = 0.0001
dropout = 0.4
batch_size = 5120
patience = 40
hidden_dim = 64
out_dim = 16
num_layers = 2
num_heads = 8
num_workers = 64
max_epoch = 500
mini_batch_flag = True
fanout = 5
norm = True
use_uva = True
[HeCo]
seed = 2
hidden_dim = 64
max_epoch = 10000
eva_lr = 0.05
eva_wd = 0
patience = 5
learning_rate = 0.0008
weight_decay = 0
tau = 0.8
feat_drop = 0.3
attn_drop = 0.5
sample_rate = author-7_subject-1
lam = 0.5
mini_batch_flag = False
[DMGI]
seed = 0
learning_rate = 0.0005
weight_decay = 0.0001
sc = 3
dropout = 0.5
reg_coef = 0.001
sup_coef = 0.1
patience = 20
hidden_dim = 64
num_heads = 1
max_epoch = 10000
isSemi = False
isBias = False
isAttn = False
[SLiCE]
data_name = amazon
num_walks_per_node = 1
beam_width = 4
max_length = 6
walk_type = dfs
batch_size = 128
outdir = ./openhgnn/output/SLiCE/amazon/
pretrained_embeddings = ./openhgnn/output/SLiCE/amazon/amazon.embed
n_pred = 1
max_pred = 1
lr = 0.0001
n_epochs = 300
get_bert_encoder_embeddings = false
checkpoint = 20
path_option = shortest
ft_batch_size = 100
d_model = 200
ft_d_ff = 512
ft_layer = ffn
ft_drop_rate = 0.1
ft_input_option = last4_cat
ft_lr = 0.00005
ft_n_epochs = 200
num_layers = 6
ft_checkpoint = 1000
[HPN]
seed = 0
learning_rate = 0.005
weight_decay = 0.001
dropout = 0.6
k_layer = 2
alpha = 0.1
edge_drop = 0
hidden_dim = 64
out_dim = 16
max_epoch = 200
patience = 100
mini_batch_flag = False
[KGCN]
seed = 0
weight_decay = 1e-4
lr = 0.002
in_dim = 16
out_dim = 16
batch_size = 128
n_neighbor = 8
aggregate = SUM
n_relation = 60
n_user = 1872
# epoch_iter = 100
max_epoch = 100
mini_batch_flag = True
[HeGAN]
seed = 0
lr_gen = 0.001
lr_dis = 0.001
wd_gen = 1e-5
wd_dis = 1e-5
sigma = 1.0
n_sample = 16
max_epoch = 100
emb_size = 64
epoch_dis = 10
epoch_gen = 5
mini_batch_flag = False
validation = True
patience = 10
label_smooth = 0.05
[general_HGNN]
gnn_type = gcnconv
dropout = 0.5
has_bn = true
activation = tanh
has_l2norm = true
hidden_dim = 64
max_epoch = 400
lr = 0.01
optimizer = Adam
weight_decay = 0.0001
patience = 40
layers_gnn = 4
layers_post_mp = 1
layers_pre_mp = 1
stage_type = stack
macro_func = attention
num_heads = 8
feat = 0
subgraph_extraction = metapath
mini_batch_flag = false
[homo_GNN]
gnn_type = gcnconv
dropout = 0.5
has_bn = true
activation = tanh
has_l2norm = true
hidden_dim = 64
max_epoch = 400
lr = 0.01
optimizer = Adam
weight_decay = 0.0001
patience = 40
layers_gnn = 4
layers_post_mp = 1
layers_pre_mp = 1
stage_type = stack
num_heads = 8
feat = 0
subgraph = metapath
mini_batch_flag = false
[HDE]
emb_dim = 128
num_neighbor = 5
use_bias = true
k_hop = 2
max_epoch = 400
batch_size = 32
max_dist = 3
lr = 0.001
[SimpleHGN]
hidden_dim = 256
num_layers = 3
num_heads = 8
feats_drop_rate = 0.2
slope = 0.05
edge_dim = 64
seed = 0
max_epoch = 500
patience = 100
lr = 0.001
weight_decay = 5e-4
beta = 0.05
residual = True
mini_batch_flag = True
fanout = 5
batch_size = 2048
use_uva = True
[GATNE-T]
learning_rate = 0.01
patience = 2
max_epoch = 5
batch_size = 256
num_workers = 4
dim = 200
edge_dim = 10
att_dim = 20
rw_length = 10
rw_walks = 20
window_size = 5
neg_size = 5
neighbor_samples = 10
score_fn = dot-product
[HetSANN]
lr = 0.0001
weight_decay = 0.0005
dropout = 0.2
seed = 0
hidden_dim = 64
num_layers = 2
num_heads = 16
max_epoch = 10000
patience = 100
slope = 0.2
residual = True
mini_batch_flag = True
batch_size = 2048
fanout = 5
use_uva = True
[ieHGCN]
num_layers = 5
hidden_dim = 64
attn_dim = 32
out_dim = 16
patience = 100
seed = 0
lr = 0.001
weight_decay = 5e-4
max_epoch = 3500
mini_batch_flag = True
fanout = 10
batch_size = 512
dropout = 0.2
bias = True
batchnorm = True
[HGAT]
num_layers = 3
hidden_dim = 64
attn_dim = 32
num_classes = 16
negative_slope = 0.2
patience = 100
seed = 0
lr = 0.01
weight_decay = 5e-4
max_epoch = 350
[HGSL]
# acm4GTN & dblp4GTN
undirected_relations = author-paper,paper-subject
# yelp4HGSL
; undirected_relations = b-l,b-s,b-u
gnn_dropout = 0
fs_eps = 0.8
fp_eps = 0.2
mp_eps = 0.6
hidden_dim = 128
num_heads = 3
gnn_emd_dim = 128
lr = 0.001
weight_decay = 0.0001
max_epoch = 200
[TransE]
seed = 0
patience = 3
batch_size = 100
neg_size = 13
dis_norm = 1
margin = 4
hidden_dim = 400
optimizer = SGD
lr = 1
weight_decay = 0.0001
max_epoch = 50
score_fn = transe
filtered = filtered
valid_percent = 0.01
test_percent = 0.1
[TransH]
seed = 0
patience = 3
batch_size = 100
neg_size = 13
dis_norm = 1
margin = 4
hidden_dim = 400
optimizer = SGD
lr = 1
weight_decay = 0.0001
max_epoch = 50
score_fn = transh
filtered = filtered
valid_percent = 0.01
test_percent = 0.1
[TransR]
seed = 0
patience = 3
batch_size = 100
neg_size = 13
dis_norm = 1
margin = 4
ent_dim = 400
rel_dim = 400
optimizer = SGD
lr = 1
weight_decay = 0.0001
max_epoch = 50
score_fn = transr
filtered = filtered
valid_percent = 0.01
test_percent = 0.1
[TransD]
seed = 0
patience = 3
batch_size = 100
neg_size = 13
dis_norm = 1