-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
108 lines (100 loc) · 3.23 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
site_name: ADLStream
site_url: https://adlstream.readthedocs.io
site_description: Asynchronous dual-pipeline deep learning framework for online data stream mining.
site_author: Pedro Lara-Benítez & Manuel Carranza-García
repo_url: https://github.com/pedrolarben/ADLStream/
edit_uri: ""
theme:
name: material
custom_dir: 'docs/theme'
favicon: images/favicon.ico
logo: images/logo.png
palette:
- scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
primary: 'teal'
accent: 'deep orange'
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
primary: 'blue grey'
accent: 'deep orange'
font:
text: Roboto
icon:
repo: fontawesome/brands/github
features:
- navigation.sections
- navigation.indexes
- navigation.tabs
nav:
- Home: index.md
- Getting started:
- Installation: install.md
- First example: getting_started.md
- API:
- API/index.md
- ADLStream: API/ADLStream.ADLStream.md
- Data:
- Stream:
- BaseStream: API/data/stream/BaseStream.md
- DataStream: API/data/stream/DataStream.md
- FileStream: API/data/stream/FileStream.md
- CSVFileStream: API/data/stream/CSVFileStream.md
- KafkaStream: API/data/stream/KafkaStream.md
- RiverStream: API/data/stream/RiverStream.md
- FakeStream: API/data/stream/FakeStream.md
- Preprocessing:
- BasePreprocessor: API/data/preprocessing/BasePreprocessor.md
- MinMaxScaler: API/data/preprocessing/MinMaxScaler.md
- MeanNormalizationScaler: API/data/preprocessing/MeanNormalizationScaler.md
- StandardizationScaler: API/data/preprocessing/StandardizationScaler.md
- BaseStreamGenerator: API/data/BaseStreamGenerator.md
- ClassificationStreamGenerator: API/data/ClassificationStreamGenerator.md
- MovingWindowStreamGenerator: API/data/MovingWindowStreamGenerator.md
- Evaluation:
- BaseEvaluator: API/evaluation/BaseEvaluator.md
- InterleavedChunkEvaluator: API/evaluation/InterleavedChunkEvaluator.md
- PrequentialEvaluator: API/evaluation/PrequentialEvaluator.md
- metrics: API/evaluation/metrics.md
- Models:
- create_model: API/models/models.md
- MLP: API/models/mlp.md
- LSTM: API/models/lstm.md
- GRU: API/models/gru.md
- ERNN: API/models/ernn.md
- ESN: API/models/esn.md
- CNN: API/models/cnn.md
- TCN: API/models/tcn.md
- Transformer: API/models/transformer.md
- About:
- Research: research.md
- Authors: authors.md
- Contributing: contributing.md
- License: license_page.md
extra:
generator: false
version:
provider: readthedocs
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
inherited_members: True
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
rendering:
show_source: true
heading_level: 3
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true