
AutoEncoder #1
·
Bootcamp_zerobase/Image Augmentation
2025.03.08Chapter 7. Autoencoders, Image Augmentation50. 오토 인코더 인코더와 디코더, 잠재변수오토인코더는 입력과 출력이 동일하다.자기 자신을 재생성하는 네트워크Latent Vector : 잠재변수. Encoder : 입력쪽, Decoder : 출력쪽.인코더는 일종의 특징추출기 같은 역할디코더는 압축된 데이터를 다시 복원하는 역할 MNIST 데이터Tensorflow.datasets에 저장되어 있는 MNIST 데이터셋 호출import tensorflow as tfimport numpy as np(train_X, train_y), (test_X, test_y) = tf.keras.datasets.mnist.load_data()train_X = train_X..