#TF Logistic Regression in TensorFlow
In this post we will see how to implement Logistic Regression in TensorFlow. Let’s generate a dataset using random values. It’s very crucial to check the size of your array. Let’s split our dataset into a train and test set. For the training set 80% of the original dataset would be used, while the remaining 20% would be used for testing. Let’s set the parameters which would be used in training our model. Now, let’s…
Read more