Introduktion till djupinlärning med PyTorch
Jasmin Ludolf
Senior Data Science Content Developer, DataCamp
$$

$$

Sigmoid-funktionen:
Gradienter:
$$
Softmax-funktionen drabbas också av mättnad

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

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

Introduktion till djupinlärning med PyTorch