forked from MaartenGr/BERTopic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
53 lines (53 loc) · 1.66 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
site_name: BERTopic
extra_css: [style.css]
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
nav:
- Home: index.md
- The Algorithm: tutorial/algorithm/algorithm.md
- Guides:
- Getting Started: tutorial/quickstart/quickstart.md
- Embedding Models: tutorial/embeddings/embeddings.md
- Topic Visualization: tutorial/visualization/visualization.md
- Topic Reduction: tutorial/topicreduction/topicreduction.md
- Topic Representation: tutorial/topicrepresentation/topicrepresentation.md
- Search Topics: tutorial/search/search.md
- Custom Sub-Models: tutorial/models/models.md
- Topics per Class: tutorial/topicsperclass/topicsperclass.md
- (semi)-Supervised Topic Modeling: tutorial/supervised/supervised.md
- Dynamic Topic Modeling: tutorial/topicsovertime/topicsovertime.md
- API:
- BERTopic: api/bertopic.md
- cTFIDF: api/ctfidf.md
- MMR: api/mmr.md
- FAQ: faq.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
palette:
primary: black
accent: grey
markdown_extensions:
- pymdownx.highlight:
- pymdownx.superfences:
- toc:
permalink: true