-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
96 lines (89 loc) · 2.6 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
nav:
- Home: index.md
- Documentation:
- torchml.linear_model: api/linear_model.md
- torchml.naive_bayes: api/naive_bayes.md
- torchml.neighbors: api/neighbors.md
- torchml.decomposition: api/decomposition.md
- torchml.discriminant_analysis: api/discriminant_analysis.md
- torchml.kernel_approximations: api/kernel_approximations.md
- Tutorials:
- Linear Models: tutorials/linear_model.md
- Naive Bayes: tutorials/gaussian_nb.md
- Nearest Neighbors: tutorials/neighbors.md
- Nearest Centroid: tutorials/nearest_centroid.md
- Changelog: changelog.md
- Getting Started: getting_started.md
- GitHub: https://github.com/learnables/torchml/
docs_dir: ./docs
site_name: torchml
site_url: http://torchml.net
site_author: 'Séb Arnold'
google_analytics: ['UA-68693545-3', 'learnables.github.com']
repo_name: 'learnables/torchml'
repo_url: 'https://github.com/learnables/torchml'
edit_uri: ''
theme:
name: 'material'
logo: 'assets/images/torchml-icon.png'
favicon: 'assets/images/favicon.ico'
palette:
primary: 'white'
accent: 'orange'
font:
text: 'Source Sans Pro'
code: 'Ubuntu Mono'
features:
- header.autohide
extra_javascript:
- https://cdn.jsdelivr.net/npm/katex/dist/katex.min.js
- https://cdn.jsdelivr.net/npm/katex/dist/contrib/mathtex-script-type.min.js
extra_css:
- https://cdn.jsdelivr.net/npm/katex/dist/katex.min.css
- 'assets/css/custom.css'
extra:
social:
- type: 'github'
link: 'https://github.com/learnables'
- type: 'bug'
link: 'https://github.com/learnables/torchml/issues/new'
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
setup_commands:
- import pytkdocs_tweaks
- pytkdocs_tweaks.main()
selection:
inherited_members: true
rendering:
show_source: false
show_root_heading: true
show_root_full_path: true
show_category_heading: true
show_signature: true
show_signature_annotations: true
separate_signature: false
group_by_category: false
member_order: 'source'
show_bases: true
show_if_no_docstring: true
show_submodules: false
heading_level: 3
markdown_extensions:
- mdx_math
- admonition
- pymdownx.superfences
- pymdownx.details
- codehilite:
guess_lang: true
linenums: true
- toc:
permalink: true
toc_depth: 4
- markdown_katex:
no_inline_svg: True
insert_fonts_css: True