GoodMem
ReferenceClient SDKsPython SDKModels

PageTimings Model

PageTimings Model documentation for Python SDK

Per-page timing breakdown for OCR processing.

Properties

NameTypeDescriptionNotes
queue_wait_msintTime spent waiting in the render queue (ms)
render_msintTime spent rendering the page image (ms)
ocr_msintTime spent running OCR (ms)
total_msintTotal 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

On this page