-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
26 lines (18 loc) · 2.18 KB
/
Makefile
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
train_runimp_mag240m_original:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src ; nohup python3 main.py --mode train --model runimp --dataset mag240m --hns original > ../logs/train_runimp_mag240m_original_$${timestamp}.log 2>&1 &
test_runimp_mag240m_original:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src ; nohup python3 main.py --mode test --model runimp --dataset mag240m --hns original > ../logs/test_runimp_mag240m_original_$${timestamp}.log 2>&1 &
heterogeneous_random_walks_demo:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src/heterogeneous_random_walks/build ; cmake .. ; make ; nohup python3 ../main.py --dataset demo --walks 50 --length 10 > ../../../logs/heterogeneous_random_walks_demo_$${timestamp}.log 2>&1 &
heterogeneous_random_walks_mag240m:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src/heterogeneous_random_walks/build ; cmake .. ; make ; nohup python3 ../main.py --dataset mag240m --walks 1000000 --length 10 > ../../../logs/heterogeneous_random_walks_mag240m_$${timestamp}.log 2>&1 &
heterogeneous_random_walks_freebase:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src/heterogeneous_random_walks/build ; cmake .. ; make ; nohup python3 ../main.py --dataset freebase --walks 1000000 --length 10 > ../../../logs/heterogeneous_random_walks_freebase_$${timestamp}.log 2>&1 &
train_runimp_mag240m_option1:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src ; nohup python3 main.py --mode train --model runimp_option1 --dataset mag240m --hns option1 > ../logs/train_runimp_mag240m_option1_$${timestamp}.log 2>&1 &
test_runimp_mag240m_option1:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src ; nohup python3 main.py --mode test --model runimp_option1 --dataset mag240m --hns option1 > ../logs/test_runimp_mag240m_option1_$${timestamp}.log 2>&1 &
train_runimp_freebase_original:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src ; nohup python3 main.py --mode train --model runimp --dataset freebase --hns original > ../logs/train_runimp_freebase_original_$${timestamp}.log 2>&1 &
train_runimp_freebase_option1:
timestamp=$$(date +%d.%m.%y-%H.%M.%S) ; cd src ; nohup python3 main.py --mode train --model runimp_option1 --dataset freebase --hns option1 > ../logs/train_runimp_freebase_option1_$${timestamp}.log 2>&1 &