1 - introduction: introduction.md
2 - pre-processing:
3 - introduction: pre-processing/introduction.md
4 - missing data: pre-processing/missing-data.md
5 - feature engineering: pre-processing/feature-engineering.md
6 - model building: model-building.md
7 - testing: testing.md
8 - experimental:
9 - introduction: experimental/introduction.md
10
1notebooks := $(wildcard ./**/*.ipynb)
2md_pages := $(patsubst notebooks/%.ipynb,docs/%.md,$(notebooks))
3
4build.env: ; conda env create -f environment.yml
5build.site: $(md_pages)
6
7docs/%.md: notebooks/%.ipynb
8 jupyter nbconvert\
9 --to markdown $<\
10 --output-dir $(dir $@)\
11 --template=src/to_markdown.tpl
12