Introductie tot Deep Learning met PyTorch
Jasmin Ludolf
Senior Data Science Content Developer, DataCamp
$$

$$

Sigmoid-functie:
Gradiënten:
$$
De softmaxfunctie lijdt ook aan verzadiging

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

Leaky ReLU:
$$
In PyTorch:
leaky_relu = nn.LeakyReLU(
negative_slope = 0.05)

Introductie tot Deep Learning met PyTorch