-
Notifications
You must be signed in to change notification settings - Fork 57
/
mkdocs.yml
106 lines (106 loc) · 4.3 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
site_name: Curve Fit
nav:
- Home: 'index.md'
- Methods: 'methods.md'
- Code: 'code.md'
- Release Notes: 'updates.md'
- User Examples:
- get_started_xam: 'extract_md/get_started_xam.md'
- covariate_xam: 'extract_md/covariate_xam.md'
- random_effect_xam: 'extract_md/random_effect_xam.md'
- param_time_fun_xam: 'extract_md/param_time_fun_xam.md'
- prior_initializer_xam: 'extract_md/prior_initializer_xam.md'
- model_runner_xam: 'extract_md/model_runner_xam.md'
- Developer Doc:
- core:
- data:
- Data: 'extract_md/Data.md'
- DataSpecs: 'extract_md/DataSpecs.md'
- parameter:
- Variable: 'extract_md/Variable.md'
- Parameter: 'extract_md/Parameter.md'
- ParameterSet: 'extract_md/ParameterSet.md'
- residual models:
- _ResidualModel: 'extract_md/_ResidualModel.md'
- SmoothResidualModel: 'extract_md/SmoothResidualModel.md'
- variables to parameters:
- unzip_x: 'extract_md/unzip_x.md'
- effects2params: 'extract_md/effects2params.md'
- functions:
- param_time_fun: 'extract_md/param_time_fun.md'
- normal_loss: 'extract_md/normal_loss.md'
- st_loss: 'extract_md/st_loss.md'
- objective function:
- objective_fun: 'extract_md/objective_fun.md'
- prototype:
- Prototype: 'extract_md/Prototype.md'
- utilities:
- sizes_to_indices: 'extract_md/sizes_to_indices.md'
- models:
- base:
- DataInputs: 'extract_md/DataInputs.md'
- Model: 'extract_md/Model.md'
- core model:
- CoreModel: 'extract_md/CoreModel.md'
- gaussian atoms:
- GaussianMixtures: 'extract_md/GaussianMixtures.md'
- solvers:
- solvers:
- Solver: 'extract_md/Solver.md'
- ScipyOpt: 'extract_md/ScipyOpt.md'
- CompositeSolver: 'extract_md/CompositeSolver.md'
- MultipleInitialization: 'extract_md/MultipleInitialization.md'
- GaussianMixturesIntegration : 'extract_md/GaussianMixturesIntegration.md'
- SmartInitialization: 'extract_md/SmartInitialization.md'
- uncertainty:
- residuals:
- Residuals: 'extract_md/Residuals.md'
- ResidualInfo: 'extract_md/ResidualInfo.md'
- predictive validity:
- PredictiveValidity: 'extract_md/PredictiveValidity.md'
- residual model:
- _ResidualModel: 'extract_md/_ResidualModel.md'
- SmoothResidualModel: 'extract_md/SmoothResidualModel.md'
- draws:
- Draws: 'extract_md/Draws.md'
- initializers:
- initializer component:
- PriorInitializerComponent: 'extract_md/PriorInitializerComponent.md'
- JointPriorInitializerComponent: 'extract_md/JointPriorInitializerComponent.md'
- IndividualPriorInitializerComponent: 'extract_md/IndividualPriorInitializerComponent.md'
- LnAlphaBetaPrior: 'extract_md/LnAlphaBetaPrior.md'
- BetaPrior: 'extract_md/BetaPrior.md'
- initializer:
- PriorInitializer: 'extract_md/PriorInitializer.md'
- utils:
- smoothing:
- local_deviations: 'extract_md/local_deviations.md'
- local_smoother: 'extract_md/local_smoother.md'
- convolve_sum: 'extract_md/convolve_sum.md'
- df_to_mat: 'extract_md/df_to_mat.md'
- data:
- data_translator: 'extract_md/data_translator.md'
- general:
- markdown extractor:
- extract_md.py: 'extract_md/extract_md.py.md'
- cppad-py:
- get_cppad_py.py: 'extract_md/get_cppad_py.py.md'
- Developer Examples:
- unzip_x_xam: 'extract_md/unzip_x_xam.md'
- sizes_to_indices_xam: 'extract_md/sizes_to_indices_xam.md'
- loss_xam: 'extract_md/loss_xam.md'
- effects2params_xam: 'extract_md/effects2params_xam.md'
- objective_fun_xam: 'extract_md/objective_fun_xam.md'
theme:
name: 'material'
palette:
primary: 'green'
accent: 'green'
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
markdown_extensions:
- mdx_math
- admonition
- codehilite
- footnotes
- mkautodoc