-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
49 lines (49 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
49
site_name: Roerich
site_url: https://hse-lambda.github.io/roerich/
repo_url: https://github.com/HSE-LAMBDA/roerich
edit_uri: tree/main/docs
repo_name: GitHub
docs_dir: docs
site_dir: site
theme:
name: readthedocs
highlightjs: true
include_homepage_in_sidebar: true
prev_next_buttons_location: bottom
markdown_extensions:
- markdown_include.include
- extra
- tables
- mdx_math:
enable_dollar_delimiter: True
- fenced_code
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS-MML_HTMLorMML
plugins:
- mknotebooks
- search
# - mkdocs-jupyter
nav:
- Home: 'index.md'
- Change point: about.md
- Detection algorithms:
- ChangePointDetectionClassifier: cpdclassifier.md
- ChangePointDetectionClassifierCV: cpdclassifier_cv.md
- OnlineNNClassifier: onnc.md
- SlidingWindows: window.md
- EnergyDistanceCalculator: energy.md
- ChangePointDetectionRuLSIF: cpdrulsif.md
- OnlineNNRuLSIF: onnr.md
- Explanation:
- MatrixImportance: matrix.md
- Density ratio:
- GBDTRuLSIFRegressor: gbdtrulsif.md
- NNRuLSIFRegressor: nnrulsif.md
- NNClassifier: nnclassifier.md
- Quality metrics:
- Precision and Recall: pr.md
- Examples:
- Basics: examples/demo.ipynb
- Human activity recognition: examples/wisdm.ipynb
- Earthquake detection: examples/seismic.ipynb
- Benchmarking: examples/benchmarking.ipynb