forked from RasaHQ/rasa-nlu-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
48 lines (47 loc) · 1.49 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
site_name: Rasa NLU Examples
extra_css: [style.css]
repo_url: https://github.com/RasaHQ/rasa-nlu-examples
site_url: https://rasahq.github.io/rasa-nlu-examples/
site_description: A collection of open source Rasa compatible NLU components.
site_author: Vincent D. Warmerdam @ Rasa Research
nav:
- Home: index.md
- Usage:
- Benchmarking Guide: benchmarking.md
- Tokenizers:
- BlankSpacyTokenizer: docs/tokenizer/spacy-tokenizer.md
- ThaiTokenizer: docs/tokenizer/thai-tokenizer.md
- Featurizers:
- BytePairFeaturizer: docs/featurizer/bytepair.md
- HashingFeaturizer: docs/featurizer/hashing.md
- TfIdfFeaturizer: docs/featurizer/tfidf.md
- FastTextFeaturizer: docs/featurizer/fasttext.md
- GensimFeaturizer: docs/featurizer/gensim.md
- Intent Classifiers:
- SparseNaiveBayes: docs/classifier/naive-bayes.md
- LogisticRegression: docs/classifier/logistic-regression.md
- Entity Extractors:
- FlashText: docs/extractors/flashtext.md
- DateParser: docs/extractors/dateparser.md
- Contributing:
- Contribute: contributing.md
plugins:
- search
- mkdocstrings:
watch:
- rasa_nlu_examples
copyright: Copyright © 2020 <a href="https://twitter.com/Rasa_HQ">Rasa</a>
theme:
name: material
features:
- tabs
- instant
palette:
primary: deep purple
accent: purple
markdown_extensions:
- codehilite
- pymdownx.tabbed
- admonition
- toc:
permalink: true