aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authory-jan137 <yousefjan24000@gmail.com>2026-03-18 09:56:29 +0300
committery-jan137 <yousefjan24000@gmail.com>2026-03-18 09:56:29 +0300
commit00cd5b38f26e40fbb0dd21e9682e9a9580fe3e78 (patch)
treead7000988a837bd3d141017e65cfa946f57a911d /README.md
parent4659574b206eda0178fb1d92a43c3e843c23ca36 (diff)
Reformat
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index 52440a9..2c819c8 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,10 @@
# Neural ODE
----
-A C implementation of [Neural Ordinary Differential Equations by Chen et al. (2018)](https://arxiv.org/abs/1806.07366)
+A implementation of [Neural Ordinary Differential Equations by Chen et al. (2018)](https://arxiv.org/abs/1806.07366) in C.
## Build
-
```bash
-gcc -O2 -Wall -Wextra -o neural_ode neural_ode.c
+cc -O2 -Wall -Wextra -Iinclude src/utils.c src/dynmlp.c src/ode_solver.c src/adjoint.c src/adam.c src/train.c src/spiral.c src/tests.c src/main.c -lm -o neural_ode
```
## Run