i don\'t know how to fix this I am just a beginner. below is the code
def sigmoid(X, theta): z = np.dot(X, theta[1:]) + theta[0] y =expit(1/1+np.exp(-z)