Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
acd6883
Migrate documentation from Sphinx/MyST to Quarto
stephengreen Jul 2, 2026
d58161f
Polish Quarto docs: RTD sidebar, auto API reference, rendering fixes
stephengreen Jul 2, 2026
e3042d3
Docs: per-object API reference with docstrings; fence/list/config fixes
stephengreen Jul 2, 2026
67ea575
Docs: address Copilot review — fix broken cross-refs, empty links, ge…
stephengreen Jul 5, 2026
8a5465e
Docs: fuller API pages — merge __init__ params, list methods
stephengreen Jul 6, 2026
1f34dab
Docs: fix stray line break in installation.qmd
stephengreen Jul 6, 2026
eb68589
Docs: strip trailing whitespace from quickstart/gnpe/training qmd
stephengreen Jul 6, 2026
1fc0d71
Docs: fix batch_size math rendering (escape underscore in \text)
stephengreen Jul 6, 2026
8615893
Docs: make this branch Quarto-only — remove Sphinx/readthedocs
stephengreen Jul 6, 2026
34072e6
Docs: add GitHub Pages deploy workflow
stephengreen Jul 6, 2026
dffd279
Docs CI: pin griffe==1.15.0 for quartodoc 0.11.1 compatibility
stephengreen Jul 6, 2026
bb6088e
Docs: modernize theme — flatly/darkly, system font, scientific palett…
stephengreen Jul 6, 2026
b3899fa
Docs: fix navbar section highlight (was always 'Getting Started')
stephengreen Jul 6, 2026
e6dbdbf
Docs: remove misaligned navbar hover underline
stephengreen Jul 6, 2026
e16777a
Docs: address Copilot review
stephengreen Jul 6, 2026
c102d68
Docs: fix white inline-code background in dark mode
stephengreen Jul 7, 2026
b059d28
Docs: host on Read the Docs via build.commands instead of GitHub Pages
stephengreen Jul 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions dingo/core/nn/cfnets.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,15 +302,6 @@ class PositionalEncoding(nn.Module):
Otherwise, it is computed only for the first feature (e.g., the time dimension).
base_freq : float, optional (default=2 * np.pi)
The base frequency used for sinusoidal encoding.

Methods
-------
forward(t_theta)
Computes the positional encoding for the input tensor `t_theta` and concatenates
it with the original input features.
- If `encode_all` is True, the positional encoding is computed for all features.
- If `encode_all` is False, the positional encoding is applied only to the first
feature, such as time, while other features remain unchanged.
"""
def __init__(self, nr_frequencies, encode_all=True, base_freq=2 * np.pi):
super(PositionalEncoding, self).__init__()
Expand Down
7 changes: 0 additions & 7 deletions dingo/core/samplers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ class Sampler(object):
This is intended for use either as a standalone sampler, or as a sampler producing
initial sample points for a GNPE sampler.

Methods
-------
run_sampler
log_prob
to_result
to_hdf5

Attributes
----------
model : BasePosteriorModel
Expand Down
7 changes: 7 additions & 0 deletions docs/source/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/.quarto/
**/*.quarto_ipynb

# Rendered site + quartodoc-generated API reference
/_site/
/reference/
/objects.json
Loading