This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
forked from MaartenGr/BERTopic
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
57 lines (57 loc) · 1.59 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
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
- 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
- Custom Models: tutorial/models/models.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 © 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_white.png
feature:
tabs: true
palette:
primary: black
accent: grey
markdown_extensions:
- admonition
- codehilite
- markdown.extensions.codehilite:
guess_lang: false
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.tabbed
- pymdownx.highlight:
use_pygments: true
- toc:
permalink: true