# K An implementation of a Shallow Neural Network in Keras – Moons dataset
In this post we will learn how to make classification of Moons dataset with a shallow neural network implemented in Keras. With the following code we are going to import all libraries that we will need. First, we will generate a random dataset, then we will split it into train and test set. We will also print dimensions of these datasets. With the following code we will make a shallow neural network. Our shallow neural…
Read more