PyTorch Implementation of Differentiable SDE Solvers 
This library provides stochastic differential equation (SDE) solvers with GPU support and efficient backpropagation.
Installation
pip install torchsde
Requirements: Python >=3.6 and PyTorch >=1.6.0.
Documentation
Available here.
Examples
Quick example
import paddle
import paddlesde
batch_size, state_size, brownian_size = 32, 3, 2
t_size = 20
class SDE(paddle.nn.Layer):
noise_type = 'general'
sde_type = 'ito'
def __init__(self):
super().__init__()
self.mu = paddle.nn.Linear(state_size,
state_size)
self.sigma = paddle.nn.Linear(state_size,
state_size * brownian_size)
# Drift
def f(self, t, y):
return self.mu(y) # shape (batch_size, state_size)
# Diffusion
def g(self, t, y):
return self.sigma(y).reshape([batch_size,
state_size,
brownian_size])
sde = SDE()
y0 = paddle.full((batch_size, state_size), 0.1)
ts = paddle.linspace(0, 1, t_size)
# Initial state y0, the SDE is solved over the interval [ts[0], ts[-1]].
# ys will have shape (t_size, batch_size, state_size)
ys = paddlesde.sdeint(sde, y0, ts)
Notebook
examples/demo.ipynb gives a short guide on how to solve SDEs, including subtle points such as fixing the randomness in the solver and the choice of noise types.
Latent SDE
examples/latent_sde.py learns a latent stochastic differential equation, as in Section 5 of [1].
The example fits an SDE to data, whilst regularizing it to be like an Ornstein-Uhlenbeck prior process.
The model can be loosely viewed as a variational autoencoder with its prior and approximate posterior being SDEs. This example can be run via
python -m examples.latent_sde --train-dir <TRAIN_DIR>
The program outputs figures to the path specified by <TRAIN_DIR>.
Training should stabilize after 500 iterations with the default hyperparameters.
Neural SDEs as GANs
examples/sde_gan.py learns an SDE as a GAN, as in [2], [3]. The example trains an SDE as the generator of a GAN, whilst using a neural CDE [4] as the discriminator. This example can be run via
python -m examples.sde_gan
Citation
If you found this codebase useful in your research, please consider citing either or both of:
@article{li2020scalable,
title={Scalable gradients for stochastic differential equations},
author={Li, Xuechen and Wong, Ting-Kam Leonard and Chen, Ricky T. Q. and Duvenaud, David},
journal={International Conference on Artificial Intelligence and Statistics},
year={2020}
}
@article{kidger2021neuralsde,
title={Neural {SDE}s as {I}nfinite-{D}imensional {GAN}s},
author={Kidger, Patrick and Foster, James and Li, Xuechen and Oberhauser, Harald and Lyons, Terry},
journal={International Conference on Machine Learning},
year={2021}
}
References
[1] Xuechen Li, Ting-Kam Leonard Wong, Ricky T. Q. Chen, David Duvenaud. "Scalable Gradients for Stochastic Differential Equations". International Conference on Artificial Intelligence and Statistics. 2020. [arXiv]
[2] Patrick Kidger, James Foster, Xuechen Li, Harald Oberhauser, Terry Lyons. "Neural SDEs as Infinite-Dimensional GANs". International Conference on Machine Learning 2021. [arXiv]
[3] Patrick Kidger, James Foster, Xuechen Li, Terry Lyons. "Efficient and Accurate Gradients for Neural SDEs". 2021. [arXiv]
[4] Patrick Kidger, James Morrill, James Foster, Terry Lyons, "Neural Controlled Differential Equations for Irregular Time Series". Neural Information Processing Systems 2020. [arXiv]
This is a research project, not an official Google product.
Release files for paddlesde 0.2.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| paddlesde-0.2.5.tar.gz | 42.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| paddlesde-0.2.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 103.7 kB
Release files / paddlesde-0.2.5.tar.gz
| Download URL | paddlesde-0.2.5.tar.gz |
|---|---|
| Size | 42.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
efbf9d57ff31324af1f6fefa2a204ed9b527ced83b38b471f013559439ee0156
|
|
BLAKE2b-256 checksum How to use checksums |
3430c1b4904a772b2661078ee99858511331902c9efd2219f0a22a7bf5830cef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.10
|
Release files / paddlesde-0.2.5-py3-none-any.whl
| Download URL | paddlesde-0.2.5-py3-none-any.whl |
|---|---|
| Size | 61.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
beb6d10d462864bfcf655cd72228a87705b44fb17f2cc8d8d29557681f64fd40
|
|
BLAKE2b-256 checksum How to use checksums |
e94ce16aa5e37112f2e78b92ce39adf914d28d639fb881e552ddfffd8510438e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.10
|