File size: 6,040 Bytes
9335bef 642943a 9335bef 642943a 9335bef f89b961 9335bef f89b961 9335bef f89b961 9335bef | 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | """
ํ๊ตญ ๋ฒํธํ OCR - KLPR_v1 (Model v5)
Hugging Face Gradio App
"""
import gradio as gr
import torch
import torch.nn as nn
from PIL import Image
import torchvision.transforms as transforms
import numpy as np
# ============================================================================
# ๋ชจ๋ธ ์ ์
# ============================================================================
class CRNN(nn.Module):
def __init__(self, img_height, num_chars, rnn_hidden=256):
super(CRNN, self).__init__()
# CNN - 32x200 -> 1x50
self.cnn = nn.Sequential(
nn.Conv2d(1, 64, kernel_size=3, padding=1),
nn.ReLU(inplace=True),
nn.MaxPool2d((2, 2)),
nn.Conv2d(64, 128, kernel_size=3, padding=1),
nn.ReLU(inplace=True),
nn.MaxPool2d((2, 2)),
nn.Conv2d(128, 256, kernel_size=3, padding=1),
nn.BatchNorm2d(256),
nn.ReLU(inplace=True),
nn.Conv2d(256, 256, kernel_size=3, padding=1),
nn.BatchNorm2d(256),
nn.ReLU(inplace=True),
nn.MaxPool2d((2, 1)),
nn.Conv2d(256, 512, kernel_size=3, padding=1),
nn.BatchNorm2d(512),
nn.ReLU(inplace=True),
nn.Conv2d(512, 512, kernel_size=3, padding=1),
nn.BatchNorm2d(512),
nn.ReLU(inplace=True),
nn.MaxPool2d((2, 1)),
nn.Conv2d(512, 512, kernel_size=3, padding=1),
nn.BatchNorm2d(512),
nn.ReLU(inplace=True),
nn.MaxPool2d((2, 1))
)
self.rnn = nn.LSTM(512, rnn_hidden, bidirectional=True, num_layers=2, batch_first=True)
self.fc = nn.Linear(rnn_hidden * 2, num_chars)
def forward(self, x):
conv = self.cnn(x)
b, c, h, w = conv.size()
conv = conv.squeeze(2).permute(0, 2, 1)
rnn_out, _ = self.rnn(conv)
output = self.fc(rnn_out)
return output
# ============================================================================
# CTC ๋์ฝ๋ฉ
# ============================================================================
def decode_predictions(outputs, itos, blank_idx=0):
"""CTC ๋์ฝ๋ฉ"""
preds = outputs.argmax(2).detach().cpu().numpy() # (B, T)
decoded = []
for pred in preds:
char_list = []
prev_idx = blank_idx
for idx in pred:
if idx != blank_idx and idx != prev_idx:
char_list.append(itos[int(idx)])
prev_idx = idx
decoded.append(''.join(char_list))
return decoded
# ============================================================================
# ์ด๋ฏธ์ง ์ ์ฒ๋ฆฌ
# ============================================================================
def preprocess_image(image, img_height=32, max_width=200):
"""๋ฒํธํ ์ด๋ฏธ์ง ์ ์ฒ๋ฆฌ"""
# PIL Image๋ก ๋ณํ (Gradio 4.x์์ type="pil"๋ก ์ด๋ฏธ PIL Image)
if not isinstance(image, Image.Image):
if isinstance(image, np.ndarray):
image = Image.fromarray(image.astype('uint8'))
image = image.convert('L')
# ๋ฆฌ์ฌ์ด์ฆ (aspect ratio ์ ์ง)
w, h = image.size
new_w = min(int(img_height * w / h), max_width)
image = image.resize((new_w, img_height), Image.LANCZOS)
# ํจ๋ฉ
new_img = Image.new('L', (max_width, img_height), 255)
new_img.paste(image, (0, 0))
# Transform
transform = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize((0.5,), (0.5,))
])
return transform(new_img).unsqueeze(0) # (1, 1, H, W)
# ============================================================================
# ๋ชจ๋ธ ๋ก๋
# ============================================================================
print("๋ชจ๋ธ ๋ก๋ฉ ์ค...")
checkpoint_path = 'best_ocr_one_line.pth'
checkpoint = torch.load(checkpoint_path, map_location='cpu')
img_h = checkpoint.get('img_h', 32)
max_w = checkpoint.get('max_w', 200)
itos = checkpoint['itos']
num_chars = len(itos)
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model = CRNN(img_h, num_chars, rnn_hidden=256).to(device)
model.load_state_dict(checkpoint['model_state'])
model.eval()
print(f"โ ๋ชจ๋ธ ๋ก๋ ์๋ฃ (Device: {device})")
print(f" - Epoch: {checkpoint.get('epoch', '?')}")
print(f" - Val Acc: {checkpoint.get('val_acc', '?'):.2%}")
# ============================================================================
# ์ถ๋ก ํจ์
# ============================================================================
def predict_license_plate(image):
"""๋ฒํธํ ์ด๋ฏธ์ง์์ ํ
์คํธ ์์ธก"""
if image is None:
return "์ด๋ฏธ์ง๋ฅผ ์
๋ก๋ํด์ฃผ์ธ์."
try:
# ์ ์ฒ๋ฆฌ
image_tensor = preprocess_image(image, img_h, max_w).to(device)
# ์ถ๋ก
with torch.no_grad():
outputs = model(image_tensor).log_softmax(2)
predictions = decode_predictions(outputs, itos)
result = predictions[0]
return result if result else "(์ธ์ ๊ฒฐ๊ณผ ์์)"
except Exception as e:
return f"์ค๋ฅ ๋ฐ์: {str(e)}"
# ============================================================================
# Gradio ์ธํฐํ์ด์ค
# ============================================================================
demo = gr.Interface(
fn=predict_license_plate,
inputs=gr.Image(type="pil", label="๋ฒํธํ ์ด๋ฏธ์ง"),
outputs=gr.Textbox(label="์ธ์ ๊ฒฐ๊ณผ"),
title="๐ ํ๊ตญ ๋ฒํธํ OCR - KLPR v2",
description="""
ํ๊ตญ ์๋์ฐจ ๋ฒํธํ์ ์ธ์ํ๋ OCR ๋ชจ๋ธ์
๋๋ค.
**๋ชจ๋ธ ์ ๋ณด:**
- Model: CRNN (CNN + Bidirectional LSTM + CTC)
- Validation Accuracy: 91.23%
- Epoch: 18
- ์ง์ ๋ฌธ์: 77๊ฐ (ํ๊ธ + ์ซ์ + ์ถ๊ฐ ํน์ ์ง์ญ๋ช
)
**์ฌ์ฉ ๋ฐฉ๋ฒ:**
1. ๋ฒํธํ ์ด๋ฏธ์ง๋ฅผ ์
๋ก๋ํ์ธ์
2. ์๋์ผ๋ก ๋ฒํธํ ๋ฒํธ๊ฐ ์ธ์๋ฉ๋๋ค
""",
api_name="predict"
)
if __name__ == "__main__":
demo.launch()
|