-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
65 lines (58 loc) · 2.35 KB
/
mkdocs.yml
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
site_name: FuseML Documentation
nav:
- Home: index.md
- About: about.md
- Quick Start: quickstart.md
- Tutorials:
- Logistic Regression with MLFlow & KServe: tutorials/kserve-basic.md
- Logistic Regression with MLFlow & Seldon-Core: tutorials/seldon-core.md
- Training & Serving ML Models on GPU with NVIDIA Triton: tutorials/kserve-triton-gpu.md
- Benchmarking ML Models on Intel CPUs with Intel OpenVINO: tutorials/openvino-mlflow.md
- FuseML Extension Development Use-Case - OpenVINO: tutorials/openvino-extensions.md
- Workflows:
- FuseML workflows: workflows/workflows.md
- MLflow builder workflow extension: workflows/mlflow-builder.md
- KServe predictor workflow extension: workflows/kserve-predictor.md
- Seldon Core predictor workflow extension: workflows/seldon-core-predictor.md
- OpenVINO Model Server predictor workflow extension: workflows/ovms-predictor.md
- OpenVINO Model Server converter workflow extension: workflows/ovms-converter.md
- Extensions:
- FuseML extension registry: extensions/extension-registry.md
- FuseML installer extensions: extensions/installer-extensions.md
- Architecture: architecture.md
- API Reference: api.md
- CLI Reference: cli.md
- Contributing: CONTRIBUTING.md
theme:
name: material
palette:
primary: green
accent: cyan
extra_css:
- stylesheets/extra.css
- https://cdn.jsdelivr.net/npm/[email protected]/release/featherlight.min.css
extra_javascript:
- javascripts/extra.js
- https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
- https://cdn.jsdelivr.net/npm/[email protected]/release/featherlight.min.js
repo_url: https://github.com/fuseml/fuseml
edit_uri: https://github.com/fuseml/docs/edit/main/docs/
plugins:
- render_swagger
markdown_extensions:
- admonition
# Allows rendering images using HTML (see: https://squidfunk.github.io/mkdocs-material/reference/images/)
- md_in_html
- attr_list
# Allows code blocks under lists (see: https://github.com/mkdocs/mkdocs/issues/282)
- pymdownx.superfences:
custom_fences:
- name: flow
class: uml-flowchart
format:
!!python/name:pymdownx.superfences.fence_code_format # TODO: Validate with our legal team.
- featherlight
copyright: "Copyright © 2021 FuseML Author(s)"
extra:
version:
provider: mike