forked from wilsonrljr/sysidentpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
209 lines (196 loc) · 6 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
site_name: SysIdentPy
site_description: From Classical Approaches to Neural Networks
site_url: https://sysidentpy.org/
site_author: Wilson Rocha
# Repository
repo_name: wilsonrljr/sysidentpy
repo_url: https://github.com/wilsonrljr/sysidentpy
# Copyright
copyright: Copyright © 2016 - 2022 Wilson Rocha
# Configuration
theme:
name: material
custom_dir: docs/
favicon: overrides/assets/images/favicon.png
icon:
logo: fontawesome/solid/house
# Static files
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
features:
- content.code.copy
- content.action.edit
- content.action.view
- navigation.footer
- content.code.annotate
- content.tabs.link
- content.tooltips
# - header.autohide
- navigation.indexes
# - navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- scheme: default
primary: white
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: black
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
## Custom theme additions
extra_javascript:
- 'overrides/assets/extra.js'
- 'overrides/assets/javascripts/mathjax.js'
- 'https://polyfill.io/v3/polyfill.min.js?features=es6'
- 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js'
# Plugins
plugins:
- search
- minify:
minify_html: true
- glightbox
- mkdocs-jupyter:
include_source: True
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: true
selection:
docstring_style: numpy
# Customization
extra:
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
social:
- icon: fontawesome/brands/github
link: https://github.com/wilsonrljr
- icon: fontawesome/brands/python
link: https://pypi.org/project/sysidentpy/
- icon: fontawesome/brands/twitter
link: https://twitter.com/wilsonrljr
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page tree
nav:
- Home: index.md
- Getting started:
- Installation: landing-page/getting-started.md
- Introduction to NARMAX: landing-page/ch0-narmax-intro.md
- Basic Usage: landing-page/basic-usage.md
- Get Help: landing-page/get-help.md
- How to contribute: landing-page/contribute.md
- License: landing-page/license.md
- Tutorials:
- Features:
- basic-steps: examples/basic_steps.ipynb
- defining-lags: examples/defining_lags.ipynb
- miso: examples/multiple_inputs_example.ipynb
- parameter-estimation: examples/parameter_estimation.ipynb
- multiobjective-parameter-estimation: examples/multiobjective_parameter_estimation.ipynb
- els: examples/extended_least_squares.ipynb
- n-steps-prediction: examples/n_steps_ahead_prediction.ipynb
- simulating: examples/simulating_a_predefined_model.ipynb
- save-load: examples/save_and_load_models.ipynb
- information-criteria: examples/information_criteria_examples.ipynb
- general-estimators: examples/general_estimators.ipynb
- fourier-basis: examples/fourier_basis_function.ipynb
- metamss: examples/metamss.ipynb
- neural-narx: examples/narx_neural_network.ipynb
- aols: examples/aols.ipynb
- entropic: examples/entropic_regression.ipynb
- Cases:
- air-passenger: examples/air_passenger_benchmark.ipynb
- f16: examples/f_16_benchmark.ipynb
- electromechanical: examples/identification_of_an_electromechanical_system.ipynb
- load-forecasting: examples/load_forecasting_benchmark.ipynb
- pv-forecasting: examples/PV_forecasting_benchmark.ipynb
- Companion Book:
- Preface: book/preface.md
- Contents: book/contents.md
- Blog:
- Events: events/events.md
- Meetups:
- Nubank Timeseries Meetup: events/nubank-meetup.md
- Nubank Open Source Talk: events/nubank-meetup-open-source.md
- GCoM Meetup: events/gcom-meetup.md
- Estatidados Meetup: events/estatidados.md
- About:
- landing-page/about-us.md
- landing-page/attribute.md
- Changelog:
- changelog/changelog.md
- Sponsors: landing-page/sponsor.md
- Code:
- NARMAX Base: code/narmax-base.md
- Basis Functions: code/basis-function.md
- FROLS: code/frols.md
- MetaMSS: code/metamss.md
- AOLS: code/aols.md
- Entropic Regression: code/entropic-regression.md
- Neural NARX: code/neural-narx.md
- General Estimators: code/general-estimators.md
- Parameter Estimation: code/parameter-estimation.md
- Multiobjective Parameter Estimation: code/multiobjective-parameter-estimation.md
- Simulation: code/simulation.md
- Residual Analysis: code/residues.md
- Metaheuristics: code/metaheuristics.md
- Metrics: code/metrics.md
- Utils: code/utils.md