-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathruns_rotate.sh
executable file
·78 lines (74 loc) · 1.91 KB
/
runs_rotate.sh
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
# CUDA_VISIBLE_DEVICES=2 python -u code/run.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset PrimeKG \
# --model RotatE \
# --distance_metric cosine \
# --hierarchy_type llm \
# --zeta_3 6.0 \
# -n 512 -b 256 -d 1024 \
# -g 10.0 -a 1.0 -adv \
# -lr 0.00001 --max_steps 1600000 \
# --test_batch_size 8 -de \
# --text_dist_constraint true \
# --hier_dist_constraint false \
# --intra_cluster_constraint true \
# --inter_cluster_constraint true \
# CUDA_VISIBLE_DEVICES=4 python -u code/run_p_anc.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset WN18RR \
# --model RotatE \
# --distance_metric rotate \
# --hierarchy_type seed \
# --zeta_3 1.8 \
# -n 512 -b 256 -d 512 \
# -g 6.0 -a 0.5 -adv \
# -lr 0.00005 --max_steps 400000 \
# --test_batch_size 8 -de \
# --inter_cluster_constraint false
# CUDA_VISIBLE_DEVICES=2 python -u code/run.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset YAGO3-10 \
# --model RotatE \
# --distance_metric cosine \
# --hierarchy_type llm \
# --zeta_3 12.0 \
# -n 256 -b 256 -d 512 \
# -g 24.0 -a 1.0 -adv \
# -lr 0.00001 --max_steps 400000 \
# --test_batch_size 8 -de \
# --text_dist_constraint true \
# --hier_dist_constraint false \
# --intra_cluster_constraint true \
# --inter_cluster_constraint true \
# CUDA_VISIBLE_DEVICES=2 python -u code/run.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset FB15K-237 \
# --model RotatE \
# --distance_metric cosine \
# --hierarchy_type llm \
# --zeta_3 8.0\
# -n 512 -b 512 -d 1024 \
# -g 9.0 -a 1.0 -adv \
# -lr 0.0001 --max_steps 1600000 \
# --test_batch_size 16 -de \
# --text_dist_constraint true \
# --hier_dist_constraint false \
# --intra_cluster_constraint true \
# --inter_cluster_constraint true \
# --valid_steps 20000 \