forked from MaartenGr/BERTopic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (88 loc) · 2.99 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
site_name: BERTopic
repo_url: https://github.com/MaartenGr/BERTopic
site_url: https://maartengr.github.io/BERTopic/
site_description: Leveraging BERT and a class-based TF-IDF to create easily interpretable topics.
site_author: Maarten P. Grootendorst
use_directory_urls: false
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- The Algorithm: algorithm/algorithm.md
- Getting Started:
- getting_started/quickstart/quickstart.md
- Embedding Models: getting_started/embeddings/embeddings.md
- Topic Visualization: getting_started/visualization/visualization.md
- Topic Reduction: getting_started/topicreduction/topicreduction.md
- Topic Representation: getting_started/topicrepresentation/topicrepresentation.md
- Search Topics: getting_started/search/search.md
- Parameter tuning: getting_started/parameter tuning/parametertuning.md
- Tips & Tricks: getting_started/tips_and_tricks/tips_and_tricks.md
- Sub-models:
- Dimensionality Reduction: getting_started/dim_reduction/dim_reduction.md
- Clustering: getting_started/clustering/clustering.md
- CountVectorizer: getting_started/countvectorizer/countvectorizer.md
- Variations:
- Topics per Class: getting_started/topicsperclass/topicsperclass.md
- (semi)-Supervised Topic Modeling: getting_started/supervised/supervised.md
- Dynamic Topic Modeling: getting_started/topicsovertime/topicsovertime.md
- Guided Topic Modeling: getting_started/guided/guided.md
- FAQ: faq.md
- API:
- BERTopic: api/bertopic.md
- cTFIDF: api/ctfidf.md
- MMR: api/mmr.md
- Backends:
- Base: api/backends/base.md
- Word Doc: api/backends/word_doc.md
- Plotting:
- Barchart: api/plotting/barchart.md
- Distribution: api/plotting/distribution.md
- Heatmap: api/plotting/heatmap.md
- Hierarchy: api/plotting/hierarchy.md
- Term Scores: api/plotting/term.md
- Topics: api/plotting/topics.md
- DTM: api/plotting/dtm.md
- Topics per Class: api/plotting/topics_per_class.md
- Changelog: changelog.md
plugins:
- mkdocstrings:
watch:
- bertopic
- search
copyright: Copyright © 2021 Maintained by <a href="https://github.com/MaartenGr">Maarten</a>.
theme:
custom_dir: images/
name: material
icon:
logo: material/library
font:
text: Ubuntu
code: Ubuntu Mono
favicon: icon.png
logo: icon_white.png
feature:
tabs: true
features:
- navigation.tabs
- navigation.sections
- navigation.instant
- navigation.top
- navigation.tracking
- toc.follow
palette:
- scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true