Simple digits recognition with convolutional neural network on JavaScript

In previous article – https://blog.wepdim.com/2022/07/simple-digits-recognition-with-javascript/ we learned how to deal with basic deep neural networks to recognize simple digits symbols. This time we take a look on convolutional neural networks(CNN) doing the same task also using TensorflowJs. Code on Github at the same place – https://github.com/webdim0/dnn_basic_imgrec. CNN – is a special type of DNN which… Continue reading Simple digits recognition with convolutional neural network on JavaScript

Simple digits recognition with JavaScript

In this article I will describe a small project to get familiar with deep neural networks(DNN) basics using JavaScript. Code on Github – https://github.com/webdim0/dnn_basic_imgrec. The programming language for machine learning today of course is Python, but without knowledge of this great language yet I found some great solutions written with JS to get started to… Continue reading Simple digits recognition with JavaScript