RBM
์์ ์ด๊ธฐํ (Zeros. Ones, Constant)
class Constant: Initializer that generates tensors with constant values
class Ones: Initializer that generates tensors initialized to 1.
class Zeros: Initializer that generates tensors initialized to 0.
class VarianceScaling: Initializer capable of adapting its scale to the shape of weights tensors.
์ ํ ์ด๊ธฐํ (Orthogonal, Identity)
class Orthogonal: Initializer that generates an orthogonal matrix.
class Identity: Initializer that generates the identity matrix.
ํ๋ฅ ๋ถํฌ ์ด๊ธฐํ (RandomUniform, RandomNormal, TruncatedNormal)
class RandomNormal: Initializer that generates tensors with a normal distribution.
class RandomUniform: Initializer that generates tensors with a uniform distribution.
class TruncatedNormal: Initializer that generates a truncated normal distribution.
์๋น์๋ฅด ์ด๊ธฐํ (GlorotNormal, GlorotUniform)
Sigmoid, Tanh : Xavier initialization
class GlorotNormal: The Glorot normal initializer, also called Xavier normal initializer.
class GlorotUniform: The Glorot uniform initializer, also called Xavier uniform initializer.
He (Kaming He) ์ด๊ธฐํ (HeNormal, HeUniform)
ReLU : He initialization
class HeNormal: He normal initializer.
class HeUniform: He uniform variance scaling initializer.
Lecun ์ด๊ธฐํ (LecunNormal, LecunUniform)
class LecunNormal: Lecun normal initializer.
class LecunUniform: Lecun uniform initializer.
# LeCun์ LeNet์ ์ฐฝ์์์ด๋ฉฐ, CNN์ ๊ณ ์ํ๋ค. LeCun์ ์ญ์ ํ ๋ ผ๋ฌธ์์ ์ ๊ท๋ถํฌ๋ฅผ ๋ฐ๋ฅด๋ ๋ฐฉ๋ฒ๊ณผ ๊ท ๋ฑ๋ถํฌ๋ฅผ ๋ฐ๋ฅด๋ ๋๊ฐ์ง ๋ฐฉ๋ฒ์ ๋ํด์ ์๊ฐํ์๋ค.
'๐พ Deep Learning' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Transformer] Self-Attension ์ ํ ์ดํ ์ (0) (0) | 2021.02.19 |
---|---|
VAE(Variational Autoencoder) (3) MNIST (0) | 2021.02.18 |
VAE(Variational Autoencoder) (2) (0) | 2021.02.18 |
VAE(Variational Autoencoder) (1) (0) | 2021.02.18 |
nvidia-smi ์ต์ (0) | 2021.02.16 |