Building a deep neural network using TensorFlow 1.x for binary classification.
- The dataset has two features('feature1' and 'feature2') and one target variable.
- The target variable(named as 'class') maps each record to either 0 or 1.
- We'll first check if data is Linearly separable or not
- We'll then check the performance of Logistic Regression.
- Then We'll be building a deep neural network using tensorflow for binary classification.