Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,105 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en,
|
5 |
+
tags:
|
6 |
+
- legal
|
7 |
+
- patents
|
8 |
+
pretty_name: WPI_Month_Kind_Subset
|
9 |
+
size_categories:
|
10 |
+
- 10K<n<100K
|
11 |
+
---
|
12 |
+
# WPI_Month_Kind Dataset
|
13 |
+
|
14 |
+

|
15 |
+
|
16 |
+
## Dataset Summary
|
17 |
+
|
18 |
+
The **WPI_Month_Kind** dataset is a comprehensive collection of approximately 70.000 patent documents from the WPI Test Collection, including only EPO patents,
|
19 |
+
proportionate to month and kind fields. For example if the patents with kind code A2 for the month of July correspond to the 10 % of the total patents on the WPI collection
|
20 |
+
then the patents with kind code A2 for the month of July on the custom subset will also correspond to 10 % of the total patents in the subset.
|
21 |
+
Each entry on the dataset encompasses detailed metadata and is structured to facilitate research in patent classification and information retrieval
|
22 |
+
## Languages
|
23 |
+
|
24 |
+
The dataset contains English text.
|
25 |
+
|
26 |
+
## Domain
|
27 |
+
|
28 |
+
Patents (intellectual property).
|
29 |
+
|
30 |
+
## Dataset Curators
|
31 |
+
|
32 |
+
The dataset was created by Eleni Kamateri and Tasos Mylonidis
|
33 |
+
|
34 |
+
## Dataset Structure
|
35 |
+
|
36 |
+
The dataset consists of a single CSV file that holds all the data.
|
37 |
+
In total, there are 17 data fields in the CSV file.
|
38 |
+
|
39 |
+
|
40 |
+
### Data Fields
|
41 |
+
|
42 |
+
The dataset is provided in CSV format and includes the aforementioned fields
|
43 |
+
|
44 |
+
- `ucid`: Unique identifier for the patent document.
|
45 |
+
- `kind`: Kind code indicating the type of patent document.
|
46 |
+
- `lang`: Language of the patent document.
|
47 |
+
- `date`: Publication date of the patent.
|
48 |
+
- `main_code`: Primary classification code assigned to the patent.
|
49 |
+
- `further_codes`: Additional classification codes.
|
50 |
+
- `ipcr_codes`: International Patent Classification codes.
|
51 |
+
- `cpc_codes`: Cooperative Patent Classification codes.
|
52 |
+
- `abstract_en`: Boolean field for existence of English abstract.
|
53 |
+
- `description_en`:Boolean field for existence of English description.
|
54 |
+
- `claims_en`: Boolean field for existence of English claims.
|
55 |
+
- `abstract_fr`: Boolean field for existence of French abstract.
|
56 |
+
- `description_fr`:Boolean field for existence of French description.
|
57 |
+
- `claims_fr`: Boolean field for existence of French claims.
|
58 |
+
- `abstract_de`: Boolean field for existence of German abstract.
|
59 |
+
- `description_de`:Boolean field for existence of German description.
|
60 |
+
- `claims_de`: Boolean field for existence of German claims.
|
61 |
+
|
62 |
+
## Usage
|
63 |
+
|
64 |
+
## Loading the Dataset
|
65 |
+
|
66 |
+
### Full
|
67 |
+
|
68 |
+
To load the complete dataset using the Hugging Face `datasets` library:
|
69 |
+
|
70 |
+
```python
|
71 |
+
from datasets import load_dataset
|
72 |
+
|
73 |
+
dataset = load_dataset("amylonidis/WPI_Tasos_Vertical", data_files='data/wpi_tasos_vertical.csv')
|
74 |
+
```
|
75 |
+
|
76 |
+
This will load the dataset into a `DatasetDict` object, please make sure you have enough disk space.
|
77 |
+
|
78 |
+
## Google Colab Analytics
|
79 |
+
|
80 |
+
|
81 |
+
You can also use the following Google Colab notebooks to explore Analytics that were performed to the dataset.
|
82 |
+
|
83 |
+
|
84 |
+
- [Dates Analytics](https://colab.research.google.com/drive/1teUGvbTb3pUD1fsiyYN5zKb-HyqaSJhb?usp=sharing)
|
85 |
+
|
86 |
+
|
87 |
+
## Dataset Creation
|
88 |
+
|
89 |
+
### Source Data
|
90 |
+
|
91 |
+
The dataset aggregates the patent documents from the WPI Test Collection, only for EPO patents using this parsing script: [Extract Dataset](https://colab.research.google.com/drive/1X45i3XM6GKXcQXDvRXATDbTxYN6WpCy1?usp=sharing)
|
92 |
+
|
93 |
+
### Annotations
|
94 |
+
|
95 |
+
The dataset does not contain any human-written or computer-generated annotations beyond those produced by patent documents of the Source Data.
|
96 |
+
|
97 |
+
## Licensing Information
|
98 |
+
|
99 |
+
This dataset is distributed under the [MIT License](https://opensource.org/licenses/MIT). Users are free to use, modify, and distribute the dataset, provided that the original authors are credited.
|
100 |
+
|
101 |
+
## Citation
|
102 |
+
|
103 |
+
If you utilize the WPI_Month_Kind dataset in your research or applications, please cite it appropriately.
|
104 |
+
|
105 |
+
---
|