PageTimings Model
PageTimings Model documentation for Python SDK
Per-page timing breakdown for OCR processing.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| queue_wait_ms | int | Time spent waiting in the render queue (ms) | |
| render_ms | int | Time spent rendering the page image (ms) | |
| ocr_ms | int | Time spent running OCR (ms) | |
| total_ms | int | Total page processing time (ms) |
Example
from goodmem_client.models.page_timings import PageTimings
# TODO update the JSON string below
json = "{}"
# create an instance of PageTimings from a JSON string
page_timings_instance = PageTimings.from_json(json)
# print the JSON string representation of the object
print(PageTimings.to_json())
# convert the object into a dict
page_timings_dict = page_timings_instance.to_dict()
# create an instance of PageTimings from a dict
page_timings_from_dict = PageTimings.from_dict(page_timings_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK