-
Notifications
You must be signed in to change notification settings - Fork 54
/
mkdocs.yml
62 lines (62 loc) · 1.71 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
site_name: Human-Learn
extra_css: [style.css]
repo_url: https://github.com/koaning/human-learn
site_url: https://koaning.github.io/human-learn/
site_description: Machine Learning models that play by the rules, literally.
site_author: Vincent D. Warmerdam
use_directory_urls: false
nav:
- Home:
- Index: index.md
- Guides:
- Function as a Model: guide/function-classifier/function-classifier.md
- Human Preprocessing: guide/function-preprocess/function-preprocessing.md
- Drawing as a Model: guide/drawing-classifier/drawing.md
- Outliers and Comfort: guide/finding-outliers/outliers.md
- Drawing Features: guide/drawing-features/custom-features.md
- Api:
- Models:
- Classification: api/classification.md
- Regression: api/regression.md
- Outlier: api/outlier.md
- Preprocessing: api/preprocessing.md
- Interactive:
- Charts: api/interactive-charts.md
- Utility:
- Common: api/common.md
- Datasets: api/datasets.md
- Rulers: api/rulers.md
- Examples:
- Model Mining: examples/model-mining.md
- Usage: examples/usage.md
- FAQ: examples/faq.md
plugins:
- mkdocstrings:
watch:
- hulearn
- search
copyright: Copyright © 2020 Maintained by <a href="https://twitter.com/fishnets88">Vincent</a>.
theme:
name: material
custom_dir: docs/theme/
icon:
logo: material/library
font:
text: Ubuntu
code: Ubuntu Mono
favicon: icon.png
logo: icon.png
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