File size: 37,035 Bytes
1e9a6e5 | 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 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 | """
Base class and utilities for inference scripts.
This module provides:
- BaseInference: A base class that captures common inference patterns
- HttpClientInference: Base class for HTTP-based APIs (uses httpx)
- print_performance_metrics: Utility for printing performance metrics
- process_files_concurrently: Utility for concurrent file processing
- create_argument_parser: Common CLI argument parser
"""
import os
import json
import asyncio
import time
import random
import argparse
from abc import ABC, abstractmethod
from pathlib import Path
from typing import List, Tuple, Callable, Any, Optional, Dict
from enum import Enum
from utils import (
load_json_file,
read_file_paths,
validate_json_save_path,
get_interim_dir_path,
save_interim_result,
load_interim_result,
collect_all_interim_results
)
from doc_grouping import (
group_pages_to_documents,
parse_ext_mapping,
is_multi_page_dataset,
)
class ErrorType(Enum):
"""Error categories for better error tracking."""
TIMEOUT = "timeout"
API_ERROR = "api_error"
NETWORK_ERROR = "network_error"
VALIDATION_ERROR = "validation_error"
UNKNOWN_ERROR = "unknown_error"
def create_argument_parser(description: str = "Document inference script") -> argparse.ArgumentParser:
"""Create a common argument parser with standard arguments.
Args:
description: Description for the argument parser
Returns:
argparse.ArgumentParser with common arguments configured
"""
parser = argparse.ArgumentParser(description=description)
parser.add_argument(
"--data-path",
type=str, default="", required=True,
help="Path containing the documents to process"
)
parser.add_argument(
"--save-path",
type=str, default="", required=True,
help="Path to save the results"
)
parser.add_argument(
"--input-formats",
type=str, nargs='+',
default=[".pdf", ".jpg", ".jpeg", ".png", ".bmp", ".tiff", ".heic"],
help="Supported input file formats"
)
parser.add_argument(
"--concurrent",
type=int, default=None,
help="Number of concurrent API requests (enables concurrent mode if specified)"
)
parser.add_argument(
"--sampling-rate",
type=float, default=1.0,
help="Fraction of files to process (0.0-1.0, default 1.0 = all files)"
)
parser.add_argument(
"--request-timeout",
type=float, default=600,
help="Timeout in seconds for API requests (default 600)"
)
parser.add_argument(
"--random-seed",
type=int, default=None,
help="Random seed for reproducible sampling (default None = random)"
)
parser.add_argument(
"--model",
type=str, default=None,
help="Model name to use for inference (default depends on provider)"
)
parser.add_argument(
"--mode",
type=str, default=None,
help="Inference mode (e.g., 'standard', 'enhanced', 'agentic'). None if not applicable."
)
parser.add_argument(
"--group-by-document",
action=argparse.BooleanOptionalAction,
default=False,
help="Group per-page results into document-level entries (default: False)"
)
parser.add_argument(
"--file-ext-mapping",
type=str,
default=None,
help="File extension mapping for document grouping, e.g., 'jpg:pdf' or 'jpg->pdf,png->pdf'"
)
return parser
def parse_args_with_extra(parser: argparse.ArgumentParser) -> argparse.Namespace:
"""Parse arguments, gracefully ignoring unrecognized ones.
This allows extra CLI arguments (e.g. --dpi, --jpeg-quality) to be passed
down from run_all.py / infer_all.py without breaking scripts that don't
understand them. Unrecognized arguments are logged to stderr and silently
discarded.
Args:
parser: ArgumentParser to use for parsing
Returns:
argparse.Namespace with recognized arguments
"""
args, unknown = parser.parse_known_args()
if unknown:
import sys as _sys
print(f"[INFO] Ignoring unrecognized arguments: {unknown}", file=_sys.stderr)
return args
def print_performance_metrics(
sample_latencies: List[float],
total_elapsed_time: float,
concurrent_limit: Optional[int] = None,
num_total: Optional[int] = None,
num_errors: int = 0
):
"""Print performance metrics for concurrent processing.
Args:
sample_latencies: List of latencies for each successful sample
total_elapsed_time: Total time elapsed for all processing
concurrent_limit: Optional concurrent limit (for display)
num_total: Optional total number of samples
num_errors: Number of failed samples
"""
num_successful = len(sample_latencies)
total_samples = num_total if num_total is not None else (num_successful + num_errors)
success_rate = (num_successful / total_samples * 100) if total_samples > 0 else 0
print("="*60)
print("PERFORMANCE METRICS")
if concurrent_limit is not None:
print(f"Concurrent Limit: {concurrent_limit}")
print(f"\nSuccess Rate: {success_rate:.2f}% ({num_successful}/{total_samples})")
if num_successful > 0:
# Latency metrics (sec/sample)
avg_latency = sum(sample_latencies) / num_successful
min_latency = min(sample_latencies)
max_latency = max(sample_latencies)
print(f"\nLatency (sec/sample):")
print(f" - Average: {avg_latency:.2f} sec/sample")
print(f" - Min: {min_latency:.2f} sec/sample")
print(f" - Max: {max_latency:.2f} sec/sample")
# Throughput metrics (sample/min)
throughput_per_min = (num_successful / total_elapsed_time) * 60
print(f"\nThroughput:")
print(f" - {throughput_per_min:.2f} samples/min")
print(f"\nTotal Processing Time: {total_elapsed_time:.2f} seconds")
print("="*60)
def categorize_error(error: Exception) -> ErrorType:
"""Categorize an exception into error types.
Args:
error: Exception to categorize
Returns:
ErrorType enum value
"""
error_str = str(error).lower()
error_type = type(error).__name__
if isinstance(error, asyncio.TimeoutError) or "timeout" in error_str:
return ErrorType.TIMEOUT
elif isinstance(error, (ConnectionError, OSError)) or "connection" in error_str or "network" in error_str:
return ErrorType.NETWORK_ERROR
elif "api" in error_str or "http" in error_str or "status" in error_str:
return ErrorType.API_ERROR
elif "validation" in error_str or "invalid" in error_str:
return ErrorType.VALIDATION_ERROR
else:
return ErrorType.UNKNOWN_ERROR
async def process_files_concurrently(
paths: List,
process_single_file_fn: Callable,
concurrent_limit: int = 4,
processed_data: Optional[dict] = None,
*args, **kwargs
) -> Tuple[dict, List[str], List[float], dict]:
"""Process multiple files concurrently with semaphore-based rate limiting.
Args:
paths: List of file paths to process
process_single_file_fn: Async function that processes a single file
Should accept (filepath, file_index, total_files, *args, **kwargs) and return
(filename, result, latency) or (filename, None, 0) on error
concurrent_limit: Maximum number of concurrent operations
processed_data: Optional dict of already processed data (to skip)
*args, **kwargs: Additional arguments to pass to process_single_file_fn
Returns:
Tuple of (result_dict, error_files, sample_latencies, error_details)
error_details: dict mapping filename to (error_type, error_message)
"""
if processed_data is None:
processed_data = {}
error_files = []
error_details = {} # filename -> (ErrorType, error_message)
sample_latencies = []
result_dict = {}
# Create tasks for all files
tasks = []
for idx, filepath in enumerate(paths, 1):
task = process_single_file_fn(filepath, idx, len(paths), *args, **kwargs)
tasks.append(task)
# Process all files concurrently (with semaphore limiting concurrency)
# Handle KeyboardInterrupt gracefully
interrupted = False
try:
results = await asyncio.gather(*tasks, return_exceptions=True)
except KeyboardInterrupt:
interrupted = True
print("\n⚠️ KeyboardInterrupt detected! Collecting completed results...")
# Cancel remaining tasks
for task in tasks:
if not task.done():
task.cancel()
# Wait a moment for tasks to finish cancelling
await asyncio.sleep(0.1)
# Collect completed results
results = []
for task in tasks:
if task.done() and not task.cancelled():
try:
results.append(task.result())
except Exception as e:
results.append(e)
print(f"✓ Collected {len([r for r in results if not isinstance(r, Exception)])} completed results out of {len(paths)} total files")
# Collect results
for i, result in enumerate(results):
if isinstance(result, Exception):
error_type = categorize_error(result)
error_msg = str(result)
# Try to get filename from the corresponding filepath
if i < len(paths):
filename = paths[i].name
error_files.append(filename)
error_details[filename] = (error_type, error_msg)
print(f"Error in task ({error_type.value}): {error_msg}")
continue
filename, result_data, latency = result
if result_data is not None:
result_dict[filename] = result_data
if latency > 0:
sample_latencies.append(latency)
elif latency == 0 and filename not in processed_data:
error_files.append(filename)
# If we get here, it means process_single_file returned (filename, None, 0)
# but didn't raise an exception, so it's a skipped file (already processed)
if interrupted:
print("⚠️ Processing was interrupted. Partial results collected.")
return result_dict, error_files, sample_latencies, error_details
class BaseInference(ABC):
"""Base class for all inference implementations.
This class provides common functionality for:
- Initialization (save_path, interim_dir, processed_data)
- Concurrent mode setup (semaphore)
- Result collection and saving (_collect_and_save_results)
- Async inference orchestration (infer_async)
- Sync/async mode dispatching (infer)
Subclasses must implement:
- post_process(): Process raw API results into standard format
- _call_api_async(): Make async API call for a file
- _call_api_sync(): Make sync API call for a file
"""
# Default input formats - can be overridden by subclasses
DEFAULT_INPUT_FORMATS = [".pdf", ".jpg", ".jpeg", ".png", ".bmp", ".tiff", ".heic"]
def __init__(
self,
save_path,
input_formats=None,
concurrent_limit=None,
sampling_rate=1.0,
request_timeout=600,
random_seed=None,
group_by_document=False,
file_ext_mapping=None
):
"""Initialize the base inference class
Args:
save_path (str): the json path to save the results
input_formats (list, optional): the supported file formats.
concurrent_limit (int, optional): maximum number of concurrent API requests (enables concurrent mode)
sampling_rate (float, optional): fraction of files to process (0.0-1.0, default 1.0 = all files)
request_timeout (float, optional): timeout in seconds for API requests (default 600)
random_seed (int, optional): random seed for reproducible sampling (default None = random)
group_by_document (bool, optional): group per-page results into document-level entries (default False)
file_ext_mapping (str or dict, optional): file extension mapping for document grouping
"""
if input_formats is None:
input_formats = self.DEFAULT_INPUT_FORMATS
self.formats = input_formats
self.concurrent_limit = concurrent_limit
self.sampling_rate = max(0.0, min(1.0, sampling_rate)) # Clamp between 0 and 1
self.request_timeout = request_timeout
self.random_seed = random_seed
# Document grouping settings
self.group_by_document = group_by_document
if isinstance(file_ext_mapping, str):
self.file_ext_mapping = parse_ext_mapping(file_ext_mapping) if file_ext_mapping else {}
else:
self.file_ext_mapping = file_ext_mapping or {}
# Setup save_path and interim directory (used by both modes)
validate_json_save_path(save_path)
self.save_path = save_path
self.interim_dir = get_interim_dir_path(save_path)
os.makedirs(self.interim_dir, exist_ok=True)
self.processed_data = load_json_file(save_path)
# Concurrent mode setup
if concurrent_limit is not None:
self.semaphore = asyncio.Semaphore(concurrent_limit)
@abstractmethod
def post_process(self, data: Dict) -> Dict:
"""Post-process the raw API response to match the standard format.
This method must be implemented by subclasses to convert API-specific
response formats into the standard format.
Args:
data (dict): raw API response data, keyed by filename
Returns:
dict: processed data in standard format, keyed by filename
"""
pass
def _merge_processed_data(self, processed_dict: Dict) -> Dict:
"""Merge previously processed data into the result dict.
This is a common operation at the end of post_process().
Subclasses should call this at the end of their post_process implementation.
Args:
processed_dict: The dict of newly processed results
Returns:
The merged dict including previously processed data
"""
for key in self.processed_data:
if key not in processed_dict:
processed_dict[key] = self.processed_data[key]
return processed_dict
@abstractmethod
async def _call_api_async(self, filepath, *args, **kwargs):
"""Make the actual async API call for a file.
This method must be implemented by subclasses to perform the actual API call.
It should NOT handle interim result checking or saving - that's done by the base class.
Args:
filepath: Path object to the file
*args, **kwargs: Additional arguments (e.g., client for HTTP requests)
Returns:
The raw API response data (will be wrapped by base class)
Raises:
Exception: If API call fails
"""
pass
async def process_single_file(self, filepath, file_index, total_files, *args, **kwargs):
"""Process a single file asynchronously (for concurrent mode).
This wrapper method handles:
- Checking if already processed
- Checking interim results
- Semaphore (if concurrent_limit is set)
- Timing
- File size tracking
- Saving interim results
- Error handling and categorization
Subclasses only need to implement _call_api_async().
Args:
filepath: Path object to the file
file_index: Current file index (for logging)
total_files: Total number of files
*args, **kwargs: Additional arguments passed to _call_api_async
Returns:
tuple: (filename, result_data, latency) or (filename, None, 0) on error
"""
filename = filepath.name
file_size_mb = filepath.stat().st_size / (1024 * 1024)
print(f"({file_index}/{total_files}) Processing {filepath} ({file_size_mb:.2f} MB)")
# Check if already processed (in memory)
if filename in self.processed_data.keys():
print(f"'{filename}' is already in the loaded dictionary. Skipping this sample")
return (filename, None, 0)
# Check if interim result exists (on disk)
existing_result = load_interim_result(self.interim_dir, filename)
if existing_result is not None:
print(f"'{filename}' interim result already exists. Skipping API call to save costs.")
return (filename, None, 0)
try:
# Use semaphore if concurrent_limit is set (for file-level concurrency control)
# Note: Some subclasses may use semaphore inside _call_api_async for page-level control
if self.concurrent_limit is not None and hasattr(self, 'semaphore'):
async with self.semaphore:
# Start timing AFTER acquiring semaphore (don't include wait time)
sample_start_time = time.time()
result_data = await asyncio.wait_for(
self._call_api_async(filepath, *args, **kwargs),
timeout=self.request_timeout
)
else:
# Start timing right before API calls
sample_start_time = time.time()
result_data = await asyncio.wait_for(
self._call_api_async(filepath, *args, **kwargs),
timeout=self.request_timeout
)
sample_latency = time.time() - sample_start_time
# Save interim result with file size
result_with_time = {
"data": result_data,
"time_sec": sample_latency,
"file_size_mb": round(file_size_mb, 2)
}
save_interim_result(self.interim_dir, filename, result_with_time)
pct = file_index / total_files * 100
print(f"✓ ({file_index}/{total_files}, {pct:.1f}%) Saved '{filename}' (took {sample_latency:.2f}s)")
# Return result_with_time (not result_data) to preserve time_sec/file_size_mb
return (filename, result_with_time, sample_latency)
except asyncio.TimeoutError:
error_type = ErrorType.TIMEOUT
error_msg = f"Request timeout after {self.request_timeout}s"
print(f"✗ {filename} - {error_type.value}: {error_msg}")
# Raise exception so it can be caught and categorized in process_files_concurrently
raise asyncio.TimeoutError(error_msg)
except Exception as e:
error_type = categorize_error(e)
error_msg = str(e)
print(f"✗ {filename} - {error_type.value}: {error_msg}")
# Re-raise so it can be caught and categorized in process_files_concurrently
raise
@abstractmethod
def _call_api_sync(self, filepath, *args, **kwargs):
"""Make the actual sync API call for a file.
This method must be implemented by subclasses to perform the actual API call.
It should NOT handle interim result checking or saving - that's done by the base class.
Args:
filepath: Path object to the file
*args, **kwargs: Additional arguments
Returns:
The raw API response data (will be wrapped by base class)
Raises:
Exception: If API call fails
"""
pass
def process_file_sequential(self, filepath, file_index, total_files, *args, **kwargs):
"""Process a single file sequentially (for sync mode).
This wrapper method handles:
- Checking if already processed
- Checking interim results
- Timing
- File size tracking
- Saving interim results
- Error handling and categorization
Subclasses only need to implement _call_api_sync().
Args:
filepath: Path object to the file
file_index: Current file index (for logging)
total_files: Total number of files
*args, **kwargs: Additional arguments passed to _call_api_sync
Returns:
tuple: (filename, result_data, latency) or (filename, None, 0) on error
"""
filename = filepath.name
file_size_mb = filepath.stat().st_size / (1024 * 1024)
sample_start_time = time.time()
try:
# Make the actual API call (implemented by subclass)
# Note: For sync calls, timeout handling should be done in the subclass
# or we could use signal.alarm on Unix, but that's complex
result_data = self._call_api_sync(filepath, *args, **kwargs)
sample_latency = time.time() - sample_start_time
# Save interim result with file size
result_with_time = {
"data": result_data,
"time_sec": sample_latency,
"file_size_mb": round(file_size_mb, 2)
}
save_interim_result(self.interim_dir, filename, result_with_time)
pct = file_index / total_files * 100
print(f"✓ ({file_index}/{total_files}, {pct:.1f}%) Saved '{filename}' (took {sample_latency:.2f}s)")
# Return result_with_time (not result_data) to preserve time_sec/file_size_mb
return (filename, result_with_time, sample_latency)
except Exception as e:
error_type = categorize_error(e)
error_msg = str(e)
print(f"✗ {filename} - {error_type.value}: {error_msg}")
# Re-raise so it can be caught and categorized in _infer_sequential
raise
def _collect_and_save_results(self, raw_results, sample_latencies, total_elapsed_time, error_files, error_details=None):
"""Common method to collect interim results, post-process, and save final results.
Used by both sync and async modes. This method:
1. Collects all interim results from disk
2. Merges with current run results
3. Unwraps data from interim result format
4. Post-processes results
5. Preserves timing information
6. Saves final results
7. Prints performance metrics
Args:
raw_results (dict): Results from current run, keyed by filename
sample_latencies (list): List of latencies for successful samples
total_elapsed_time (float): Total time elapsed for processing
error_files (list): List of filenames that had errors
error_details (dict, optional): Dict mapping filename to (ErrorType, error_message)
Returns:
dict: Final processed results
"""
if error_details is None:
error_details = {}
# Collect all interim results
print("Collecting all interim results...")
collected_results = collect_all_interim_results(self.interim_dir)
# Merge with raw_results (from current run)
for key, value in raw_results.items():
collected_results[key] = value
raw_results = collected_results
# Unwrap the data from interim results (extract 'data' field)
unwrapped_results = {}
for key, value in raw_results.items():
if isinstance(value, dict) and "data" in value:
unwrapped_results[key] = value["data"]
else:
unwrapped_results[key] = value
# Post-process results
final_results = self.post_process(unwrapped_results)
# Preserve time_sec and file_size_mb from raw_results to final_results
for key in final_results:
if key in raw_results:
raw_result = raw_results[key]
if isinstance(raw_result, dict):
if "time_sec" in raw_result and isinstance(final_results[key], dict):
final_results[key]["time_sec"] = raw_result["time_sec"]
if "file_size_mb" in raw_result and isinstance(final_results[key], dict):
final_results[key]["file_size_mb"] = raw_result["file_size_mb"]
# Apply document-level grouping if enabled
if self.group_by_document:
# Filter out metadata keys before grouping
data_keys = [k for k in final_results.keys() if not k.startswith("_")]
if data_keys and is_multi_page_dataset(data_keys):
print("Grouping per-page results into document-level entries...")
# Separate metadata and data
metadata_keys = [k for k in final_results.keys() if k.startswith("_")]
metadata = {k: final_results[k] for k in metadata_keys}
page_data = {k: final_results[k] for k in data_keys}
# Group pages into documents
grouped_results = group_pages_to_documents(
page_data,
file_ext_mapping=self.file_ext_mapping,
elements_key="elements",
include_merged_tables=True,
)
# Restore metadata
grouped_results.update(metadata)
final_results = grouped_results
print(f"Grouped {len(data_keys)} pages into {len(grouped_results) - len(metadata_keys)} documents")
# Calculate performance metrics from ALL results (including interim results)
# Extract time_sec from all collected raw_results to properly calculate metrics
# This is the authoritative source since raw_results contains both interim AND current run
all_latencies = []
for key, value in raw_results.items():
if isinstance(value, dict) and "time_sec" in value:
all_latencies.append(value["time_sec"])
# Always prefer all_latencies since it's extracted from merged results (interim + current)
# This ensures metadata reflects ALL processed files, not just the current run
# Handles: full resume (all interim), partial resume, and fresh runs
if all_latencies:
sample_latencies = all_latencies
num_successful = len(sample_latencies)
num_total = num_successful + len(error_files)
# Estimate total_elapsed_time from latencies if current run processed nothing
# For concurrent processing: wall-clock time ≈ sum(latencies) / concurrent_limit
if total_elapsed_time < 1.0 and sample_latencies:
sum_latencies = sum(sample_latencies)
concurrent_limit = self.concurrent_limit or 1
total_elapsed_time = sum_latencies / concurrent_limit
# Add metadata for reproducible throughput calculation in evaluation
final_results["_metadata"] = {
"total_elapsed_time_sec": round(total_elapsed_time, 4),
"concurrent_limit": self.concurrent_limit,
"num_files": num_total,
"num_successful": num_successful,
"num_errors": len(error_files)
}
# Save final results
with open(self.save_path, "w", encoding="utf-8") as f:
json.dump(final_results, f, ensure_ascii=False, indent=4)
print_performance_metrics(
sample_latencies,
total_elapsed_time,
self.concurrent_limit if self.concurrent_limit is not None else None,
num_total,
len(error_files)
)
# Print error summary with categorization
if error_files:
print(f"\nErrors ({len(error_files)} files):")
error_by_type = {}
for error_file in error_files:
if error_file in error_details:
error_type, error_msg = error_details[error_file]
if error_type not in error_by_type:
error_by_type[error_type] = []
error_by_type[error_type].append((error_file, error_msg))
else:
if ErrorType.UNKNOWN_ERROR not in error_by_type:
error_by_type[ErrorType.UNKNOWN_ERROR] = []
error_by_type[ErrorType.UNKNOWN_ERROR].append((error_file, "Unknown error"))
for error_type, errors in error_by_type.items():
print(f" {error_type.value.upper()} ({len(errors)} files):")
for error_file, error_msg in errors[:5]: # Show first 5
print(f" - {error_file}: {error_msg}")
if len(errors) > 5:
print(f" ... and {len(errors) - 5} more")
print("Finished processing all documents")
print("Results saved to: {}".format(self.save_path))
print("Interim results saved to: {}".format(self.interim_dir))
print("Number of errors: {}".format(len(error_files)))
print("Total processed files: {}".format(len(final_results)))
return final_results
async def infer_async(self, file_path, *args, **kwargs):
"""Infer the layout of documents with concurrent processing.
This method orchestrates concurrent file processing using process_files_concurrently.
It can be overridden by subclasses if they need custom async behavior.
Args:
file_path (str): the path to the file or directory containing the documents to process
*args, **kwargs: Additional arguments to pass to process_single_file
Returns:
dict: Final processed results
"""
paths = read_file_paths(file_path, supported_formats=self.formats)
# Apply sampling rate if less than 1.0
if self.sampling_rate < 1.0 and len(paths) > 0:
if self.random_seed is not None:
random.seed(self.random_seed)
sample_size = max(1, int(len(paths) * self.sampling_rate))
paths = random.sample(paths, sample_size)
print(f"Sampling {self.sampling_rate * 100:.1f}% of files: {len(paths)} out of {len(read_file_paths(file_path, supported_formats=self.formats))} total files")
error_files = []
sample_latencies = []
total_start_time = time.time()
# Process files concurrently
result_dict, error_files, sample_latencies, error_details = await process_files_concurrently(
paths,
self.process_single_file,
self.concurrent_limit,
self.processed_data,
*args,
**kwargs
)
# Collect, post-process, and save results (same as sequential mode)
total_elapsed_time = time.time() - total_start_time
final_results = self._collect_and_save_results(
result_dict, sample_latencies, total_elapsed_time, error_files, error_details
)
return final_results
def infer(self, file_path, *args, **kwargs):
"""Infer the layout of the documents in the given file path.
This method dispatches to async mode if concurrent_limit is set,
otherwise runs sequential processing.
Args:
file_path (str): the path to the file or directory containing the documents to process
*args, **kwargs: Additional arguments (passed to infer_async or process_file_sequential)
Returns:
dict: Final processed results (or None for sequential mode without return)
"""
# Use concurrent mode if concurrent_limit is set
if self.concurrent_limit is not None:
return asyncio.run(self.infer_async(file_path, *args, **kwargs))
# Sequential mode - delegate to subclass implementation
return self._infer_sequential(file_path, *args, **kwargs)
def _infer_sequential(self, file_path, *args, **kwargs):
"""Internal method for sequential inference.
This template method can be overridden by subclasses for custom sequential behavior.
Default implementation processes files one by one using process_file_sequential.
Args:
file_path (str): the path to the file or directory containing the documents to process
*args, **kwargs: Additional arguments passed to process_file_sequential
"""
paths = read_file_paths(file_path, supported_formats=self.formats)
# Apply sampling rate if less than 1.0
if self.sampling_rate < 1.0 and len(paths) > 0:
if self.random_seed is not None:
random.seed(self.random_seed)
sample_size = max(1, int(len(paths) * self.sampling_rate))
paths = random.sample(paths, sample_size)
print(f"Sampling {self.sampling_rate * 100:.1f}% of files: {len(paths)} out of {len(read_file_paths(file_path, supported_formats=self.formats))} total files")
error_files = []
error_details = {}
sample_latencies = []
total_start_time = time.time()
try:
for idx, filepath in enumerate(paths, 1):
filename = filepath.name
# Check if interim result already exists
existing_result = load_interim_result(self.interim_dir, filename)
if existing_result is not None:
print(f"'{filename}' interim result already exists. Skipping API call to save costs.")
continue
# Process the file
try:
filename_result, result_data, latency = self.process_file_sequential(
filepath, idx, len(paths), *args, **kwargs
)
if result_data is not None and latency > 0:
sample_latencies.append(latency)
elif latency == 0:
error_files.append(filename)
except KeyboardInterrupt:
raise # Re-raise to be caught by outer handler
except Exception as e:
error_type = categorize_error(e)
error_details[filename] = (error_type, str(e))
error_files.append(filename)
continue
except KeyboardInterrupt:
print("\n⚠️ KeyboardInterrupt detected! Saving partial results...")
print(f"✓ Processed {len(sample_latencies)} files before interruption")
# Collect, post-process, and save results (same as async mode)
total_elapsed_time = time.time() - total_start_time
# Pass empty dict - _collect_and_save_results will collect all interim results
# All results from this run have already been saved to interim directory
raw_results = {}
final_results = self._collect_and_save_results(
raw_results, sample_latencies, total_elapsed_time, error_files, error_details
)
return final_results
class HttpClientInference(BaseInference):
"""Base class for HTTP-based API services (Upstage, LlamaParse).
This class provides:
- Automatic httpx.AsyncClient management for async mode
- Common pattern for overriding infer_async with client context
Subclasses should implement _call_api_async(filepath, client) and _call_api_sync(filepath).
"""
async def infer_async(self, file_path, *args, **kwargs):
"""Infer the layout of documents with concurrent processing.
Creates an httpx.AsyncClient and passes it to the parent's infer_async.
Args:
file_path (str): the path to the file or directory containing the documents to process
Returns:
dict: Final processed results
"""
import httpx
async with httpx.AsyncClient() as client:
return await super().infer_async(file_path, client=client, *args, **kwargs)
|