Implementation of backpropagation algorithm in Python, developed for evaluation in Artificial Neural Networks class (2019.4).
- Implement backpropagation algorithm in any language (used Python).
- Plot Mean Square Error evolution graph for all the interactions/epochs.
- Plot Desired x Obtained Output graph.
- It must be possible to change the number of neurons in the hidden layer (use only one hidden layer).
- The values of sinaptic weights of the outputs must be printed at the end of training stage.
- The network must be used in an aplication.