멋쟁이사자처럼 X K-DIGITAL Training - 07.16
합성곱 신경망 (Convolutional Neural Network, CNN)
이미지 데이터 처리를 위한 패턴을 찾는데 사용
▷ 예시 코드
build model
model = models.Sequential()
model.add(layers.Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)))
model.add(layers.MaxPooling2D((2, 2)))
model.add(layers.Conv2D(64, (3, 3), activation='relu'))
model.add(layers.MaxPooling2D((2, 2)))
model.add(layers.Conv2D(64, (3, 3), activation='relu'))
model.add(layers.Flatten()) # 레이어 펼침
# input -> output
model.add(layers.Dense(64, activation='relu')) # activation=tf.nn.relu
model.add(layers.Dense(10, activation='softmax')) # activation=tf.nn.softmax
[K-DIGITAL] Django 실습과 pythonanywhere 배포(2) 서비스 배포 (0) | 2021.08.03 |
---|---|
[K-DIGITAL] Django 실습과 pythonanywhere 배포(1) 웹 프로젝트 (0) | 2021.08.02 |
[K-DIGITAL] 세미프로젝트3. 딥러닝을 활용한 주차 수요 예측 (0) | 2021.07.26 |
[K-DIGITAL] sklearn / tf 모델 저장 & Keras Callbacks API (0) | 2021.07.16 |
[K-DIGITAL] 딥러닝 Tensorflow2.x 실습 - MNIST (0) | 2021.07.16 |
댓글 영역