PyTorch로 배우는 딥러닝 입문
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로 배우는 딥러닝 입문