Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```markdown
|
| 2 |
+
### 🗂️ Dataset Name
|
| 3 |
+
**Fillable PDF Form Fields Dataset**
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
### 📘 Description
|
| 8 |
+
This dataset contains structured data extracted from multi-page PDF form templates stored in MongoDB.
|
| 9 |
+
Each record represents a **single form field** (such as a text box or checkbox) from one of many forms processed by Instafill.ai.
|
| 10 |
+
|
| 11 |
+
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.
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
### 🧱 Schema
|
| 16 |
+
|
| 17 |
+
| Column | Type | Description |
|
| 18 |
+
|--------|------|-------------|
|
| 19 |
+
| `fontSize` | `float` | Font size used for the text field (if applicable). |
|
| 20 |
+
| `height` | `float` | Height of the field’s bounding box in pixels. |
|
| 21 |
+
| `page` | `int` | Page number where the field appears in the PDF form. |
|
| 22 |
+
| `type` | `string` | Type of field, e.g. `text`, `checkbox`, `radio`, `select`, etc. |
|
| 23 |
+
| `value` | `string` | Default or filled-in value (if available). |
|
| 24 |
+
| `width` | `float` | Width of the field’s bounding box in pixels. |
|
| 25 |
+
| `x` | `float` | Horizontal coordinate (X position) of the field on the page canvas. |
|
| 26 |
+
| `y` | `float` | Vertical coordinate (Y position) of the field on the page canvas. |
|
| 27 |
+
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
### 📊 Data Characteristics
|
| 31 |
+
- Covers multiple PDF forms (each form represented by many rows).
|
| 32 |
+
- Coordinates (`x`, `y`) are relative to the original PDF page canvas (in points or pixels depending on processing scale).
|
| 33 |
+
- Useful for layout analysis, document understanding, and AI form-filling applications.
|
| 34 |
+
- Data collected from production forms used in real-world automation tasks — anonymized to remove any personal data.
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
### 💡 Example Row
|
| 39 |
+
| fontSize | height | page | type | value | width | x | y |
|
| 40 |
+
|-----------|--------|------|------|--------|-------|---|---|
|
| 41 |
+
| 12 | 22 | 1 | text | | 390 | 222.364 | 444.273 |
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
### 🚀 Possible Use Cases
|
| 46 |
+
- Training layout-aware AI models for **PDF form detection and completion**.
|
| 47 |
+
- Visualizing field distributions to optimize **form design and alignment**.
|
| 48 |
+
- Benchmarking **AI form-filling systems** like Instafill.ai for accuracy and placement consistency.
|
| 49 |
+
- Studying **geometric structure of documents** across industries (legal, medical, financial, etc.).
|
| 50 |
+
```
|