File size: 12,534 Bytes
3cc26c6 2f52de1 3cc26c6 2f52de1 3cc26c6 82c57ae 3cc26c6 2f52de1 a505446 2f52de1 b995d2a 4c9502d b995d2a 4c9502d 60e72b1 b995d2a 08a36e1 b995d2a 3cc26c6 2f52de1 d6376a9 2f52de1 3cc26c6 2f52de1 3cc26c6 2f52de1 b995d2a 2f52de1 b995d2a 2f52de1 3cc26c6 b995d2a d6376a9 3cc26c6 b995d2a 60e72b1 b995d2a 4c9502d 3cc26c6 2f52de1 3cc26c6 2f52de1 b995d2a 2f52de1 b995d2a 60e72b1 b995d2a 2f52de1 60e72b1 2f52de1 b995d2a 2f52de1 3cc26c6 2f52de1 3cc26c6 2f52de1 3cc26c6 b995d2a 2f52de1 b995d2a 2f52de1 | 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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | import zipfile
import os
import sys
import warnings
import logging
import gradio as gr
import torch
import torchvision.transforms as T
from PIL import Image
import numpy as np
# =========================
# Download nltk data (required by PARSeq)
# =========================
import nltk
nltk.download('punkt', quiet=True)
# =========================
# Auto-unzip parseq.zip if it exists
# =========================
if os.path.exists('parseq.zip'):
print("Found parseq.zip, extracting...")
try:
with zipfile.ZipFile('parseq.zip', 'r') as zip_ref:
zip_ref.extractall('.')
os.remove('parseq.zip')
print("✅ Extracted and removed parseq.zip")
except Exception as e:
print(f"Error extracting parseq.zip: {e}")
# Setup logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
# =========================
# Setup PARSeq path
# =========================
parseq_path = os.path.join(os.path.dirname(__file__), 'parseq')
if os.path.exists(parseq_path):
sys.path.insert(0, parseq_path)
else:
logger.error(f"PARSeq not found at {parseq_path}")
try:
from strhub.data.utils import Tokenizer
import torch.hub
print("✅ Successfully imported Tokenizer")
except ImportError as e:
print(f"Import error: {e}")
class Tokenizer:
def __init__(self, chars):
self.charset = chars
self._itos = {i: ch for i, ch in enumerate(chars)}
self._stoi = {ch: i for i, ch in enumerate(chars)}
self.pad_id = 0
self.bos_id = 1
self.eos_id = 2
warnings.filterwarnings('ignore')
# =========================
# Configuration
# =========================
ORIYA_CHARSET = "ଅଆଇଈଉଊଋଌଏଐଓଔକଖଗଘଙଚଛଜଝଞଟଠଡଢଣତଥଦଧନପଫବଭମଯରଲଳଵଶଷସହାିିୀୁୂୃୄେୈୋୌ୍ଂଁଃ"
LANGUAGES = {
"Telugu": {
"model_path": "parseq_telugu_finetuned_final_5epochs.pth",
"samples_dir": "telugu_samples",
},
"Bengali": {
"model_path": "finetuned_bengali_model.pth",
"samples_dir": "bengali_samples",
},
"Oriya": {
"model_path": "parseq_oriya_final_direct.pth",
"samples_dir": "oriya_samples",
"charset": ORIYA_CHARSET,
}
}
# =========================
# Image Transform
# =========================
transform = T.Compose([
T.Resize((32, 128)),
T.ToTensor(),
T.Normalize(mean=[0.5], std=[0.5])
])
# =========================
# Decode
# =========================
def decode_prediction(logits, tokenizer):
pred_ids = logits.argmax(-1)[0]
chars = []
for t in pred_ids:
t = t.item()
if t == tokenizer.eos_id:
break
if t not in [tokenizer.pad_id, tokenizer.bos_id] and t < len(tokenizer._itos):
chars.append(tokenizer._itos[t])
return "".join(chars)
# =========================
# Model Cache
# =========================
model_cache = {}
def load_model(model_path, lang_name):
cache_key = f"{lang_name}_{model_path}"
if cache_key in model_cache:
return model_cache[cache_key]
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
if not os.path.exists(model_path):
logger.error(f"Model not found: {model_path}")
return None, None, None
try:
# Load checkpoint with weights_only=False for compatibility
checkpoint = torch.load(model_path, map_location='cpu', weights_only=False)
if 'charset' in checkpoint:
charset_str = checkpoint['charset']
elif lang_name == "Oriya":
charset_str = ORIYA_CHARSET
else:
logger.warning(f"No charset found for {lang_name}, using default")
return None, None, None
# Load model from torch hub (THIS IS THE KEY - works locally)
model = torch.hub.load('baudm/parseq', 'parseq', pretrained=False, trust_repo=True)
model.tokenizer = Tokenizer(charset_str)
# Handle different checkpoint formats
if 'model_state_dict' in checkpoint:
state_dict = checkpoint['model_state_dict']
elif 'model' in checkpoint:
state_dict = checkpoint['model']
else:
state_dict = checkpoint
# Remove 'module.' prefix if present
new_state_dict = {}
for k, v in state_dict.items():
if 'module.' in k:
k = k.replace('module.', '')
new_state_dict[k] = v
model.load_state_dict(new_state_dict, strict=False)
model = model.to(device)
model.eval()
model_cache[cache_key] = (model, device, model.tokenizer)
logger.info(f"✅ Loaded {lang_name} model successfully")
return model, device, model.tokenizer
except Exception as e:
logger.error(f"Error loading {lang_name}: {e}")
import traceback
traceback.print_exc()
return None, None, None
# =========================
# Inference
# =========================
def inference_image(model, image, device, tokenizer):
if image.mode != 'RGB':
image = image.convert('RGB')
img_tensor = transform(image).unsqueeze(0).to(device)
with torch.no_grad():
logits = model(img_tensor)
predicted_text = decode_prediction(logits, tokenizer)
probs = torch.softmax(logits, dim=-1)
max_probs = probs.max(dim=-1)[0][0]
avg_conf = max_probs[:len(predicted_text)].mean().item() if len(predicted_text) > 0 else 0
return predicted_text, avg_conf
# =========================
# Get samples for specific language
# =========================
def get_samples_for_language(language):
"""Get sample images for a specific language"""
config = LANGUAGES[language]
folder = config["samples_dir"]
samples = []
if os.path.exists(folder):
for f in sorted(os.listdir(folder)):
if f.lower().endswith(('.png', '.jpg', '.jpeg')):
samples.append(os.path.join(folder, f))
return samples[:6]
# =========================
# Create a tab for each language
# =========================
def create_language_tab(language):
"""Create a tab interface for a specific language"""
# Get samples for this language
sample_images = get_samples_for_language(language)
with gr.Row():
# Left column - Image preview and controls
with gr.Column(scale=1):
image_input = gr.Image(
type="pil",
label=f"📷 {language} Image Preview",
height=350,
interactive=True
)
# Extract button right below the preview
extract_btn = gr.Button(
f"✨ Extract Text",
variant="primary"
)
# Sample images section
if sample_images:
gr.Markdown("---")
gr.Markdown(f"### 📸 Click any {language} sample image to preview")
# Create gallery that doesn't expand when clicked
sample_gallery = gr.Gallery(
value=sample_images,
label=f"{language} Sample Images",
columns=3,
rows=2,
object_fit="contain",
height="auto",
allow_preview=False,
interactive=False
)
# Function to update main preview when sample is selected
def update_preview_from_sample(evt: gr.SelectData):
selected_index = evt.index
selected_image_path = sample_images[selected_index]
return Image.open(selected_image_path)
sample_gallery.select(
update_preview_from_sample,
outputs=image_input
)
# Right column - Results
with gr.Column(scale=1):
output_text = gr.Textbox(
label="📝 Extracted Text",
lines=6,
placeholder="Extracted text will appear here...",
interactive=False
)
confidence = gr.Textbox(
label="🎯 Confidence Score",
placeholder="Confidence will appear here...",
interactive=False
)
# Handle prediction
def predict_wrapper(image):
if image is None:
return "⚠️ Please upload or select an image first", ""
model_path = LANGUAGES[language]["model_path"]
model, device, tokenizer = load_model(model_path, language)
if model is None:
return f"❌ Failed to load {language} model. Please check if the model file exists and is valid.", ""
text, conf = inference_image(model, image, device, tokenizer)
if text == "":
return "🔍 No text detected in the image", ""
return text, f"✅ Confidence: {conf:.2%}"
extract_btn.click(
fn=predict_wrapper,
inputs=[image_input],
outputs=[output_text, confidence]
)
return image_input
# =========================
# Main UI with Tabs
# =========================
with gr.Blocks(theme=gr.themes.Soft(), title="Multilingual Scene Text Recognition", css="""
.gradio-container {
max-width: 1400px !important;
margin: auto !important;
}
.tab-nav button {
font-size: 18px !important;
font-weight: bold !important;
padding: 12px 24px !important;
color: #000000 !important;
background-color: #f0f0f0 !important;
border: 2px solid #ccc !important;
margin-right: 8px !important;
border-radius: 8px 8px 0 0 !important;
}
.tab-nav button.selected {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
color: white !important;
border: none !important;
}
.tab-nav button:hover {
background-color: #e0e0e0 !important;
transform: translateY(-2px);
}
button {
transition: all 0.3s ease !important;
font-weight: bold !important;
font-size: 16px !important;
margin-top: 10px !important;
margin-bottom: 10px !important;
}
button:hover {
transform: translateY(-2px) !important;
box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}
.gr-gallery {
border: 2px solid #e0e0e0;
border-radius: 10px;
padding: 10px;
background-color: #fafafa;
}
.gr-gallery .gallery-item {
cursor: pointer !important;
transition: transform 0.2s !important;
}
.gr-gallery .gallery-item:hover {
transform: scale(1.05) !important;
}
.gr-box {
border-radius: 10px;
border: 1px solid #e0e0e0;
}
.gr-button-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
color: white !important;
border: none !important;
}
""") as demo:
gr.Markdown("""
# 📖 Multilingual Scene Text Recognition System
### Extract text from images in Telugu, Bengali, and Oriya languages
---
""")
# Create tabs for each language
with gr.Tabs():
for lang in LANGUAGES.keys():
with gr.TabItem(f"🔤 {lang}"):
create_language_tab(lang)
gr.Markdown("""
---
### 💡 How to use:
1. **Select a language tab** (Telugu, Bengali, or Oriya)
2. **Click any sample thumbnail** - it will load into the main preview above
3. **Click "Extract Text"** button below the preview
4. **View results** on the right side
""")
# =========================
# Run
# =========================
if __name__ == "__main__":
for lang, config in LANGUAGES.items():
if not os.path.exists(config["model_path"]):
logger.warning(f"⚠️ Model not found: {config['model_path']} for {lang}")
if not os.path.exists(config["samples_dir"]):
os.makedirs(config["samples_dir"], exist_ok=True)
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
) |