-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUPDATED_MASK_RCN_INSTRUCTIONS.txt
38 lines (30 loc) · 1.16 KB
/
UPDATED_MASK_RCN_INSTRUCTIONS.txt
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
conda create --name MASKRCNN python=3
conda activate MASKRCNN
conda install jupyter
conda install matplotlib
conda install tensorflow-gpu
conda install scikit-image
conda install scikit-learn
conda install keras
git clone [email protected]:VCG/perception.git ### replace with your fork
cd perception
git submodule init
git submodule update
jupyter notebook
# have jupyter notebook configured according to https://cs410.net/notes/01/
# now on your local machine
# create tunnel (instead of monster use jesse's machine and instead of 44321 use your own port)
ssh [email protected] -L 44321:localhost:44321
ssh viper.verymad.net -L 44321:localhost:44321
# use browser to access https://localhost:44321
# and open ipy/ImageTest.ipynb
####
# now for the maskrcnn pipeline
#
# we need the VGG19 from the Haehn 2018 paper:
#
mkdir -p tensorflow.js/models/VGG19_angle_full_variation/
wget -O tensorflow.js/models/VGG19_angle_full_variation/VGG19.zip https://www.dropbox.com/sh/cavjnb91vbwh2n9/AAA6jmH5uA1rP9D9OKRr8QJ4a/RESULTS_FROM_SCRATCH/C.Figure1.angle/2/VGG19?dl=1
cd tensorflow.js/models/VGG19_angle_full_variation/
unzip VGG19.zip
# open ipy/MASKRCNN.ipynb and it all works :)