AI / ML Path

Neural Networks

10 questions

Question 1 of 10Score: 0 / 0

What is the output of the following? import numpy as np def sigmoid(x): return 1 / (1 + np.exp(-x)) print(round(sigmoid(0), 2))