forked from samuelebortolotti/uda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
186 lines (153 loc) · 5.64 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# ======= FOLDERS ==================
VENV := venv
PROJECT_NAME := uda
# ======= PROGRAMS AND FLAGS =======
PYTHON := python3
PYFLAGS := -m
PIP := pip
UPGRADE_PIP := --upgrade pip
# ======= MAIN =====================
MAIN := uda
MAIN_FLAGS :=
PIP := pip
# ======= DATASET ==================
DATASET:= dataset
DATASET_FLAGS :=
# ======= VISUALIZE ================
VISUALIZE:= visualize
VISUALIZE_FLAGS :=
SOUCE_DATASET := adaptiope_small/product_images
TARGET_DATASET := adaptiope_small/real_life
LABEL := 8
# ======= EXPERIMENT ===============
EXPERIMENT := experiment
LABEL := 7
SOURCE_DATASET := adaptiope_small/product_images
TARGET_DATASET := adaptiope_small/real_life
EXP_NAME := "medm"
NUM_CLASSES := 20
PRETRAINED := pretrained
EPOCHS := 20
BACKBONE := resnet
EXPERIMENT_FLAGS := --learning-rate 0.001 --batch-size 32 --test-batch-size 32
# ======= DOC ======================
AUTHORS := --author "Samuele Bortolotti, Luca De Menego"
VERSION :=-r 0.1
LANGUAGE := --language en
SPHINX_EXTENSIONS := --extensions sphinx.ext.autodoc --extensions sphinx.ext.napoleon --extensions sphinx.ext.viewcode --extensions myst_parser
DOC_FOLDER := docs
COPY := cp -rf
IMG_FOLDER := .github
# ======= FORMAT ===================
FORMAT := black
FORMAT_FLAG := uda
## Quickstart
SPHINX_QUICKSTART := sphinx-quickstart
SPHINX_QUICKSTART_FLAGS := --sep --no-batchfile --project unsupervised-domain-adaptation $(AUTHORS) $(VERSION) $(LANGUAGE) $(SPHINX_EXTENSIONS)
## Build
BUILDER := html
SPHINX_BUILD := make $(BUILDER)
SPHINX_API_DOC := sphinx-apidoc
SPHINX_API_DOC_FLAGS := -P -o $(DOC_FOLDER)/source .
SPHINX_THEME = sphinx_rtd_theme
DOC_INDEX := index.html
## INDEX.rst preamble
define INDEX
.. ffdnet documentation master file, created by
sphinx-quickstart on Fri Jul 1 23:38:46 2022.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
.. include:: ../../README.md
:parser: myst_parser.sphinx_
.. toctree::
:maxdepth: 7
:caption: Contents:
modules
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
endef
export INDEX
# ======= COLORS ===================
RED := \033[31m
GREEN := \033[32m
YELLOW := \033[33m
BLUE := \033[34m
NONE := \033[0m
# ======= COMMANDS =================
ECHO := echo -e
MKDIR := mkdir -p
OPEN := xdg-open
SED := sed
# RULES
.PHONY: help env install install-dev dataset visualize experiment doc doc-layout open-doc format-code
help:
@$(ECHO) '$(YELLOW)Makefile help$(NONE)'
@$(ECHO) " \
* env : generates the virtual environment using the current python version and venv\n \
* install : install the requirements listed in requirements.txt\n \
* install-dev : install the development requirements listed in requirements.dev.txt\n \
* dataset : downloads and filters out the Adaptiope dataset\n \
* visualize : shows the images associated to the specified label in the source and target dataset\n \
* experiment : runs the experiment and plots the feature-aligment plots\n \
* doc-layout : generates the Sphinx documentation layout\n \
* doc : generates the documentation (requires an existing documentation layout)\n \
* format-code : formats the code employing black python formatter\n \
* help : prints this message\n \
* open-doc : opens the documentation\n"
env:
@$(ECHO) '$(GREEN)Creating the virtual environment..$(NONE)'
@$(MKDIR) $(VENV)
@$(eval PYTHON_VERSION=$(shell $(PYTHON) --version | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]' | cut -f1,2 -d'.'))
@$(PYTHON_VERSION) -m venv $(VENV)/$(PROJECT_NAME)
@$(ECHO) '$(GREEN)Done$(NONE)'
install:
@$(ECHO) '$(GREEN)Installing requirements..$(NONE)'
@$(PYTHON) -m pip install $(UPGRADE_PIP)
@pip install -r requirements.txt
@$(ECHO) '$(GREEN)Done$(NONE)'
install-dev:
@$(ECHO) '$(GREEN)Installing requirements..$(NONE)'
@$(PYTHON) -m pip install $(UPGRADE_PIP)
@$(PIP) install -r requirements.dev.txt
@$(ECHO) '$(GREEN)Done$(NONE)'
dataset:
@$(ECHO) '$(BLUE)Dowloading and filtering the Adaptiope dataset..$(NONE)'
@$(PYTHON) $(PYFLAGS) $(MAIN) $(MAIN_FLAGS) $(DATASET) $(DATASET_FLAGS)
@$(ECHO) '$(BLUE)Done$(NONE)'
visualize:
@$(ECHO) '$(BLUE)Visualize the requested images..$(NONE)'
@$(PYTHON) $(PYFLAGS) $(MAIN) $(MAIN_FLAGS) $(VISUALIZE) $(SOUCE_DATASET) $(TARGET_DATASET) $(LABEL) $(VISUALIZE_FLAGS)
@$(ECHO) '$(BLUE)Done$(NONE)'
experiment:
@$(ECHO) '$(BLUE)Run the experiment..$(NONE)'
@$(PYTHON) $(PYFLAGS) $(MAIN) $(MAIN_FLAGS) $(EXPERIMENT) $(LABEL) $(SOUCE_DATASET) $(TARGET_DATASET) $(EXP_NAME) $(NUM_CLASSES) $(PRETRAINED) $(EPOCHS) $(BACKBONE) $(EXPERIMENT_FLAGS)
@$(ECHO) '$(BLUE)Done$(NONE)'
doc-layout:
@$(ECHO) '$(BLUE)Generating the Sphinx layout..$(NONE)'
# Sphinx quickstart
$(SPHINX_QUICKSTART) $(DOC_FOLDER) $(SPHINX_QUICKSTART_FLAGS)
# Including the path for the current README.md
@$(ECHO) "\nimport os\nimport sys\nsys.path.insert(0, os.path.abspath('../..'))">> $(DOC_FOLDER)/source/conf.py
# Inserting custom index.rst header
@$(ECHO) "$$INDEX" > $(DOC_FOLDER)/source/index.rst
# Sphinx theme
@$(SED) -i -e "s/html_theme = 'alabaster'/html_theme = '$(SPHINX_THEME)'/g" $(DOC_FOLDER)/source/conf.py
# Copy the image folder inside the doc folder
@$(COPY) $(IMG_FOLDER) $(DOC_FOLDER)/source
@$(ECHO) '$(BLUE)Done$(NONE)'
doc:
@$(ECHO) '$(BLUE)Generating the documentation..$(NONE)'
$(SPHINX_API_DOC) $(SPHINX_API_DOC_FLAGS)
cd $(DOC_FOLDER); $(SPHINX_BUILD)
@$(ECHO) '$(BLUE)Done$(NONE)'
open-doc:
@$(ECHO) '$(BLUE)Open documentation..$(NONE)'
$(OPEN) $(DOC_FOLDER)/build/$(BUILDER)/$(DOC_INDEX)
@$(ECHO) '$(BLUE)Done$(NONE)'
format-code:
@$(ECHO) '$(BLUE)Formatting the code..$(NONE)'
@$(FORMAT) $(FORMAT_FLAG)
@$(ECHO) '$(BLUE)Done$(NONE)'