250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 알고리즘
- 운영체제
- shell
- 공부
- 쉘
- 백준알고리즘
- 리눅스
- OpenCV
- 코딩
- 회귀
- C언어
- error
- c
- 턱걸이
- C++
- TensorFlow
- 학습
- 프로세스
- 딥러닝
- Computer Vision
- python
- 프로그래밍
- Windows10
- CV
- 백준
- 영상처리
- linux
- 시스템프로그래밍
- Windows 10
- 텐서플로우
Archives
- Today
- Total
줘이리의 인생적기
[tensorflow 23] Fashion MNIST03 본문
728x90
정확도를 좀 더 올리기 위해, 과적합을 막기 위해 MaxPooling 레이어와 Dropout레이어를 추가해보도록 하겠습니다.
레이어 추가 부분을 주의하여 봐주세요.
import tensorflow as tf
import matplotlib.pyplot as plt
fashion_mnist = tf.keras.datasets.fashion_mnist
(train_X, train_Y), (test_X, test_Y) = fashion_mnist.load_data()
train_X = train_X / 255.0
test_X = test_X / 255.0
# print("reshape 이전 => ", train_X.shape, test_X.shape)
train_X = train_X.reshape(-1, 28, 28, 1)
test_X = test_X.reshape(-1, 28, 28, 1)
# print("reshape 이후 => ", train_X.shape, test_X.shape)
#모델 생성
model = tf.keras.Sequential([
tf.keras.layers.Conv2D(input_shape=(28,28,1), kernel_size=(3,3), filters=32),
tf.keras.layers.MaxPool2D(strides=(2,2)),
tf.keras.layers.Conv2D(kernel_size=(3,3), filters=64),
tf.keras.layers.MaxPool2D(strides=(2,2)),
tf.keras.layers.Conv2D(kernel_size=(3,3), filters=128),
tf.keras.layers.Flatten(),
tf.keras.layers.Dense(units=128, activation='relu'),
tf.keras.layers.Dropout(rate=0.3),
tf.keras.layers.Dense(units=10, activation='softmax')
])
model.compile(optimizer=tf.keras.optimizers.Adam(),
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
history = model.fit(train_X, train_Y, epochs=25, validation_split=0.25)
#loss 시각화
plt.figure(figsize=(12, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['loss'], 'b-', label='loss')
plt.plot(history.history['val_loss'], 'r--', label='val_loss')
plt.xlabel('Epoch')
plt.legend()
plt.subplot(1, 2, 2)
plt.plot(history.history['accuracy'], 'g-', label='accuracy')
plt.plot(history.history['val_accuracy'], 'k--', label='val_accuracy')
plt.xlabel('Epoch')
plt.ylim(0.7, 1)
plt.legend()
plt.show()
result = model.evaluate(test_X, test_Y, verbose=0)
print(result)
오 두가지의 레이어를 배치함으로써 89.1퍼센트의 정확도를 가지게 되었습니다.
어떻게 해야 90%, 95%를 넘길 수 있을까요?
'공부 > tensorflow' 카테고리의 다른 글
[tensorflow 25] Fashion MNIST05 (0) | 2021.08.09 |
---|---|
[tensorflow 24] Fashion MNIST04 (0) | 2021.05.27 |
[tensorflow 22] Fashion MNIST02 (0) | 2021.05.25 |
[tensorflow 21] 레이어 (0) | 2021.05.24 |
[tensorflow 20] CNN - 특징 추출 (0) | 2021.05.21 |