🔮 Output PredictionAI AI & ML Medium⚡+20 XP
Activation Function
What does ReLU return for input -3?
AI & ML
# ReLU(x) = max(0, x) import numpy as np print(np.maximum(0, -3))
What does ReLU return for input -3?
# ReLU(x) = max(0, x) import numpy as np print(np.maximum(0, -3))