File size: 14,265 Bytes
173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 bd12d83 173e9b8 | 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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | # /// script
# requires-python = ">=3.11"
# dependencies = [
# "datasets",
# "huggingface-hub",
# "pillow",
# "torch>=2.5",
# "torchvision",
# "falcon-perception",
# ]
# ///
"""
Convert document images to text using Falcon OCR with the falcon-perception engine.
Uses the optimized OCRInferenceEngine with CUDA graphs and paged inference
for much faster throughput than the raw transformers API.
Features:
- Compact: Only 0.3B parameters
- Fast: Optimized inference with CUDA graphs
- Multi-format: Plain text, LaTeX formulas, HTML tables
- Layout-aware: Optional 2-stage pipeline (layout detection + per-region OCR)
Model: tiiuae/Falcon-OCR
Backend: falcon-perception (OCRInferenceEngine)
License: Apache 2.0
Examples:
# Basic text OCR
uv run falcon-ocr.py input-dataset output-dataset
# Test with small sample
uv run falcon-ocr.py dataset test --max-samples 5 --shuffle
# Run on HF Jobs with GPU
hf jobs uv run --flavor l4x1 \\
-s HF_TOKEN \\
falcon-ocr.py \\
input-dataset output-dataset --max-samples 10
"""
import argparse
import io
import json
import logging
import os
import sys
import time
from datetime import datetime
from typing import Any, Dict, Union
import torch
from datasets import load_dataset
from huggingface_hub import DatasetCard, login
from PIL import Image
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
MODEL_ID = "tiiuae/Falcon-OCR"
TASK_MODES = {
"plain": "Full-page text extraction",
}
def check_cuda_availability():
if not torch.cuda.is_available():
logger.error("CUDA is not available. This script requires a GPU.")
logger.error("For cloud execution, use HF Jobs with --flavor l4x1 or similar.")
sys.exit(1)
else:
logger.info(f"CUDA is available. GPU: {torch.cuda.get_device_name(0)}")
def prepare_image(image: Union[Image.Image, Dict[str, Any], str]) -> Image.Image:
if isinstance(image, Image.Image):
pil_img = image
elif isinstance(image, dict) and "bytes" in image:
pil_img = Image.open(io.BytesIO(image["bytes"]))
elif isinstance(image, str):
pil_img = Image.open(image)
else:
raise ValueError(f"Unsupported image type: {type(image)}")
return pil_img.convert("RGB")
def create_dataset_card(
source_dataset: str,
task_mode: str,
num_samples: int,
processing_time: str,
image_column: str = "image",
split: str = "train",
) -> str:
task_description = TASK_MODES[task_mode]
return f"""---
tags:
- ocr
- document-processing
- falcon-ocr
- {task_mode}
- uv-script
- generated
---
# Document Processing using Falcon OCR ({task_mode} mode)
This dataset contains OCR results from images in [{source_dataset}](https://huggingface.co/datasets/{source_dataset}) using [Falcon OCR](https://huggingface.co/tiiuae/Falcon-OCR), a 0.3B early-fusion vision-language model.
## Processing Details
- **Source Dataset**: [{source_dataset}](https://huggingface.co/datasets/{source_dataset})
- **Model**: [{MODEL_ID}](https://huggingface.co/{MODEL_ID})
- **Task Mode**: `{task_mode}` - {task_description}
- **Number of Samples**: {num_samples:,}
- **Processing Time**: {processing_time}
- **Processing Date**: {datetime.now().strftime("%Y-%m-%d %H:%M UTC")}
- **Backend**: falcon-perception (OCRInferenceEngine)
## Reproduction
```bash
uv run https://huggingface.co/datasets/uv-scripts/ocr/raw/main/falcon-ocr.py \\
{source_dataset} \\
<output-dataset> \\
--task-mode {task_mode} \\
--image-column {image_column}
```
Generated with [UV Scripts](https://huggingface.co/uv-scripts)
"""
def main(
input_dataset: str,
output_dataset: str,
image_column: str = "image",
task_mode: str = "plain",
hf_token: str = None,
split: str = "train",
max_samples: int = None,
private: bool = False,
shuffle: bool = False,
seed: int = 42,
output_column: str = "markdown",
config: str = None,
create_pr: bool = False,
compile: bool = True,
cudagraph: bool = True,
progress: bool = False,
verbose: bool = False,
):
check_cuda_availability()
start_time = datetime.now()
HF_TOKEN = hf_token or os.environ.get("HF_TOKEN")
if HF_TOKEN:
login(token=HF_TOKEN)
if task_mode not in TASK_MODES:
raise ValueError(
f"Invalid task_mode '{task_mode}'. Choose from: {list(TASK_MODES.keys())}"
)
logger.info(f"Task mode: {task_mode} - {TASK_MODES[task_mode]}")
logger.info(f"Output column: {output_column}")
# Load dataset
logger.info(f"Loading dataset: {input_dataset}")
dataset = load_dataset(input_dataset, split=split)
if image_column not in dataset.column_names:
raise ValueError(
f"Column '{image_column}' not found. Available: {dataset.column_names}"
)
if shuffle:
logger.info(f"Shuffling dataset with seed {seed}")
dataset = dataset.shuffle(seed=seed)
if max_samples:
dataset = dataset.select(range(min(max_samples, len(dataset))))
logger.info(f"Limited to {len(dataset)} samples")
# Load model using falcon-perception
logger.info(f"Loading model: {MODEL_ID} via falcon-perception engine")
from falcon_perception import load_and_prepare_model
from falcon_perception.data import ImageProcessor
from falcon_perception.paged_ocr_inference import OCRInferenceEngine
model, tokenizer, model_args = load_and_prepare_model(
hf_model_id=MODEL_ID,
device="cuda",
dtype="bfloat16",
compile=compile,
)
image_processor = ImageProcessor(patch_size=16, merge_size=1)
engine = OCRInferenceEngine(
model, tokenizer, image_processor, capture_cudagraph=cudagraph
)
logger.info(f"Engine loaded. compile={compile}, cudagraph={cudagraph}")
# Prepare all images
logger.info(f"Processing {len(dataset)} images...")
all_outputs = []
# Batch plain OCR for better throughput
batch_size = 8
total_batches = (len(dataset) + batch_size - 1) // batch_size
for batch_idx, batch_start in enumerate(range(0, len(dataset), batch_size), 1):
batch_end = min(batch_start + batch_size, len(dataset))
logger.info(f"Batch {batch_idx}/{total_batches} ({batch_start}/{len(dataset)} done)")
batch_images = []
for i in range(batch_start, batch_end):
try:
batch_images.append(prepare_image(dataset[i][image_column]))
except Exception as e:
logger.error(f"Error preparing image {i}: {e}")
batch_images.append(Image.new("RGB", (100, 100)))
try:
texts = engine.generate_plain(
images=batch_images, use_tqdm=progress
)
all_outputs.extend(texts)
except Exception as e:
logger.error(f"Error processing batch {batch_start}-{batch_end}: {e}")
all_outputs.extend(
[f"[OCR ERROR: {str(e)[:200]}]"] * len(batch_images)
)
# Calculate processing time
processing_duration = datetime.now() - start_time
processing_time_str = f"{processing_duration.total_seconds() / 60:.1f} min"
# Add output column
logger.info(f"Adding '{output_column}' column to dataset")
dataset = dataset.add_column(output_column, all_outputs)
# Track inference info
inference_entry = {
"model_id": MODEL_ID,
"model_name": "Falcon-OCR",
"model_size": "0.3B",
"task_mode": task_mode,
"column_name": output_column,
"timestamp": datetime.now().isoformat(),
"backend": "falcon-perception",
}
if "inference_info" in dataset.column_names:
def update_inference_info(example):
try:
existing_info = (
json.loads(example["inference_info"])
if example["inference_info"]
else []
)
except (json.JSONDecodeError, TypeError):
existing_info = []
existing_info.append(inference_entry)
return {"inference_info": json.dumps(existing_info)}
dataset = dataset.map(update_inference_info)
else:
inference_list = [json.dumps([inference_entry])] * len(dataset)
dataset = dataset.add_column("inference_info", inference_list)
# Push to hub
logger.info(f"Pushing to {output_dataset}")
max_retries = 3
for attempt in range(1, max_retries + 1):
try:
if attempt > 1:
logger.warning("Disabling XET (fallback to HTTP upload)")
os.environ["HF_HUB_DISABLE_XET"] = "1"
dataset.push_to_hub(
output_dataset,
private=private,
token=HF_TOKEN,
max_shard_size="500MB",
**({"config_name": config} if config else {}),
create_pr=create_pr,
commit_message=f"Add {MODEL_ID} OCR results ({len(dataset)} samples)"
+ (f" [{config}]" if config else ""),
)
break
except Exception as e:
logger.error(f"Upload attempt {attempt}/{max_retries} failed: {e}")
if attempt < max_retries:
delay = 30 * (2 ** (attempt - 1))
logger.info(f"Retrying in {delay}s...")
time.sleep(delay)
else:
logger.error("All upload attempts failed. OCR results are lost.")
sys.exit(1)
# Create and push dataset card
logger.info("Creating dataset card")
card_content = create_dataset_card(
source_dataset=input_dataset,
task_mode=task_mode,
num_samples=len(dataset),
processing_time=processing_time_str,
image_column=image_column,
split=split,
)
card = DatasetCard(card_content)
card.push_to_hub(output_dataset, token=HF_TOKEN)
logger.info("Falcon OCR processing complete!")
logger.info(
f"Dataset available at: https://huggingface.co/datasets/{output_dataset}"
)
logger.info(f"Processing time: {processing_time_str}")
logger.info(
f"Speed: {len(dataset) / processing_duration.total_seconds():.2f} images/sec"
)
if verbose:
import importlib.metadata
logger.info("--- Resolved package versions ---")
for pkg in [
"falcon-perception", "transformers", "torch", "datasets", "pillow"
]:
try:
logger.info(f" {pkg}=={importlib.metadata.version(pkg)}")
except importlib.metadata.PackageNotFoundError:
logger.info(f" {pkg}: not installed")
if __name__ == "__main__":
if len(sys.argv) == 1:
print("=" * 70)
print("Falcon OCR - 0.3B Document OCR (falcon-perception engine)")
print("=" * 70)
print(f"\nModel: {MODEL_ID}")
print("License: Apache 2.0")
print("\nTask Modes:")
for mode, description in TASK_MODES.items():
print(f" {mode:10} - {description}")
print("\nExamples:")
print(" uv run falcon-ocr.py input-dataset output-dataset")
print(" uv run falcon-ocr.py dense-docs output --task-mode layout")
print("\nFor full help: uv run falcon-ocr.py --help")
sys.exit(0)
parser = argparse.ArgumentParser(
description="Document OCR using Falcon OCR (0.3B, falcon-perception engine)",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog=__doc__,
)
parser.add_argument("input_dataset", help="Input dataset ID from Hugging Face Hub")
parser.add_argument("output_dataset", help="Output dataset ID for Hugging Face Hub")
parser.add_argument(
"--image-column", default="image",
help="Column containing images (default: image)",
)
parser.add_argument(
"--task-mode", choices=list(TASK_MODES.keys()), default="plain",
help="Task type: plain (default), layout",
)
parser.add_argument("--hf-token", help="Hugging Face API token")
parser.add_argument(
"--split", default="train", help="Dataset split (default: train)",
)
parser.add_argument(
"--max-samples", type=int,
help="Maximum number of samples to process (for testing)",
)
parser.add_argument(
"--private", action="store_true", help="Make output dataset private",
)
parser.add_argument(
"--shuffle", action="store_true", help="Shuffle dataset before processing",
)
parser.add_argument(
"--seed", type=int, default=42, help="Random seed for shuffling (default: 42)",
)
parser.add_argument(
"--output-column", default="markdown",
help="Column name for output text (default: markdown)",
)
parser.add_argument(
"--config",
help="Config/subset name for Hub (for benchmarking multiple models)",
)
parser.add_argument(
"--create-pr", action="store_true",
help="Create a pull request instead of pushing directly",
)
parser.add_argument(
"--no-compile", action="store_true",
help="Disable torch.compile",
)
parser.add_argument(
"--no-cudagraph", action="store_true",
help="Disable CUDA graph capture",
)
parser.add_argument(
"--progress", action="store_true",
help="Show per-image progress bar from the inference engine",
)
parser.add_argument(
"--verbose", action="store_true", help="Log resolved package versions",
)
args = parser.parse_args()
main(
input_dataset=args.input_dataset,
output_dataset=args.output_dataset,
image_column=args.image_column,
task_mode=args.task_mode,
hf_token=args.hf_token,
split=args.split,
max_samples=args.max_samples,
private=args.private,
shuffle=args.shuffle,
seed=args.seed,
output_column=args.output_column,
config=args.config,
create_pr=args.create_pr,
compile=not args.no_compile,
cudagraph=not args.no_cudagraph,
progress=args.progress,
verbose=args.verbose,
)
|