Artificial neural network project for Machine Learning (CAP5610)
- Clone the repository.
- Run
python iris.py
Below are the files of importance within the project.
/iris
|- basket.py - a helper script
|- iris.data - the Iris datset
+- iris.py - the entry point for the ANN
Below is the algorithm for training the artificial neural network.
- Find the weighted sum.
- Apply the sigmoid function (where x = S computed above).
- Compute the error gradient (where d is the desired value).
- Update the weights.