-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·50 lines (40 loc) · 850 Bytes
/
setup.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
#!/bin/bash
cd graph_loading
chmod +x build.sh
./build.sh
cd ..
echo "Graph loading module built"
cd GraphSAGE
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
cd ..
echo "Setup GraphSAGE Complete"
cd GraphSAINT
virtualenv venv
chmod +x nextdoor_run.sh
source venv/bin/activate
pip install -r requirements.txt
python graphsaint/setup.py build_ext --inplace
cd ..
echo "Setup GraphSAINT Complete!"
cd cluster_gcn
virtualenv venv
chmod +x run_custom.sh
source venv/bin/activate
pip install -r requirements.txt
cd ..
echo "Setup ClusterGCN complete"
cd LADIES
virtualenv venv
chmod +x run_custom.sh
source venv/bin/activate
pip install -r requirements.txt
cd ..
echo "Setup FastGCN|LADIES Complete"
cd mvs_gcn
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
cd ..
echo "Setup MVS GCN complete"