TensorFlow-Examples
TensorFlow-Examples copied to clipboard
nueral_network forward propagation no activation
in neural_network_raw, the forward propagation function neural_net(x), layer_1 = Wx+b, but there is no activation sigmoid(layer_1), this will bring some problems.
yes, it is surprising how can this NN work without activation functions
Well, its accuracy is same as logistic regression. Adding activation makes it much more accurate.