implement Artificial Neural Network on different languages
implement Gradient Descent Feed-forward and Recurrent Neural Network on different languages, only use vector / linear algebra library.
Artificial Neural Network is relatively easy if you really understand it!
Feed-forward Neural Network to predict Iris dataset.
Vanilla Recurrent Neural Network to generate text.
Vanilla Recurrent Neural Network to predict TESLA market.
All implemention like max(), mean(), softmax(), cross_entropy(), sigmoid() are hand-coded, no other libraries.
Will update overtime.
You would not see high accuracy for other languages that natively are not using float64. During backpropagation, the changes are very small, float32 ignored it.