-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
103 lines (97 loc) · 3 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
site_name: "Interactive Clustering"
site_description: "Python package used to apply NLP interactive clustering methods."
site_url: "https://cognitivefactory.github.io/interactive-clustering"
repo_url: "https://github.com/cognitivefactory/interactive-clustering"
repo_name: "cognitivefactory/interactive-clustering"
site_dir: "site"
watch: [README.md, CONTRIBUTING.md, CHANGELOG.md, src/cognitivefactory/interactive_clustering]
nav:
- Home:
- Overview: index.md
- Usage: usage.md
- Changelog: changelog.md
- Credits: credits.md
- License: license.md
# defer to gen-files + literate-nav
- Code Reference: reference/
#### - Constraints Managing:
#### - constraints.abstract: reference/constraints/abstract.md
#### - constraints.factory: reference/constraints/factory.md
#### - constraints.binary: reference/constraints/binary.md
#### - Constraints Sampling:
#### - sampling.abstract: reference/sampling/abstract.md
#### - sampling.factory: reference/sampling/factory.md
#### - sampling.clusters_based: reference/sampling/clusters_based.md
#### - Constrained Clustering:
#### - clustering.abstract: reference/clustering/abstract.md
#### - clustering.factory: reference/clustering/factory.md
#### - clustering.kmeans: reference/clustering/kmeans.md
#### - clustering.hierarchical: reference/clustering/hierarchical.md
#### - clustering.spectral: reference/clustering/spectral.md
#### - clustering.affinity_propagation: reference/clustering/affinity_propagation.md
#### - clustering.dbscan: reference/clustering/dbscan.md
#### - clustering.mpckmeans: reference/clustering/mpckmeans.md
#### - Utility methods:
#### - utils.preprocessing: reference/utils/preprocessing.md
#### - utils.vectorization: reference/utils/vectorization.md
#### - utils.frequency: reference/utils/frequency.md
- Development:
- Contributing: contributing.md
- Code of Conduct: code_of_conduct.md
- Coverage report: coverage.md
theme:
name: material
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.highlight
- search.suggest
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: lime
toggle:
icon: material/weather-night
name: Switch to light mode
extra_css:
- css/material.css
- css/mkdocstrings.css
markdown_extensions:
- admonition
- callouts
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- toc:
permalink: true
plugins:
- search
- markdown-exec
- gen-files:
scripts:
- docs/gen_ref_nav.py
- literate-nav:
nav_file: SUMMARY.md
- coverage
- section-index
- mkdocstrings:
watch:
- src/cognitivefactory/
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/erwanschild