-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (27 loc) · 694 Bytes
/
Makefile
File metadata and controls
36 lines (27 loc) · 694 Bytes
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
PROJECT_NAME=CompressiveTransformer
USER=vs
REMOTE_SERVER=adrian_minimal
REMOTE_FOLDER=CompressiveTransformer
.PHONY: install train evaluate notebook remote-sync sync-remote
install:
echo "Not Implemented: Installing CompressiveTransformer dependencies"
@pip install -r requirements.txt
train:
python ct.py train
evaluate:
@echo "Not implemented"
notebook:
jupyter notebook --port=7888
remote-sync:
@rsync -avze ssh \
--exclude 'data/*' \
--exclude '*.ipynb' \
--exclude '.git/' \
--exclude '.idea/' \
--exclude '*.pyc' \
--exclude 'docs/build/*' \
--include '*.py' \
--progress \
. \
$(USER)@$(REMOTE_SERVER):~/CompressiveTransformer
sync-remote: remote-sync