-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
31 lines (26 loc) · 1.26 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
27
28
29
30
31
#################@#################@#################@#################
#################@#################@#################@#################
J=jupyter nbconvert --ExecutePreprocessor.timeout=0 --allow-errors --execute
JN=$(J) --to markdown --stdout # for dev
# JN=$(J) --to notebook --inplace # for the final touch
#################@#################@#################@#################
#################@#################@#################@#################
all: video
default: run
run:
$(JN) UltraFastCat.ipynb
video:
python3 Jeremie-etal-Vision_video-abstract.py
#################@#################@#################@#################
update:
python3 -m pip install --upgrade -r requirements.txt
pull_babbage:
rsync -av -e "ssh -i ~/.ssh/id-ring-ecdsa" [email protected]:metagit/JNJER/2023-04_UltraFastCat/cached_data .
pull_darwin:
rsync -av -e "ssh -i ~/.ssh/id-ring-ecdsa" [email protected]:metagit/JNJER/2023-03-09_UltraFastCat/cached_data .
[email protected]# babbage
[email protected]# darwin
push_data:
rsync -av -e "ssh -i ~/.ssh/id-ring-ecdsa" ../DataSetMaker $(HOST):metagit/JNJER/
rsync -av -e "ssh -i ~/.ssh/id-ring-ecdsa" ../data $(HOST):metagit/JNJER/
#################@#################@#################@#################