Generative Deep Learning-미술관에 GAN 딥러닝 실전 프로젝트: CH02 딥러닝
2.1 정형 데이터와 비정형 데이터 2.2 심층 신경망 2.2.1 케라스와 텐서플로 2.3 첫 번째 심층 신경망 2.3.1 데이터 적재 2.3.2 모델 만들기 from keras.layers import Input, Flatten, Dense from keras.models import Model input_layer = Input(shape=(32,32, 3)) x = Flatten()(input_layer) x = Dense(units=200, activation = 'relu')(x) x = Dense(units=150, activation = 'relu')(x) output_layer = Dense(units=10, activation = 'softmax')(x) model = Model(inpu..