Introduction to Deep Learning with PyTorch
Jasmin Ludolf
Senior Data Science Content Developer, DataCamp
$$

$$

Funkce sigmoid:
Gradienty:
$$
Funkce softmax trpí také saturací

Rektifikovaná lineární jednotka (ReLU):
f(x) = max(x, 0)$$
V PyTorchi:
relu = nn.ReLU()

Leaky ReLU:
$$
V PyTorchi:
leaky_relu = nn.LeakyReLU(
negative_slope = 0.05)

Introduction to Deep Learning with PyTorch