-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
72 lines (61 loc) · 1.71 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
site_name: RiverText
site_description: RiverText is a Python Library for Training and Evaluating Incremental Word Embeddings from Text Data Streams.
site_author: Gabriel Iturra
site_url: https://github.com/dccuchile/rivertext
plugins:
- mkdocstrings
- mkdocs-jupyter:
execute: true
ignore: ["./docs/examples/tweets.txt"]
repo_name: RiverText
repo_url: https://github.com/dccuchile/rivertext
edit_uri: https://github.com/dccuchile/rivertext
theme:
name: material
custom_dir: docs/overrides
locale: en
analytics: {gtag: 'G-274394082'}
highlightjs: true
hljs_languages:
- yaml
- python
features:
- navigation.tabs
# Copyright
copyright: Copyright © 2023
nav:
- Home: index.md
- Introduction:
- getting_started.md
- About: introduction/about.md
- API:
- overview.md
- utils:
- data: api/data.md
- rand: api/rand.md
- vocab: api/vocab.md
- models:
- base: api/base.md
- iword2vec_utils:
- pytorch_nn: api/pytorch_nn.md
- unigram_table: api/unigram_table.md
- wcm: api/wcm.md
- word2vec: api/w2v.md
- evaluator: api/evaluator.md
- Examples:
- examples/textstreams.ipynb
- examples/wcm.ipynb
- examples/iw2v.ipynb
- Release: release.md
- Benchmark: benchmark.md
extra:
version: 0.0.1
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://cdn.jsdelivr.net/npm/vega@5
- https://cdn.jsdelivr.net/npm/vega-lite@5
- https://cdn.jsdelivr.net/npm/vega-embed@6
extra_css:
- stylesheets/extra.css