Variations in simple ANN:

  1. Simple feed-forward back-propagation ANN with sum neurons c - codes (ANN_sigma.c)
  2. Feed-forward back-propagation ANN with Product neurons c - codes (ANN_pi.c)
  3. Feed-forward back-propagation ANN with Sigma at hidden layer –Product at output layer neurons c - codes (ANN_sigma_pi.c)
  4. Feed-forward back-propagation ANN with Product at hidden layer– Sigma at output layer neurons c - codes (ANN _pi_sigma.c)
  5. Feed-forward back-propagation ANN with Product neurons with Gaussian Threshold function c - codes (ANN_pi_gaus.c)
  6. Feed-forward back-propagation ANN with Product neurons with tangent hyperbolic Threshold function c - codes (ANN_pi_tanh.c)
  7. Feed-forward back-propagation ANN with summation neurons with Gaussian function at hidden and linear at output c - codes (ANN_sigma_gaus_lin.c)
  8. Feed-forward back-propagation ANN with summation neurons with sigmoidal function at hidden and linear at output c - codes (ANN_sigma_sig_lin.c)
  9. Feed-forward back-propagation ANN with summation neurons with tanh function at hidden and linear at output c - codes (ANN_sigma_tanh_lin.c)
  10. Feed-forward back-propagation ANN with summation neurons with guassian function c - codes (ANN_sigma_gaus.c)