diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -1,3 +1,22 @@ # Neural ODE --- + A C implementation of [Neural Ordinary Differential Equations by Chen et al. (2018)](https://arxiv.org/abs/1806.07366) + +## Build + +```bash +gcc -O2 -Wall -Wextra -o neural_ode neural_ode.c +``` + +## Run +```bash +./neural_ode +``` + + + + + + + |