We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
H = sigmoid(np.dot(X,theta)) J = (1/m)*sum((np.dot(-y,np.log(H)))-np.dot((1-y),np.log(1-H))) grad = (1/m)*sum(np.dot(X,(H-y)))
The text was updated successfully, but these errors were encountered:
I keep getting this error(TypeError: 'numpy.float64' object is not iterable). someone help me out
Sorry, something went wrong.
No branches or pull requests
H = sigmoid(np.dot(X,theta))
J = (1/m)*sum((np.dot(-y,np.log(H)))-np.dot((1-y),np.log(1-H)))
grad = (1/m)*sum(np.dot(X,(H-y)))
The text was updated successfully, but these errors were encountered: