aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authory-jan137 <yousefjan24000@gmail.com>2026-03-18 11:44:05 +0300
committery-jan137 <yousefjan24000@gmail.com>2026-03-18 11:44:05 +0300
commit161352cf4504c2113ad148ce5b5917a5bed36c06 (patch)
treef5c30d3893e5d68f8830a01d947577d0759062eb /README.md
parent00cd5b38f26e40fbb0dd21e9682e9a9580fe3e78 (diff)
Add continuous normalizing flow
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2c819c8..178efd1 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ A implementation of [Neural Ordinary Differential Equations by Chen et al. (2018
## Build
```bash
-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
+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/cnf.c src/cnf_train.c src/test_cnf.c src/main.c -lm -o neural_ode
```
## Run