I came across these lines of code in machine learning using python.
z = np.linspace(-10, 10, 100)
# Compute sigmoid Activation function
A_sigmoid, z = sigmoid(z)
Please, what is line three saying? Basically, I want to know how to separate 2 inputs with a comma on the lefthand side. A_sigmoid was never predefined.
Thank you.
z = np.linspace(-10, 10, 100)
# Compute sigmoid Activation function
A_sigmoid, z = sigmoid(z)