MACHINE LEARNING

APPLICATION OF SUPERVISED LEARNING

NEURAL NETWORK

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which Numpy function returns e to the power of the input (numpy is np here).
A
np.exp()
B
np.zero()
C
np.maximum()
D
np.sum()
E
np.dot()
Explanation: 

Detailed explanation-1: -What is NumPy? NumPy is a Python library used for working with arrays. It also has functions for working in domain of linear algebra, fourier transform, and matrices. NumPy was created in 2005 by Travis Oliphant.

Detailed explanation-2: -Essentially, the math. exp() function only works on scalar values, whereas np. exp() can operate on arrays of values.

There is 1 question to complete.