Skip to content

Commit ff38437

Browse files
feat(KDP): adding timeseries features functionality and layers (#29)
2 parents b8972c4 + c83cd48 commit ff38437

File tree

84 files changed

+14022
-1464
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+14022
-1464
lines changed

Makefile

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,16 @@ clean_built:
5858
# Build doc
5959
# ------------------------------------
6060

61+
.PHONY: generate_all_diagrams
62+
## Generate all diagrams, organize them, and clean up in one command
63+
generate_all_diagrams:
64+
@echo "Generating and organizing all diagrams in one step"
65+
./scripts/generate_all_diagrams.sh
66+
6167
.PHONY: generate_doc_content
62-
## Generate documentation content from code and model architectures
68+
## Generate documentation content from code and model architectures (DEPRECATED - use generate_all_diagrams instead)
6369
generate_doc_content:
70+
@echo "NOTE: This target is deprecated. Please use 'make generate_all_diagrams' instead."
6471
@echo "Generating API documentation from docstrings"
6572
mkdir -p docs/generated/api
6673
poetry run python scripts/generate_docstring_docs.py
@@ -73,7 +80,7 @@ generate_doc_content:
7380

7481
.PHONY: docs_deploy
7582
## Build docs using mike
76-
docs_deploy: generate_doc_content
83+
docs_deploy: generate_all_diagrams
7784
@echo "Starting to build docs"
7885
@echo "more info: https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/"
7986
ifdef HAS_POETRY
@@ -97,12 +104,12 @@ docs_version_serve:
97104

98105
.PHONY: docs
99106
## Create or Deploy MkDocs based documentation to GitHub pages.
100-
deploy_doc: generate_doc_content
107+
deploy_doc: generate_all_diagrams
101108
mkdocs gh-deploy
102109

103110
.PHONY: serve_doc
104111
## Test MkDocs based documentation locally.
105-
serve_doc: generate_doc_content
112+
serve_doc: generate_all_diagrams
106113
poetry run mkdocs serve
107114

108115
# ------------------------------------

Model_Architecture.png

-181 KB
Binary file not shown.

docs/advanced/imgs/feature_moe.png

31.2 KB
Loading
34.7 KB
Loading
75.2 KB
Loading
34.9 KB
Loading
36.1 KB
Loading
34.5 KB
Loading
34.7 KB
Loading

docs/features/imgs/feature_moe.png

31.2 KB
Loading

0 commit comments

Comments
 (0)