Skip to main content
🔮 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 is the output?