midah commited on
Commit
be3a6e4
·
verified ·
1 Parent(s): 22dc8e5

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +97 -21
README.md CHANGED
@@ -1,10 +1,29 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: figure_id
5
  dtype: string
6
  - name: patent_id
7
  dtype: string
 
 
8
  - name: patent_title
9
  dtype: string
10
  - name: caption
@@ -23,37 +42,94 @@ dataset_info:
23
  dtype: int32
24
  - name: n_figures_in_patent
25
  dtype: int32
26
- - name: year
27
- dtype: int32
28
- - name: svg
29
- dtype: string
30
  - name: sibling_figure_ids
31
- list: string
 
 
 
 
 
 
 
32
  - name: locarno_class
33
  dtype: string
34
  - name: patent_date
35
  dtype: string
36
- - name: image
37
- dtype: image
38
  splits:
39
  - name: train
40
- num_bytes: 479249
41
  num_examples: 397
42
  - name: validation
43
- num_bytes: 38808
44
  num_examples: 39
45
  - name: test
46
- num_bytes: 103733
47
  num_examples: 64
48
- download_size: 119260
49
- dataset_size: 621790
50
- configs:
51
- - config_name: default
52
- data_files:
53
- - split: train
54
- path: data/train-*
55
- - split: validation
56
- path: data/validation-*
57
- - split: test
58
- path: data/test-*
59
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: cc-by-sa-4.0
5
+ task_categories:
6
+ - image-to-text
7
+ - text-to-image
8
+ - image-classification
9
+ - zero-shot-image-classification
10
+ tags:
11
+ - patent
12
+ - design-patent
13
+ - technical-drawing
14
+ - wireframe
15
+ - multimodal
16
+ - retrieval
17
+ - reconstruction
18
+ - USPTO
19
  dataset_info:
20
  features:
21
  - name: figure_id
22
  dtype: string
23
  - name: patent_id
24
  dtype: string
25
+ - name: image
26
+ dtype: image
27
  - name: patent_title
28
  dtype: string
29
  - name: caption
 
42
  dtype: int32
43
  - name: n_figures_in_patent
44
  dtype: int32
 
 
 
 
45
  - name: sibling_figure_ids
46
+ sequence: string
47
+ - name: reference_numerals
48
+ sequence:
49
+ struct:
50
+ - name: numeral
51
+ dtype: string
52
+ - name: label
53
+ dtype: string
54
  - name: locarno_class
55
  dtype: string
56
  - name: patent_date
57
  dtype: string
58
+ - name: year
59
+ dtype: int32
60
  splits:
61
  - name: train
 
62
  num_examples: 397
63
  - name: validation
 
64
  num_examples: 39
65
  - name: test
 
66
  num_examples: 64
 
 
 
 
 
 
 
 
 
 
 
67
  ---
68
+
69
+ # Patent Wireframes
70
+
71
+ Structured patent figure dataset for multimodal understanding — generation, reconstruction, retrieval, and cross-modal association.
72
+
73
+ ## Overview
74
+
75
+ Each record is a single patent figure paired with:
76
+ - Full patent text (drawing description, detailed description, brief summary, claims)
77
+ - IMPACT-generated figure caption
78
+ - Extracted reference numeral mappings (numeral → component label)
79
+ - Sibling figure links (other views of the same object)
80
+ - Classification metadata (Locarno codes, dates)
81
+
82
+ ## Sources
83
+
84
+ - **Images + captions**: [IMPACT](https://huggingface.co/datasets/AI4Patents/IMPACT) (CC-BY-SA-4.0)
85
+ - **Patent text**: [PatentsView](https://patentsview.org/) (CC-BY-4.0)
86
+ - **Scope**: US design patents, initially 2022
87
+
88
+ ## Schema
89
+
90
+ | Field | Type | Description |
91
+ |---|---|---|
92
+ | `figure_id` | string | Unique: `{patent_id}_{figure_number}` |
93
+ | `patent_id` | string | USPTO design patent number |
94
+ | `image` | image | Figure raster |
95
+ | `patent_title` | string | Patent title |
96
+ | `caption` | string | IMPACT-generated caption |
97
+ | `drawing_description` | string | Drawing description from patent text |
98
+ | `detailed_description` | string | Full detailed description |
99
+ | `brief_summary` | string | Brief summary |
100
+ | `claims` | string | Patent claims |
101
+ | `viewpoint` | string | front / side / perspective / etc. |
102
+ | `figure_number` | int32 | Figure index within patent |
103
+ | `n_figures_in_patent` | int32 | Total figures in patent |
104
+ | `sibling_figure_ids` | list[string] | Other figure IDs from same patent |
105
+ | `reference_numerals` | list[{numeral, label}] | Extracted component mappings |
106
+ | `locarno_class` | string | Locarno classification code |
107
+ | `patent_date` | string | Grant date |
108
+ | `year` | int32 | Grant year |
109
+
110
+ ## Intended uses
111
+
112
+ - **Reconstruction**: predict figure from text description (or vice versa)
113
+ - **Retrieval**: text-to-figure, figure-to-figure, component-to-figure
114
+ - **Generation**: produce patent figures from structured descriptions
115
+ - **Multi-view reasoning**: predict unseen views given other views
116
+ - **Component understanding**: reference numeral grounding
117
+
118
+ ## Splits
119
+
120
+ Train/val/test split at the **patent level** (not figure level) to prevent
121
+ multi-view data leakage. 80/10/10 ratio, random with seed 42.
122
+
123
+ ## Citation
124
+
125
+ If you use this dataset, please cite:
126
+
127
+ ```bibtex
128
+ @dataset{patent_wireframes,
129
+ title={Patent Wireframes: A Structured Dataset for Multimodal Patent Figure Understanding},
130
+ year={2026},
131
+ url={https://huggingface.co/datasets/midah/patent-wireframes},
132
+ }
133
+ ```
134
+
135
+ Built on [IMPACT](https://openreview.net/forum?id=l0Ydsl10ci) (NeurIPS 2024) and [PatentsView](https://patentsview.org/).