-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgreat-docs.yml
More file actions
181 lines (160 loc) · 5.45 KB
/
Copy pathgreat-docs.yml
File metadata and controls
181 lines (160 loc) · 5.45 KB
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
# Great Docs Configuration
# See https://posit-dev.github.io/great-docs/user-guide/configuration.html
# Module Name (optional)
# ----------------------
# Set this if your importable module name differs from the project name.
# Example: project 'py-yaml12' with module name 'yaml12'
# module: yaml12
# Docstring Parser
# ----------------
# The docstring format used in your package (numpy, google, or sphinx)
parser: numpy
# Dynamic Introspection
# ---------------------
# Use runtime introspection for more accurate documentation (default: true)
# Set to false if your package has cyclic alias issues (e.g., PyO3/Rust bindings)
dynamic: true
# API Discovery Settings
# ----------------------
# Exclude items from auto-documentation
exclude:
- __version__
# Logo & Favicon
# ---------------
# Point to a single logo file (replaces the text title in the navbar):
# logo: assets/logo.svg
#
# For light/dark variants:
# logo:
# light: assets/logo-light.svg
# dark: assets/logo-dark.svg
#
# To show the text title alongside the logo, add: show_title: true
# Author Information
# ------------------
# Author metadata for display in the landing page sidebar
# You can add additional fields: github, orcid, affiliation, homepage
authors:
- name: Juan Orduz
role: Author
# affiliation:
email: juanitorduz@gmail.com
# github:
# orcid:
# homepage:
# Funding / Copyright Holder
# --------------------------
# Credit the organization that funds or holds copyright for this package.
# Displays in sidebar and footer. Homepage and ROR provide links.
# funding:
# name: "Posit Software, PBC"
# roles:
# - Copyright holder
# - funder
# homepage: https://posit.co
# ror: https://ror.org/03wc8by49
# API Reference Structure
# -----------------------
# Customize the sections below to organize your API documentation.
# - Reorder items within a section to change their display order
# - Move items between sections or create new sections
# - Use 'members: false' to exclude methods from documentation
# - Add 'desc:' to sections for descriptions
reference:
- title: Forecasters
desc: High-level interfaces for fitting and forecasting.
contents:
- forecaster.Forecaster
- forecaster.HMCForecaster
- title: Models
desc: Building forecasting models (object-oriented and functional).
contents:
- forecaster.ForecastingModel
- functional.forecasting_model
- title: Functional core
desc: Pure functional primitives for the train/forecast split.
contents:
- functional.Horizon
- functional.time_series
- functional.predict
- functional.fit_svi
- functional.draw_posterior
- functional.fit_mcmc
- functional.forecast
- functional.predict_in_sample
- functional.SVIFit
- functional.MCMCFit
- title: Backtesting & evaluation
desc: Rolling-window backtesting and forecast metrics.
contents:
- evaluate.backtest
- evaluate.BacktestResult
- evaluate.evaluate_forecast
- evaluate.eval_crps
- evaluate.eval_mae
- evaluate.eval_rmse
- evaluate.eval_coverage
- metrics.crps_empirical
- title: Utilities
desc: Array helpers and feature builders.
contents:
- util.fourier_features
- util.periodic_repeat
- util.zero_data_like
- util.concat_future
- util.shift_loc
- util.slice_time
- util.prefix_condition
- title: Datasets
desc: Example datasets used in the tutorials.
contents:
- datasets.load_bart_weekly
- datasets.load_bart_hierarchical
- datasets.load_victoria_electricity
- datasets.bart_available
# Example notebooks live in docs/examples/. The .qmd wrapper pages that embed
# their stored outputs are generated at build time by scripts/build_docs.py
# (no re-execution), so only the notebooks themselves are committed.
sections:
- title: Examples
dir: docs/examples
index: true
index_columns: 2
# GitHub Integration
# ------------------
# Repository URL is auto-detected from the git remote / pyproject URLs.
github_style: widget
# Site URL
# --------
# Canonical address of the deployed documentation site.
# Required for subdirectory deployments, skills page install commands,
# .well-known/ discovery, and sitemaps.
site_url: "https://juanitorduz.github.io/numpyro_forecast/"
# Make embedded notebook output images responsive so wide matplotlib figures
# fit the content column instead of overflowing (they carry explicit
# width/height attributes and lack Bootstrap's .img-fluid class).
include_in_header:
- text: |
<style>
.cell-output-display img { max-width: 100%; height: auto; }
</style>
# Site Settings
# -------------
# site:
# theme: flatly # Quarto theme (default: flatly)
# toc: true # Show table of contents (default: true)
# toc-depth: 2 # TOC heading depth (default: 2)
# toc-title: On this page # TOC title (default: "On this page")
# Jupyter Kernel
# --------------
# Jupyter kernel to use for executing code cells in .qmd files.
# This is set at the project level so it applies to all pages, including
# auto-generated API reference pages. Can be overridden in individual .qmd
# file frontmatter if needed for special cases.
jupyter: python3
# CLI Documentation
# -----------------
# cli:
# enabled: true # Enable CLI documentation
# module: my_package.cli # Module containing Click commands
# name: cli # Name of the Click command object