PyTorchで学ぶIntroduction to Deep Learning
Jasmin Ludolf
Senior Data Science Content Developer, DataCamp
$$

$$

シグモイド関数:
勾配:
$$
ソフトマックスも飽和の影響を受ける

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で学ぶIntroduction to Deep Learning