From 0bb65913229d86ac4fb26ca29091d5e872005cae Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Mon, 14 Mar 2016 12:25:08 -0500 Subject: [PATCH] Linked to examples. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c461379..7fefb42 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ necessary functions and little extra. Four example programs are included with the source code. -- `example1.c` - Trains an ANN on the XOR function using backpropagation. -- `example2.c` - Trains an ANN on the XOR function using random search. -- `example3.c` - Loads and runs an ANN from a file. -- `example4.c` - Trains an ANN on the [IRIS data-set](https://archive.ics.uci.edu/ml/datasets/Iris) using backpropagation. +- [`example1.c`](./example1.c) - Trains an ANN on the XOR function using backpropagation. +- [`example2.c`](./example2.c) - Trains an ANN on the XOR function using random search. +- [`example3.c`](./example3.c) - Loads and runs an ANN from a file. +- [`example4.c`](./example4.c) - Trains an ANN on the [IRIS data-set](https://archive.ics.uci.edu/ml/datasets/Iris) using backpropagation. ##Quick Example