mirror of
https://github.com/MaartenGr/KeyBERT.git
synced 2022-03-14 19:18:06 +03:00
* Use paraphrase-MiniLM-L6-v2 as the default embedding model * Highlight a document's keywords * Added FAQ
45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
site_name: KeyBERT
|
|
extra_css: [style.css]
|
|
repo_url: https://github.com/MaartenGr/keyBERT
|
|
site_url: https://maartengr.github.io/keyBERT/
|
|
site_description: Leveraging BERT to extract important keywords
|
|
site_author: Maarten P. Grootendorst
|
|
use_directory_urls: false
|
|
nav:
|
|
- Home: index.md
|
|
- Guides:
|
|
- Quickstart: guides/quickstart.md
|
|
- Embedding Models: guides/embeddings.md
|
|
- API:
|
|
- KeyBERT: api/keybert.md
|
|
- MMR: api/mmr.md
|
|
- MaxSum: api/maxsum.md
|
|
- FAQ: faq.md
|
|
- Changelog: changelog.md
|
|
plugins:
|
|
- mkdocstrings:
|
|
watch:
|
|
- keybert
|
|
- 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.png
|
|
feature:
|
|
tabs: true
|
|
palette:
|
|
primary: black
|
|
accent: blue
|
|
markdown_extensions:
|
|
- pymdownx.highlight:
|
|
- pymdownx.superfences:
|
|
- toc:
|
|
permalink: true
|