Datasets:
Size:
1M<n<10M
ArXiv:
Tags:
Document_Understanding
Document_Packet_Splitting
Document_Comprehension
Document_Classification
Document_Recognition
Document_Segmentation
DOI:
License:
File size: 586 Bytes
165da3c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: CC-BY-NC-4.0
from pydantic import BaseModel, Field
class Document(BaseModel):
"""Represents a document in the dataset."""
doc_type: str = Field(..., description="Document category/type")
doc_name: str = Field(..., description="Unique document identifier")
filename: str = Field(..., description="PDF filename")
absolute_filepath: str = Field(..., description="Full path to PDF file")
page_count: int = Field(..., gt=0, description="Number of pages in document")
|