Skip to content

Commit

Permalink
fix: Sphinx deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
samholt committed Dec 28, 2024
1 parent 8d2bd84 commit 1e16192
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
8 changes: 4 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
furo==2021.11.16
furo
ipykernel
nbsphinx==0.8.9
sphinx-panels==0.6.0
sphinx-rtd-theme==1.0.0
nbsphinx
sphinx-panels
sphinx-rtd-theme
torchlaplace
6 changes: 0 additions & 6 deletions torchlaplace/inverse_laplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
different numerical algorithms. Each class provides methods to compute the
ILT and evaluate the Laplace representation at specific points.
Example:
```
decoder = FixedTablot(ilt_reconstruction_terms=33).to(device)
print(f"FixedTablot Loss: {np.sqrt(torch.nn.MSELoss()(ft(t),
f_hat_t).cpu().numpy())}")
```
"""
###########################
# Neural Laplace: Learning diverse classes of differential equations in the
Expand Down
12 changes: 6 additions & 6 deletions torchlaplace/transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
Functions:
- spherical_riemann_to_complex: Converts spherical Riemann stereographic
projection coordinates to complex number coordinates.
projection coordinates to complex number coordinates.
- complex_to_spherical_riemann: Converts complex number coordinates to
spherical Riemann stereographic projection coordinates.
spherical Riemann stereographic projection coordinates.
- spherical_to_complex: Converts spherical Riemann stereographic projection
coordinates to complex number coordinates, maintaining the shape of the input
tensor.
coordinates to complex number coordinates, maintaining the shape of the input
tensor.
- complex_to_spherical: Converts complex number coordinates to spherical
Riemann stereographic projection coordinates, maintaining the shape of the
input tensor.
Riemann stereographic projection coordinates, maintaining the shape of the
input tensor.
The transformations are based on the mathematical mappings between the Riemann
sphere and the complex plane.
Expand Down

0 comments on commit 1e16192

Please sign in to comment.