Programming Assignment: Logistic Regression with a Neural Network mindset code example
Example 1: Logistic Regression with a Neural Network mindset python example
train_set_x_flatten shape: (12288, 209)
train_set_y shape: (1, 209)
test_set_x_flatten shape: (12288, 50)
test_set_y shape: (1, 50)
sanity check after reshaping: [17 31 56 22 33]
Example 2: Logistic Regression with a Neural Network mindset python example
train_set_x = train_set_x_flatten/255.
test_set_x = test_set_x_flatten/255.