Added content
Browse files
README.md
CHANGED
@@ -6,7 +6,72 @@ language:
|
|
6 |
- en
|
7 |
pretty_name: MaintNorm
|
8 |
size_categories:
|
9 |
-
-
|
10 |
multilingualism:
|
11 |
- monolingual
|
12 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
- en
|
7 |
pretty_name: MaintNorm
|
8 |
size_categories:
|
9 |
+
- 10K<n<100K
|
10 |
multilingualism:
|
11 |
- monolingual
|
12 |
---
|
13 |
+
|
14 |
+
# MaintNorm Dataset Card
|
15 |
+
|
16 |
+
## Overview
|
17 |
+
The MaintNorm dataset is a collection of 12,000 English language texts, specifically focusing on short texts extracted from maintenance work orders from three major mining organisations in Australia. This dataset is annotated for both lexical normalization and token-level entity tagging tasks, making it a valuable resource for natural language processing research and applications in industrial contexts.
|
18 |
+
|
19 |
+
For further information about the annotation process and dataset characteristics, refer to the [MaintNorm paper](https://aclanthology.org/2024.wnut-1.7/) or vitit the [GitHub repository](https://github.com/nlp-tlp/maintnorm)
|
20 |
+
|
21 |
+
## Dataset Structure
|
22 |
+
This dataset includes data from three distinct company-specific sources (`company_a`, `company_b`, `company_c`), along with a `combined` dataset that integrates data across these sources. This structure supports both granular and comprehensive analyses.
|
23 |
+
|
24 |
+
## Masking Scheme
|
25 |
+
|
26 |
+
To address privacy and data specificity, the following token-level entity tags are used:
|
27 |
+
- `<id>`: Asset identifiers, for example, _ENG001_, _rd1286_
|
28 |
+
- `<sensitive>`: Sensitive information specific to organisations, including proprietary systems, third-party contractors, and names of personnel.
|
29 |
+
- `<num>`: Numerical entities, such as _8_, _7001223_
|
30 |
+
- `<date>`: Representations of dates, either in numerical form like _10/10/2023_ or phrase form such as _8th Dec_
|
31 |
+
|
32 |
+
## Dataset Instances
|
33 |
+
|
34 |
+
|
35 |
+
The dataset adopts a standard normalisation format similar to that used in the WNUT shared tasks, with each text resembling the format seen in CoNLL03: tokens are separated by newlines, and each token is accompanied by its normalised or masked counterpart, separated by a tab.
|
36 |
+
|
37 |
+
### Examples
|
38 |
+
|
39 |
+
```txt
|
40 |
+
Exhaust exhaust
|
41 |
+
Fan fan
|
42 |
+
#6 number <num>
|
43 |
+
Tripping tripping
|
44 |
+
c/b circuit breaker
|
45 |
+
|
46 |
+
HF338 <id>
|
47 |
+
INVESTAGATE investigate
|
48 |
+
24V <num> V
|
49 |
+
FAULT fault
|
50 |
+
```
|
51 |
+
|
52 |
+
## Citation
|
53 |
+
|
54 |
+
Please cite the following paper if you use this dataset in your research:
|
55 |
+
|
56 |
+
```
|
57 |
+
@inproceedings{bikaun-etal-2024-maintnorm,
|
58 |
+
title = "{M}aint{N}orm: A corpus and benchmark model for lexical normalisation and masking of industrial maintenance short text",
|
59 |
+
author = "Bikaun, Tyler and
|
60 |
+
Hodkiewicz, Melinda and
|
61 |
+
Liu, Wei",
|
62 |
+
editor = {van der Goot, Rob and
|
63 |
+
Bak, JinYeong and
|
64 |
+
M{\"u}ller-Eberstein, Max and
|
65 |
+
Xu, Wei and
|
66 |
+
Ritter, Alan and
|
67 |
+
Baldwin, Tim},
|
68 |
+
booktitle = "Proceedings of the Ninth Workshop on Noisy and User-generated Text (W-NUT 2024)",
|
69 |
+
month = mar,
|
70 |
+
year = "2024",
|
71 |
+
address = "San {\.G}iljan, Malta",
|
72 |
+
publisher = "Association for Computational Linguistics",
|
73 |
+
url = "https://aclanthology.org/2024.wnut-1.7",
|
74 |
+
pages = "68--78",
|
75 |
+
}
|
76 |
+
|
77 |
+
```
|