Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add a description for Hybrid AutoODE #165

Merged
merged 5 commits into from
Dec 17, 2021
Merged
Changes from all commits
Commits
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
13 changes: 13 additions & 0 deletions website/docs/physics-guided-deep-sequence-models/hybrid-autoode.md
Original file line number Diff line number Diff line change
@@ -2,3 +2,16 @@
title: Hybrid AutoODE
slug: /hybrid-autoode
---

Assume the time series $x_t \in \mathbb{R}^d$ is governed by unknown differential equations and by other unknown factors that could affect its trajectory. The Hybrid AutoODE uses physics-guided models in conjunction with neural networks to improve the prediction of $x_t$. It is modelled by the following equations:

$$
\begin{aligned}
&\frac{dx}{dt} = f_\theta(t, x, u, F) \\
&\frac{du}{dt} = g_\theta(t, x, u, F) \\
&x(t_0) = x_0 \\
&u(t_0) = u_0
\end{aligned}
$$

where $u \in \mathbb{R}^p$ are the unobserved variables and $F$ is a neural network. The Hybrid AutoODE uses auto-differentiation to estimate the parameters $\theta$ of the equations and the neural network.