Real time Sign to Text (Eng Sign Lang.)
[Data Information]
Data Source : https://www.kaggle.com/datasets/datamunge/sign-language-mnist
Raw Data Type : csv, jpg, HEIC
[Data]
Train csv : (27455, 785)
Test csv : (7172, 785)
[Version]
0. Library Call
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
import os
import glob
import warnings
warnings.filterwarnings("ignore")
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import cv2
import splitfolders
from PIL import Image, ImageDraw
import pillow_heif
import tkinter as tk
import operator
from sklearn.preprocessing import LabelBinarizer
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score, classification_report
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, Conv2D, MaxPool2D, Flatten, Dropout, BatchNormalization
from tensorflow.keras.callbacks import EarlyStopping, ReduceLROnPlateau
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from cvzone.HandTrackingModule import HandDetector
from cvzone.ClassificationModule import Classifier
1. Data Load
1
2
3
4
train = pd.read_csv("./eng_sign/sign_mnist_train.csv")
test = pd.read_csv("./eng_sign/sign_mnist_test.csv")
train.shape, test.shape
1
((27455, 785), (7172, 785))
1
2
display(train.sample(3))
display(test.sample(3))
label | pixel1 | pixel2 | pixel3 | pixel4 | pixel5 | pixel6 | pixel7 | pixel8 | pixel9 | ... | pixel775 | pixel776 | pixel777 | pixel778 | pixel779 | pixel780 | pixel781 | pixel782 | pixel783 | pixel784 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2227 | 5 | 143 | 147 | 153 | 159 | 163 | 166 | 170 | 171 | 173 | ... | 107 | 99 | 100 | 100 | 99 | 96 | 112 | 206 | 221 | 205 |
15930 | 4 | 160 | 160 | 159 | 161 | 161 | 161 | 160 | 159 | 159 | ... | 185 | 188 | 188 | 185 | 184 | 184 | 182 | 180 | 179 | 177 |
4648 | 13 | 221 | 221 | 221 | 222 | 223 | 224 | 225 | 224 | 224 | ... | 164 | 197 | 132 | 111 | 86 | 231 | 255 | 232 | 253 | 255 |
3 rows × 785 columns
label | pixel1 | pixel2 | pixel3 | pixel4 | pixel5 | pixel6 | pixel7 | pixel8 | pixel9 | ... | pixel775 | pixel776 | pixel777 | pixel778 | pixel779 | pixel780 | pixel781 | pixel782 | pixel783 | pixel784 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3840 | 24 | 157 | 159 | 162 | 162 | 163 | 164 | 165 | 165 | 166 | ... | 193 | 192 | 189 | 189 | 188 | 187 | 186 | 185 | 183 | 181 |
2611 | 4 | 179 | 181 | 181 | 182 | 184 | 185 | 187 | 188 | 187 | ... | 93 | 75 | 124 | 214 | 218 | 218 | 218 | 217 | 216 | 216 |
942 | 12 | 96 | 101 | 108 | 116 | 134 | 150 | 159 | 167 | 174 | ... | 115 | 94 | 217 | 250 | 244 | 248 | 249 | 250 | 251 | 251 |
3 rows × 785 columns
Label
1
2
labels = train["label"].values
unique_val = np.array(labels)
1
np.unique(unique_val)
1
2
array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24], dtype=int64)
J와 Z는 해당 데이터셋에 존재하지 않음
2. Data Distribution
1
_ = sns.countplot(x=labels)
1
2
3
4
plt.figure(figsize=(12, 12))
for idx in range(25):
plt.subplot(5, 5, idx+1)
plt.imshow(imgs[idx].reshape(28, 28))
1
2
3
4
5
6
7
8
9
# # openCV로 확인
# for idx in range(25):
# rand = np.random.randint(0, len(imgs))
# sample_img = imgs[rand]
# sample_img = sample_img.reshape(28, 28).astype(np.uint8)
# sample_img = cv2.resize(sample_img, None, fx=10, fy=10, interpolation=cv2.INTER_CUBIC)
# cv2.imshow("Sample", sample_img)
# cv2.waitKey(0)
# cv2.destroyAllWindows()
3. Data Preprocessing
1
train.drop(columns="label", axis=1, inplace=True)
1
2
3
imgs = train.values
imgs = np.array([np.reshape(i, (28, 28)) for i in imgs]) # 28 by 28로 사이즈 변경
imgs = np.array([i.flatten() for i in imgs])
1
2
3
# 라벨 인코딩
label_binrizer = LabelBinarizer()
labels = label_binrizer.fit_transform(labels)
4. Data Preprocessing
1
2
3
x_train, x_test, y_train, y_test = train_test_split(imgs, labels, test_size=0.2)
print(f"x_train: {x_train.shape}\ny_train: {y_train.shape}\nx_test: {x_test.shape}\ny_test: {y_test.shape}")
1
2
3
4
x_train: (21964, 784)
y_train: (21964, 24)
x_test: (5491, 784)
y_test: (5491, 24)
1
2
x_train = x_train/255
x_test = x_test/255
5. Convolutional Modeling
1
2
x_train = x_train.reshape(x_train.shape[0], 28, 28, 1)
x_test = x_test.reshape(x_test.shape[0], 28, 28, 1)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 데이터 증강
# datagen = ImageDataGenerator(
# featurewise_center=False, # set input mean to 0 over the dataset
# samplewise_center=False, # set each sample mean to 0
# featurewise_std_normalization=False, # divide inputs by std of the dataset
# samplewise_std_normalization=False, # divide each input by its std
# zca_whitening=False, # apply ZCA whitening
# # rotation_range=10, # randomly rotate images in the range (degrees, 0 to 180)
# zoom_range = 0.1, # Randomly zoom image
# width_shift_range=0.1, # randomly shift images horizontally (fraction of total width)
# height_shift_range=0.1, # randomly shift images vertically (fraction of total height)
# # horizontal_flip=False, # randomly flip images
# # vertical_flip=False # randomly flip images
# )
# datagen.fit(x_train)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
model=Sequential()
model.add(Conv2D(128,kernel_size=(5,5),
strides=1,padding='same',activation='relu',input_shape=(28,28,1)))
model.add(MaxPool2D(pool_size=(3,3),strides=2,padding='same'))
model.add(Conv2D(64,kernel_size=(2,2),
strides=1,activation='relu',padding='same'))
model.add(MaxPool2D((2,2),2,padding='same'))
model.add(Conv2D(32,kernel_size=(2,2),
strides=1,activation='relu',padding='same'))
model.add(MaxPool2D((2,2),2,padding='same'))
model.add(Flatten())
model.add(Dense(units=512,activation='relu'))
model.add(Dropout(rate=0.25))
model.add(Dense(units=24,activation='softmax'))
1
2
3
4
5
model.compile(
optimizer="adam",
loss = tf.keras.losses.CategoricalCrossentropy(),
metrics=["accuracy"]
)
1
# model.summary()
1
2
early_stopping = EarlyStopping(monitor="val_accuracy", mode="max", verbose=0, patience=10)
learning_rate_reduction = ReduceLROnPlateau(monitor='val_accuracy', patience=2, verbose=1, factor=0.5, min_lr=0.00001)
1
2
# with tf.device("/device:GPU:0"):
# history = model.fit(datagen.flow(x_train, y_train, batch_size=200), epochs=50, validation_data=(x_test, y_test), callbacks=[early_stopping, learning_rate_reduction], verbose=1)
1
2
with tf.device("/device:GPU:0"):
history = model.fit(x_train, y_train, validation_data=(x_test, y_test), epochs=50, batch_size=128, verbose=1, callbacks=[early_stopping])
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
31
32
Epoch 1/50
172/172 [==============================] - 6s 16ms/step - loss: 1.8222 - accuracy: 0.4408 - val_loss: 0.4805 - val_accuracy: 0.8428
Epoch 2/50
172/172 [==============================] - 5s 28ms/step - loss: 0.2936 - accuracy: 0.9027 - val_loss: 0.0825 - val_accuracy: 0.9831
Epoch 3/50
172/172 [==============================] - 4s 26ms/step - loss: 0.0820 - accuracy: 0.9760 - val_loss: 0.0258 - val_accuracy: 0.9942
Epoch 4/50
172/172 [==============================] - 3s 19ms/step - loss: 0.0360 - accuracy: 0.9902 - val_loss: 0.0071 - val_accuracy: 0.9987
Epoch 5/50
172/172 [==============================] - 4s 22ms/step - loss: 0.0156 - accuracy: 0.9963 - val_loss: 0.0094 - val_accuracy: 0.9978
Epoch 6/50
172/172 [==============================] - 5s 27ms/step - loss: 0.0168 - accuracy: 0.9955 - val_loss: 9.6805e-04 - val_accuracy: 1.0000
Epoch 7/50
172/172 [==============================] - 4s 24ms/step - loss: 0.0117 - accuracy: 0.9970 - val_loss: 0.0013 - val_accuracy: 0.9996
Epoch 8/50
172/172 [==============================] - 4s 22ms/step - loss: 0.0059 - accuracy: 0.9987 - val_loss: 8.3585e-04 - val_accuracy: 1.0000
Epoch 9/50
172/172 [==============================] - 4s 26ms/step - loss: 0.0100 - accuracy: 0.9972 - val_loss: 0.0013 - val_accuracy: 1.0000
Epoch 10/50
172/172 [==============================] - 4s 24ms/step - loss: 0.0079 - accuracy: 0.9980 - val_loss: 0.0012 - val_accuracy: 1.0000
Epoch 11/50
172/172 [==============================] - 4s 23ms/step - loss: 0.0039 - accuracy: 0.9990 - val_loss: 2.6187e-04 - val_accuracy: 1.0000
Epoch 12/50
172/172 [==============================] - 5s 26ms/step - loss: 0.0130 - accuracy: 0.9959 - val_loss: 0.0062 - val_accuracy: 0.9985
Epoch 13/50
172/172 [==============================] - 4s 23ms/step - loss: 0.0140 - accuracy: 0.9959 - val_loss: 0.0015 - val_accuracy: 0.9998
Epoch 14/50
172/172 [==============================] - 5s 26ms/step - loss: 0.0088 - accuracy: 0.9972 - val_loss: 0.0046 - val_accuracy: 0.9987
Epoch 15/50
172/172 [==============================] - 4s 22ms/step - loss: 0.0042 - accuracy: 0.9988 - val_loss: 8.6977e-04 - val_accuracy: 0.9998
Epoch 16/50
172/172 [==============================] - 4s 24ms/step - loss: 7.8023e-04 - accuracy: 0.9999 - val_loss: 6.1924e-05 - val_accuracy: 1.0000
1
model.save("eng_sign_lang_cnn_model.h5")
6. Performance Evaluation
1
2
3
4
df_hist = pd.DataFrame(history.history)
fig, ax = plt.subplots(1, 2, figsize=(15, 5))
_ = df_hist[["loss", "val_loss"]].plot(ax=ax[0])
_ = df_hist[["accuracy", "val_accuracy"]].plot(ax=ax[1])
1
2
3
4
5
6
7
8
9
10
11
12
test_labels = test["label"]
test.drop(columns="label", axis=1, inplace=True)
test_img = test.values
test_img = np.array([np.reshape(i, (28, 28)) for i in test_img])
test_img = np.array([i.flatten() for i in test_img])
test_labels = label_binrizer.transform(test_labels)
test_img = test_img.reshape(test_img.shape[0], 28, 28, 1)
y_pred = model.predict(test_img)
1
accuracy_score(test_labels, y_pred.round())
1
0.9213608477412158
7. Matching func.
1
2
3
4
alpha = [chr(x).upper() for x in range(97, 123)]
alpha.remove("J")
alpha.remove("Z")
idx = [x for x in range(0, 24)]
1
2
3
4
5
6
7
def convert_letter(result):
classLabels = {idx:c for idx, c in zip(idx, alpha)}
try:
res = int(result)
return classLabels[res]
except:
return "err"
1
convert_letter(np.argmax(model.predict(test_img[4].reshape(1, 28, 28, 1))))
8. Real Time
데이터 수집
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cap = cv2.VideoCapture(0)
detector = HandDetector(maxHands=1)
offset = 20
imgSize =300
folder = "Data/Y"
counter = 0
while True:
try:
ret, img = cap.read()
hands, img = detector.findHands(img)
if hands:
hand = hands[0]
x, y, w, h = hand["bbox"]
imgWhite = np.ones((imgSize, imgSize, 3), np.uint8)*255 # 저장되는 창
imgCrop = img[y-offset:y+h+offset, x-offset:x+w+offset] # 유동적인 창
# 메인 창
aspectRatio = h/w
if aspectRatio>1:
k = imgSize/h
wCal = math.ceil(k*w)
imgResize = cv2.resize(imgCrop, (wCal, imgSize))
imgResizeShape = imgResize.shape
wGap = math.ceil((imgSize-wCal)/2)
imgWhite[:, wGap:wCal+wGap] = imgResize
else:
k = imgSize/w
hCal = math.ceil(k*h)
imgResize = cv2.resize(imgCrop, (imgSize, hCal))
imgResizeShape = imgResize.shape
hGap = math.ceil((imgSize-hCal)/2)
imgWhite[hGap:hCal+hGap, :] = imgResize
cv2.imshow("ImageCrop", imgCrop)
cv2.imshow("ImgWhite", imgWhite)
cv2.imshow("Image", img)
k = cv2.waitKey(1)
if k==ord("s"): # s를 누르면 이미지 저장
counter += 1
cv2.imwrite(f"./{folder}/Image_{time.time()}.jpg", imgWhite)
print(counter)
if k==ord("q"): # q를 누르면 프로그램 종료
break
except: # 경계선 밖으로 나가면 충돌 남
break
cap.release()
cv2.destroyAllWindows()
Real Time
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
try:
cap = cv2.VideoCapture(0)
except:
cap = cv2.VideoCapture(1)
cap.set(cv2.CAP_PROP_FRAME_WIDTH, 1280)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 960)
# hand detection
detector = HandDetector(maxHands=1)
classifier = Classifier("./model/keras_model.h5", "./model/labels.txt")
offset = 20
imgSize = 300
labels = [chr(x).upper() for x in range(97, 123)]
labels.remove("J")
labels.remove("Z")
while True:
try:
ret, img = cap.read()
imgOutput = img.copy()
hands, img = detector.findHands(img)
if hands:
x, y, w, h = hands[0]['bbox']
imgWhite = np.ones((imgSize, imgSize, 3), np.uint8)*255
imgCrop = img[y-offset:y+h+offset, x-offset:x+w+offset]
aspectRatio = h/w
if aspectRatio>1:
k = imgSize/h
wCal = math.ceil(k*w)
imgResize = cv2.resize(imgCrop, (wCal, imgSize))
wGap = math.ceil((imgSize-wCal)/2)
imgWhite[:, wGap:wCal+wGap] = imgResize
prediction, index = classifier.getPrediction(imgWhite, draw=False)
# print(prediction, index)
else:
k = imgSize/w
hCal = math.ceil(k*h)
imgResize = cv2.resize(imgCrop, (imgSize, hCal))
hGap = math.ceil((imgSize-hCal)/2)
imgWhite[hGap:hCal+hGap, :] = imgResize
prediction, index = classifier.getPrediction(imgWhite, draw=False)
cv2.rectangle(imgOutput, (x-offset, y-offset-50), (x-offset+90, y-offset-50+50), (255, 0, 139), cv2.FILLED)
cv2.putText(imgOutput, labels[index], (x, y-26), cv2.FONT_HERSHEY_COMPLEX, 2, (255, 255, 255), 2)
cv2.rectangle(imgOutput, (x-offset, y-offset), (x+w+offset, y+h+offset), (255, 0, 139), 4)
# cv2.imshow("ImageCrop", imgCrop)
# cv2.imshow("ImageWhite", imgWhite)
if cv2.waitKey(1)==ord("q"): break
except:
print("카메라가 경계선 밖으로 나갔습니다.")
break
cv2.imshow("Sign Detectoin", imgOutput)
cap.release()
cv2.destroyAllWindows()
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Streamlit
import cv2
import streamlit as st
from cvzone.HandTrackingModule import HandDetector
from cvzone.ClassificationModule import Classifier
import numpy as np
import math
detector = HandDetector(maxHands=1)
classifier = Classifier("./model/keras_model.h5", "./model/labels.txt")
offset = 20
imgSize = 300
labels = [chr(x).upper() for x in range(97, 123)]
labels.remove("J")
labels.remove("Z")
st.title("Real Time Classification")
run = st.checkbox('Run')
FRAME_WINDOW = st.image([])
try:
cap = cv2.VideoCapture(0)
except:
cap = cv2.VideoCapture(1)
while run:
_, frame = cap.read()
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
imgOutput = frame.copy()
hands, frame = detector.findHands(frame)
if hands:
x, y, w, h = hands[0]['bbox']
imgWhite = np.ones((imgSize, imgSize, 3), np.uint8)*255
imgCrop = frame[y-offset:y+h+offset, x-offset:x+w+offset]
aspectRatio = h/w
if aspectRatio>1:
k = imgSize/h
wCal = math.ceil(k*w)
imgResize = cv2.resize(imgCrop, (wCal, imgSize))
wGap = math.ceil((imgSize-wCal)/2)
imgWhite[:, wGap:wCal+wGap] = imgResize
prediction, index = classifier.getPrediction(imgWhite, draw=False)
else:
k = imgSize/w
hCal = math.ceil(k*h)
imgResize = cv2.resize(imgCrop, (imgSize, hCal))
hGap = math.ceil((imgSize-hCal)/2)
imgWhite[hGap:hCal+hGap, :] = imgResize
prediction, index = classifier.getPrediction(imgWhite, draw=False)
cv2.rectangle(imgOutput, (x-offset, y-offset-50), (x-offset+90, y-offset-50+50), (255, 0, 139), cv2.FILLED)
cv2.putText(imgOutput, labels[index], (x, y-26), cv2.FONT_HERSHEY_COMPLEX, 2, (255, 255, 255), 2)
cv2.rectangle(imgOutput, (x-offset, y-offset), (x+w+offset, y+h+offset), (255, 0, 139), 4)
FRAME_WINDOW.image(imgOutput)
Classification (Num Sign Lang.)
[Data Information]
Data Source : https://www.kaggle.com/datasets/nahyunpark/korean-sign-languageksl-numbers
Raw Data Type : csv, jpg, HEIC
[Data]
Train Image : 824개
TEst Image : 626개
0. Library Call
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import koreanize_matplotlib
import seaborn as sns
from PIL import Image
import pillow_heif
import cv2
import splitfolders
import tensorflow as tf
from tensorflow.keras import layers
from tensorflow.keras import Sequential
from tensorflow.keras.layers import Dense, Conv2D, MaxPooling2D, Dropout
from tensorflow.keras.utils import plot_model
from tensorflow.keras.callbacks import EarlyStopping, ModelCheckpoint
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from sklearn.metrics import classification_report
import glob
import warnings
warnings.filterwarnings("ignore")
1. Data Load
1
2
3
4
train_img_path = glob.glob("archive/train/*/*")
test_img_path = glob.glob("archive/test/*/*")
len(train_img_path), len(test_img_path)
1
(824, 626)
.heic 파일을 변환해줘야 함
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# for filename in test_img_path: # test_img_path는 이미지 저장한 경로
# if filename.lower().endswith(".heic"): # 파일 경로를 모두 소문자로 바꾸고, .heic로 끝나는 경우(.heic 확장자인 경우)
# heif_file = pillow_heif.read_heif(filename) # pillow_heif 라이브러리를 이용해 불러오고
# img = Image.frombytes(
# heif_file.mode,
# heif_file.size,
# heif_file.data,
# "raw"
# )
# new_name = f"{filename.split('.')[0]}.png" # 경로를 그대로 유지하기 위해 만든 변수
# print(new_name)
# img.save(new_name, format="png") # png 확장자로 변환해 저장
# else: # .heic 확장자가 아닌경우 (.jpg, .jpeg 등), 아무런 처리도 안하지만 진행 상황을 보기 위해 경로 그대로 출력
# print(filename)
이미지 데이터를 변환하면서 확인해보니, 이상하게 찍힌 사진들이 존재해서 제거할 필요가 있어보임
초기 데이터의 경우 train과 test가 각각 777, 330장이 있었음
1
2
train_img = pd.Series(train_img_path)
test_img = pd.Series(test_img_path)
1
2
3
4
5
6
7
8
9
train_df = pd.DataFrame()
train_df["path"] = train_img.map(lambda x: x)
train_df["ClassId"] = train_img.map(lambda x: x.split("\\")[1])
train_df["FileName"] = train_img.map(lambda x: x.split("\\")[2])
test_df = pd.DataFrame()
test_df["path"] = test_img.map(lambda x: x)
test_df["ClassId"] = test_img.map(lambda x: x.split("\\")[1])
test_df["FileName"] = test_img.map(lambda x: x.split("\\")[2])
.heic 파일들을 제거해줘야 함
1
2
train_df = train_df[~train_df["FileName"].str.contains(".HEIC|.heic")].reset_index()
test_df = test_df[~test_df["FileName"].str.contains(".HEIC|.heic")].reset_index()
1
train_df.shape, test_df.shape
1
((777, 4), (330, 4))
초기 데이터와 동일한 개수의 이미지가 있음
2. Data Distribution
1
2
3
4
fig, ax = plt.subplots(1, 2, figsize=(15, 7))
ax[0].pie(train_df["ClassId"].value_counts().sort_index().values, labels=train_df["ClassId"].value_counts().sort_index().index, autopct="%.2f%%")
ax[1].pie(test_df["ClassId"].value_counts().sort_index().values, labels=test_df["ClassId"].value_counts().sort_index().index, autopct="%.2f%%")
plt.show()
train
과 test
모두 데이터가 고르게 잘 들어있음
다만, 10을 나타내는 수어가 2 종류인 점을 감안하면, 10은 다른 숫자보다 약 2배 더 많음
1
2
3
4
fig, ax = plt.subplots(1, 2, figsize=(15, 7))
sns.countplot(x=train_df["ClassId"], ax=ax[0]).set_title("Train ClassId Distribution")
sns.countplot(x=test_df["ClassId"], ax=ax[1]).set_title("Test ClassId Distribution")
plt.show()
데이터의 절대량은, train
은 70개 전후, test
는 30개 전후여서 데이터 증강이 필요할꺼라 생각됨
1
2
3
4
5
6
7
8
9
10
11
12
def img_resize_to_gray(fpath):
"""파일 경로를 입력 받아 사이즈 조정과 그레이로 변환하는 함수
Args:
fpath (str): 파일 경로
Returns:
arr (np.array)
"""
img = cv2.imread(fpath)
img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
img = cv2.resize(img, (300, 300))
return img
1
plot_df = train_df.sample(25)
1
2
3
4
5
6
7
8
fig, ax = plt.subplots(5, 5, figsize=(20, 15))
for idx, fpath in enumerate(plot_df["path"]):
classid = fpath.split("\\")[1]
plt.subplot(5, 5, idx+1)
plt.imshow(img_resize_to_gray(fpath))
plt.title(classid)
plt.xticks([])
plt.yticks([])
3. Image Data Generator
1
splitfolders.ratio(input="./archive/train/", output="./archive/kor_number", ratio=(0.9, 0.05, 0.05))
1
Copying files: 824 files [00:04, 196.93 files/s]
1
2
3
4
5
6
7
train_datagen = ImageDataGenerator()
test_datagen = ImageDataGenerator()
val_datagen = ImageDataGenerator()
train_generator = train_datagen.flow_from_directory("./archive/kor_number/train/", target_size=(300, 300), batch_size=32, shuffle=True, class_mode='sparse')
test_generator = test_datagen.flow_from_directory("./archive/kor_number/test/", target_size=(300,300), batch_size=32, shuffle=False, class_mode='sparse')
val_generator = val_datagen.flow_from_directory("./archive/kor_number/val/", target_size=(300,300), batch_size=32, shuffle=False, class_mode='sparse')
1
2
3
Found 689 images belonging to 11 classes.
Found 54 images belonging to 11 classes.
Found 34 images belonging to 11 classes.
4. Model: Efficient Net
1
2
3
4
5
6
7
from tensorflow.keras.applications import EfficientNetB0
model = EfficientNetB0(
input_shape=(300, 300, 3),
include_top=False,
weights="imagenet"
)
5. Fine Tuning
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
model.trainable = True
for layer in model.layers[:-15]:
layer.trainable = False
x = tf.keras.layers.Flatten()(model.output)
x = tf.keras.layers.Dropout(0.5)(x)
x = tf.keras.layers.Dense(11, activation="softmax")(x)
model = tf.keras.Model(model.input, x)
model.compile(
optimizer = "adam",
loss = tf.keras.losses.SparseCategoricalCrossentropy(),
metrics = ["accuracy"]
)
1
2
early_stopping = EarlyStopping(monitor="val_accuracy", mode="max", verbose=0, patience=10)
model_check = ModelCheckpoint("model_kor_num_no_augmentation.h5", monitor="val_accuracy", mode="max", save_best_only=True)
1
2
with tf.device("/device:GPU:0"):
history = model.fit(train_generator, validation_data=val_generator, epochs=50, verbose=1, callbacks=[early_stopping, model_check])
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Epoch 1/50
22/22 [==============================] - 76s 2s/step - loss: 4.1347 - accuracy: 0.4731 - val_loss: 1.7526 - val_accuracy: 0.7353
Epoch 2/50
22/22 [==============================] - 75s 3s/step - loss: 0.8099 - accuracy: 0.8462 - val_loss: 2.8852 - val_accuracy: 0.7647
Epoch 3/50
22/22 [==============================] - 63s 3s/step - loss: 0.4242 - accuracy: 0.9303 - val_loss: 3.3324 - val_accuracy: 0.7941
Epoch 4/50
22/22 [==============================] - 58s 3s/step - loss: 0.3403 - accuracy: 0.9332 - val_loss: 3.3216 - val_accuracy: 0.7647
Epoch 5/50
22/22 [==============================] - 45s 2s/step - loss: 0.3478 - accuracy: 0.9565 - val_loss: 4.5897 - val_accuracy: 0.7941
Epoch 6/50
22/22 [==============================] - 58s 3s/step - loss: 0.1667 - accuracy: 0.9695 - val_loss: 3.4514 - val_accuracy: 0.7353
Epoch 7/50
22/22 [==============================] - 75s 3s/step - loss: 0.2223 - accuracy: 0.9695 - val_loss: 2.9274 - val_accuracy: 0.7941
Epoch 8/50
22/22 [==============================] - 52s 2s/step - loss: 0.2315 - accuracy: 0.9681 - val_loss: 3.0789 - val_accuracy: 0.7941
Epoch 9/50
22/22 [==============================] - 45s 2s/step - loss: 0.2603 - accuracy: 0.9637 - val_loss: 3.7381 - val_accuracy: 0.7941
Epoch 10/50
22/22 [==============================] - 46s 2s/step - loss: 0.3140 - accuracy: 0.9637 - val_loss: 4.2248 - val_accuracy: 0.7647
Epoch 11/50
22/22 [==============================] - 47s 2s/step - loss: 0.2749 - accuracy: 0.9666 - val_loss: 3.4277 - val_accuracy: 0.7647
Epoch 12/50
22/22 [==============================] - 42s 2s/step - loss: 0.2320 - accuracy: 0.9724 - val_loss: 3.2466 - val_accuracy: 0.7941
Epoch 13/50
22/22 [==============================] - 58s 3s/step - loss: 0.3732 - accuracy: 0.9579 - val_loss: 2.6244 - val_accuracy: 0.8235
Epoch 14/50
22/22 [==============================] - 51s 2s/step - loss: 0.5276 - accuracy: 0.9463 - val_loss: 3.7109 - val_accuracy: 0.8235
Epoch 15/50
22/22 [==============================] - 87s 4s/step - loss: 0.6176 - accuracy: 0.9608 - val_loss: 3.6285 - val_accuracy: 0.8235
Epoch 16/50
22/22 [==============================] - 47s 2s/step - loss: 0.5591 - accuracy: 0.9521 - val_loss: 3.3431 - val_accuracy: 0.8235
Epoch 17/50
22/22 [==============================] - 43s 2s/step - loss: 0.4253 - accuracy: 0.9710 - val_loss: 3.3940 - val_accuracy: 0.7941
Epoch 18/50
22/22 [==============================] - 44s 2s/step - loss: 0.4235 - accuracy: 0.9681 - val_loss: 5.8722 - val_accuracy: 0.7941
Epoch 19/50
22/22 [==============================] - 45s 2s/step - loss: 0.7531 - accuracy: 0.9507 - val_loss: 4.6544 - val_accuracy: 0.7941
Epoch 20/50
22/22 [==============================] - 47s 2s/step - loss: 0.6735 - accuracy: 0.9594 - val_loss: 4.1297 - val_accuracy: 0.7941
Epoch 21/50
22/22 [==============================] - 73s 3s/step - loss: 0.3669 - accuracy: 0.9652 - val_loss: 4.0166 - val_accuracy: 0.7941
Epoch 22/50
22/22 [==============================] - 116s 5s/step - loss: 0.3746 - accuracy: 0.9710 - val_loss: 9.3713 - val_accuracy: 0.8235
Epoch 23/50
22/22 [==============================] - 89s 4s/step - loss: 0.7543 - accuracy: 0.9550 - val_loss: 10.8085 - val_accuracy: 0.7353
1
2
3
4
5
6
hist_df = pd.DataFrame(history.history)
fig, ax = plt.subplots(1, 2, figsize=(14, 5))
hist_df[["accuracy", "val_accuracy"]].plot(ax=ax[0])
hist_df[["loss", "val_loss"]].plot(ax=ax[1])
plt.show()
6. Performance Evaluation
1
2
3
test_loss, test_acc = model.evaluate(test_generator, steps=len(test_generator), verbose=1)
print('Loss: %.3f' % (test_loss * 100.0))
print('Accuracy: %.3f' % (test_acc * 100.0))
1
2
3
2/2 [==============================] - 6s 2s/step - loss: 8.0187 - accuracy: 0.8148
Loss: 801.866
Accuracy: 81.481
1
2
3
4
5
y_val = test_generator.classes
y_pred = model.predict(test_generator)
y_pred = np.argmax(y_pred,axis=1)
print(classification_report(y_val, y_pred))
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
precision recall f1-score support
0 1.00 0.80 0.89 5
1 1.00 0.75 0.86 4
2 0.83 1.00 0.91 5
3 0.50 1.00 0.67 5
4 0.50 0.20 0.29 5
5 0.80 0.80 0.80 5
6 1.00 0.60 0.75 5
7 0.71 1.00 0.83 5
8 1.00 0.80 0.89 5
9 1.00 1.00 1.00 5
10 1.00 1.00 1.00 5
accuracy 0.81 54
macro avg 0.85 0.81 0.81 54
weighted avg 0.85 0.81 0.81 54