-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathruns_transe.sh
executable file
·58 lines (54 loc) · 1.37 KB
/
runs_transe.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
# CUDA_VISIBLE_DEVICES=5 python -u code/run.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset PrimeKG \
# --model TransE \
# --distance_metric cosine \
# --hierarchy_type llm \
# --zeta_3 1.8 \
# -n 256 -b 256 -d 1024 \
# -g 24.0 -a 1.0 -adv \
# -lr 0.00001 --max_steps 400000 \
# --test_batch_size 8 \
# CUDA_VISIBLE_DEVICES=7 python -u code/run.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset YAGO3-10 \
# --distance_metric cosine \
# --hierarchy_type llm \
# --zeta_3 2.0 \
# -n 256 -b 256 -d 1024 \
# -g 24.0 -a 1.0 -adv \
# -lr 0.0001 --max_steps 800000 \
# --test_batch_size 8 \
# --text_dist_constraint true \
# --hier_dist_constraint false \
# --intra_cluster_constraint true \
# --inter_cluster_constraint true \
# --valid_steps 20000
# CUDA_VISIBLE_DEVICES=4 python -u code/run.py \
# --do_train \
# --cuda \
# --do_valid \
# --do_test \
# --data_path data \
# --dataset FB15K-237 \
# --model TransE \
# --distance_metric cosine \
# --hierarchy_type llm \
# --zeta_3 8.0 \
# -n 256 -b 1024 -d 2048 \
# -g 9.0 -a 1.0 -adv \
# -lr 0.00005 --max_steps 400000 \
# --test_batch_size 8 \
# --text_dist_constraint true \
# --hier_dist_constraint false \
# --intra_cluster_constraint true \
# --inter_cluster_constraint true \
# --valid_steps 20000 \