Skip to content

Commit 063a74e

Browse files
committed
Add CNN to the list of examples
1 parent d090199 commit 063a74e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,13 @@ to run the tests.
173173
The easiest way to get a sense of how to use neural-fortran is to look at
174174
examples, in increasing level of complexity:
175175

176-
1. [simple](example/simple.f90): Approximating a simple, constant data relationship
176+
1. [simple](example/simple.f90): Approximating a simple, constant data
177+
relationship
177178
2. [sine](example/sine.f90): Approximating a sine function
178-
3. [mnist](example/mnist.f90): Hand-written digit recognition using the MNIST dataset
179+
3. [mnist](example/mnist.f90): Hand-written digit recognition using the MNIST
180+
dataset
181+
4. [cnn](example/cnn.f90): Creating and running forward a simple CNN using
182+
`input`, `conv2d`, `maxpool2d`, `flatten`, and `dense` layers.
179183

180184
The examples also show you the extent of the public API that's meant to be
181185
used in applications, i.e. anything from the `nf` module.

0 commit comments

Comments
 (0)