PyTorch के साथ Deep Learning परिचय
Jasmin Ludolf
Senior Data Science Content Developer, DataCamp
$$

$$

Sigmoid फंक्शन:
Gradients:
$$
Softmax फंक्शन भी saturation से प्रभावित होता है

Rectified Linear Unit (ReLU):
f(x) = max(x, 0)$$
PyTorch में:
relu = nn.ReLU()

Leaky ReLU:
$$
PyTorch में:
leaky_relu = nn.LeakyReLU(
negative_slope = 0.05)

PyTorch के साथ Deep Learning परिचय