-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgpu2.sh
executable file
·49 lines (33 loc) · 2.58 KB
/
gpu2.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
# python main_nfm.py --data_name movielens --gpu 2
# python main_nfm.py --data_name lastfm --social_net --gpu 2
# python main_nfm.py --data_name delicious --social_net --gpu 2
# python main_nfm.py --data_name movielens --gpu 2 --model_type fm
# python main_nfm.py --data_name lastfm --social_net --gpu 2 --model_type fm
# python main_nfm.py --data_name delicious --social_net --gpu 2 --model_type fm
# python main_ecfkg.py --data_name movielens --gpu 2
# python main_ecfkg.py --data_name delicious --social_net --gpu 2 --lr 0.005
# python main_kgat.py --data_name delicious --social_net --gpu 2 --lr 0.005
# python main_graphrec.py --dataset delicious --gpu 2
# python main_tkgat.py --data_name delicious --gpu 2 --social_net
# python main_tkgat.py --data_name movielens --gpu 2 --conv_dim_list [100,50]
# python main_tkgat.py --data_name movielens --gpu 2 --conv_dim_list [100]
# python main_tkgat.py --data_name lastfm --gpu 2 --social_net --conv_dim_list [100,50]
# python main_tkgat.py --data_name lastfm --gpu 2 --social_net --conv_dim_list [100]
# python main_kgat.py --data_name movielens --gpu 2 --test --lr 0.0005
# python main_kgat.py --data_name lastfm --social_net --gpu 2 --test
# python main_ecfkg.py --data_name movielens --gpu 2 --test
# python main_ecfkg.py --data_name lastfm --gpu 2 --test --social_net
# python main_nfm.py --data_name movielens --gpu 2 --test
# python main_nfm.py --data_name lastfm --gpu 2 --test --social_net
# python main_nfm.py --data_name movielens --gpu 2 --test --model_type fm
# python main_nfm.py --data_name lastfm --gpu 2 --test --model_type fm --social_net
# python main_tkgat.py --data_name delicious --gpu 2 --social_net --lr 0.01
# python main_tkgat.py --data_name delicious --gpu 2 --social_net --use_pretrain 0 --lr 0.01
# python main_tkgat.py --data_name delicious_small --gpu 2 --social_net --relation_dim 25 --attention_dim 25 --lr 0.01
# python main_tkgat.py --data_name delicious_small --gpu 2 --social_net --relation_dim 10 --attention_dim 10 --lr 0.01
# python main_tkgat.py --data_name delicious_small --gpu 2 --social_net --relation_dim 25 --attention_dim 25 --lr 0.01 --test
# python main_tkgat.py --data_name delicious_small --gpu 2 --social_net --relation_dim 10 --attention_dim 10 --lr 0.01 --test
# python main_nfm.py --data_name delicious_small --gpu 2 --model_type nfm --social_net
# python main_nfm.py --data_name delicious_small --gpu 2 --model_type fm --social_net
# python main_kgat.py --data_name delicious_small --gpu 2 --social_net --lr 0.002
python main_tkgat.py --data_name delicious_small --gpu 2 --social_net --use_pretrain 0 --lr 0.005