-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
158 lines (146 loc) · 4.19 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
site_name: ToyML
repo_url: https://github.com/ai-glimpse/toyml
repo_name: ai-glimpse/toyml
site_description: Machine Learning from Scratch
site_author: Xiangzhuang Shen
copyright: Copyright © 2017 Xiangzhuang Shen
# Page tree
nav:
- Home: index.md
# - Getting started:
# - Quick Start: quickstart.md
# - User Guide:
# - Read First: user-guide/1-read-first.md
- Algorithms:
- Clustering:
- Kmeans: algorithms/clustering/kmeans.md
- DIANA: algorithms/clustering/diana.md
- AGNES: algorithms/clustering/agnes.md
- DBSCAN: algorithms/clustering/dbscan.md
- Classification:
- KNN: algorithms/classification/knn.md
- Naive Bayes: algorithms/classification/naive_bayes.md
- Ensemble:
- AdaBoost: algorithms/ensemble/adaboost.md
- Isolation Forest: algorithms/ensemble/iforest.md
- Changelog: changelog.md
exclude_docs: |
docs/abbreviations.md
theme:
name: material
icon:
repo: fontawesome/brands/github
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: cyan
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- content.code.copy
- content.action.edit
- content.action.view
# - announce.dismiss
- content.code.annotate
# - content.tabs.link
- content.tooltips
# - header.autohide
# - navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.prune
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
docs_dir: docs
extra_css:
- css/extra.css
extra_javascript:
- js/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/shenxiangzhuang/ToyML
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/xiangzhuang-shen-a81825157/
markdown_extensions:
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
linenums_style: pymdownx.inline
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.snippets:
auto_append:
- docs/abbreviations.md
- pymdownx.tabbed
- abbr
- admonition
- attr_list
- footnotes
plugins:
- search
- autorefs
- git-revision-date-localized:
enable_creation_date: true
- git-committers:
repository: ai-glimpse/toyml
branch: master
token: !ENV [ "ORG_MKDOCS_GIT_COMMITTERS_APIKEY" ]
- bibtex:
bib_file: "docs/references.bib"
csl_file: "docs/ieee.csl"
cite_inline: false
- mkdocstrings:
handlers:
python:
import:
- https://docs.python-requests.org/en/master/objects.inv
- https://docs.python.org/3/objects.inv
- https://mkdocstrings.github.io/objects.inv
- https://mkdocstrings.github.io/griffe/objects.inv
- https://python-markdown.github.io/objects.inv
options:
docstring_style: google
docstring_options:
ignore_init_summary: true
docstring_section_style: spacy
show_docstring_classes: true
show_docstring_attributes: true
heading_level: 2
members_order: source
merge_init_into_class: true
separate_signature: true
show_root_heading: false
show_root_full_path: true
show_signature_annotations: true
signature_crossrefs: true
show_root_members_full_path: true
show_root_toc_entry: true
show_symbol_type_heading: true
show_symbol_type_toc: true