forked from MaartenGr/BERTopic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
54 lines (54 loc) · 1.49 KB
/
mkdocs.yml
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
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
- Guides:
- Getting Started: tutorial/quickstart/quickstart.md
- Custom Embeddings: 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
- The Algorithm: tutorial/algorithm/algorithm.md
- API:
- BERTopic: api/bertopic.md
- cTFIDF: api/ctfidf.md
- Changelog: changelog.md
plugins:
- mkdocstrings:
setup_commands:
- import bertopic
watch:
- bertopic
- search
copyright: Copyright © 2020 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.png
feature:
tabs: true
palette:
primary: white
accent: blue
markdown_extensions:
- admonition
- codehilite
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.tabbed
- pymdownx.highlight:
use_pygments: true
- toc:
permalink: true