forked from MaartenGr/BERTopic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
124 lines (120 loc) · 4.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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
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
- 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
- Outlier reduction: getting_started/outlier_reduction/outlier_reduction.md
- Tips & Tricks: getting_started/tips_and_tricks/tips_and_tricks.md
- Sub-models:
- Embeddings: getting_started/embeddings/embeddings.md
- Dimensionality Reduction: getting_started/dim_reduction/dim_reduction.md
- Clustering: getting_started/clustering/clustering.md
- Vectorizers: getting_started/vectorizers/vectorizers.md
- c-TF-IDF: getting_started/ctfidf/ctfidf.md
- (Optional) Representation: getting_started/representation/representation.md
- Variations:
- Topic Distributions: getting_started/distribution/distribution.md
- Topics per Class: getting_started/topicsperclass/topicsperclass.md
- Supervised Topic Modeling: getting_started/supervised/supervised.md
- Semi-supervised Topic Modeling: getting_started/semisupervised/semisupervised.md
- Dynamic Topic Modeling: getting_started/topicsovertime/topicsovertime.md
- Guided Topic Modeling: getting_started/guided/guided.md
- Hierarchical Topic Modeling: getting_started/hierarchicaltopics/hierarchicaltopics.md
- Online Topic Modeling: getting_started/online/online.md
- Manual Topic Modeling: getting_started/manual/manual.md
- FAQ: faq.md
- API:
- BERTopic: api/bertopic.md
- Sub-models:
- Backends:
- Base: api/backends/base.md
- Word Doc: api/backends/word_doc.md
- Dimensionality Reduction:
- Base: api/dimensionality/base.md
- Clustering:
- Base: api/cluster/base.md
- Vectorizers:
- cTFIDF: api/ctfidf.md
- OnlineCountVectorizer: api/onlinecv.md
- Topic Representation:
- Base: api/representation/base.md
- MaximalMarginalRelevance: api/representation/mmr.md
- KeyBERT: api/representation/keybert.md
- PartOfSpeech: api/representation/pos.md
- Text Generation:
- 🤗 Transformers: api/representation/generation.md
- LangChain: api/representation/langchain.md
- Cohere: api/representation/cohere.md
- OpenAI: api/representation/openai.md
- Zero-shot Classification: api/representation/zeroshot.md
- Plotting:
- Barchart: api/plotting/barchart.md
- Documents: api/plotting/documents.md
- DTM: api/plotting/dtm.md
- Hierarchical documents: api/plotting/hierarchical_documents.md
- Hierarchical topics: api/plotting/hierarchy.md
- Distribution: api/plotting/distribution.md
- Heatmap: api/plotting/heatmap.md
- Term Scores: api/plotting/term.md
- Topics: api/plotting/topics.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:
- media: "(prefers-color-scheme: light)"
scheme: black
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- admonition
- md_in_html
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets
- toc:
permalink: true