October 13, 2020
Building a Neural Network from scratch
Objective: The goal here is to deal with the XOr classification problem that can’t be solved with classical logistic regression models. The XOr, or “exclusive or” problem is a classic problem that can be solved with Artificial Neural Network to predict the outputs of XOr logic gates given two binary inputs. The XOr function returns a true value if the two inputs are not equal and a false value if they are equal.
I will apply a such ANN built from scratch to a custom dataset generated for XOr binary classification.
Read more