-
Notifications
You must be signed in to change notification settings - Fork 21
/
mkdocs.yml
47 lines (46 loc) · 1.26 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
site_name: Customer Churn Pipeline Docs
extra_css: [style.css]
repo_url: https://github.com/awslabs/aws-customer-churn-pipeline
site_url: https://awslabs.github.io/aws-customer-churn-pipeline/
site_description: A python package for deploying an end to end customer churn prediction pipeline on AWS
site_author: Baichuan Sun, Charles Frenzel, Yin Song
use_directory_urls: false
nav:
- Home:
- Index: index.md
- Training Pipeline:
- Preprocessing: training/preporcessing.md
- HyperParameter Tuning: training/hyperparameter_tuning.md
- Training: training/model_training.md
- Model Persistence: training/save_model.md
- Evaluation: training/model_evaluation.md
- Inference Pipeline:
- Preprocessing: inference/preprocessing.md
- Batch Inference: inference/batch_transform.md
plugins:
- mkdocstrings:
watch:
- scripts
- search
copyright: Copyright © 2021
theme:
name: readthedocs
icon:
logo: material/library
font:
text: Ubuntu
code: Ubuntu Mono
feature:
tabs: true
palette:
primary: indigo
accent: blue
markdown_extensions:
- codehilite
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.tabbed
- pymdownx.highlight:
use_pygments: true
- toc:
permalink: true