File size: 2,330 Bytes
1037de4 3476dfb 9671831 3476dfb 1037de4 | 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 |
### 🗂️ Dataset Name
**Fillable PDF Form Fields Dataset**
---
### 📘 Description
This dataset contains structured data extracted from multi-page PDF form templates stored in MongoDB.
Each record represents a **single form field** (such as a text box or checkbox) from one of many forms processed by Instafill.ai [PDF form filler](https://instafill.ai/).
The dataset is designed to help analyze, visualize, or train models that understand how form layouts are represented digitally — including their positions, sizes, and attributes within a document canvas.
---
### 🧱 Schema
| Column | Type | Description |
|--------|------|-------------|
| `fontSize` | `float` | Font size used for the text field (if applicable). |
| `height` | `float` | Height of the field’s bounding box in pixels. |
| `page` | `int` | Page number where the field appears in the PDF form. |
| `type` | `string` | Type of field, e.g. `text`, `checkbox`, `radio`, `select`, etc. |
| `value` | `string` | Default or filled-in value (if available). |
| `width` | `float` | Width of the field’s bounding box in pixels. |
| `x` | `float` | Horizontal coordinate (X position) of the field on the page canvas. |
| `y` | `float` | Vertical coordinate (Y position) of the field on the page canvas. |
---
### 📊 Data Characteristics
- Covers multiple PDF forms (each form represented by many rows).
- Coordinates (`x`, `y`) are relative to the original PDF page canvas (in points or pixels depending on processing scale).
- Useful for layout analysis, document understanding, and AI form-filling applications.
- Data collected from production forms used in real-world automation tasks — anonymized to remove any personal data.
---
### 💡 Example Row
| fontSize | height | page | type | value | width | x | y |
|-----------|--------|------|------|--------|-------|---|---|
| 12 | 22 | 1 | text | | 390 | 222.364 | 444.273 |
---
### 🚀 Possible Use Cases
- Training layout-aware AI models for **PDF form detection and completion**.
- Visualizing field distributions to optimize **form design and alignment**.
- Benchmarking **AI form-filling systems** like Instafill.ai for accuracy and placement consistency.
- Studying **geometric structure of documents** across industries (legal, medical, financial, etc.). |