“Notebook Python Static Generator” Kod odpowiedzi

Notebook Python Static Generator

notebooks := $(wildcard ./**/*.ipynb)
md_pages := $(patsubst notebooks/%.ipynb,docs/%.md,$(notebooks))

build.env: ; conda env create -f environment.yml
build.site: $(md_pages)

docs/%.md: notebooks/%.ipynb
	jupyter nbconvert\
		--to markdown $<\
		--output-dir $(dir $@)\
		--template=src/to_markdown.tpl
Xenophobic Xenomorph

Notebook Python Static Generator

    - introduction: introduction.md
    - pre-processing:
        - introduction: pre-processing/introduction.md
        - missing data: pre-processing/missing-data.md
        - feature engineering: pre-processing/feature-engineering.md
    - model building: model-building.md
    - testing: testing.md
    - experimental: 
        - introduction: experimental/introduction.md
Xenophobic Xenomorph

Odpowiedzi podobne do “Notebook Python Static Generator”

Pytania podobne do “Notebook Python Static Generator”

Więcej pokrewnych odpowiedzi na “Notebook Python Static Generator” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu