SussyCat commited on
Commit
6e4c277
·
verified ·
1 Parent(s): abff664

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -43
README.md CHANGED
@@ -19,7 +19,7 @@ tags:
19
 
20
  <!-- Provide a quick summary of the dataset. -->
21
 
22
- ConstructCIE is a dataset for extracting causal information from construction accident narratives. Each accident report is annotated with a hierarchy of causal factors (managerial, behavioral, equipment, and working-condition factors), circumstances, and consequences, supporting both extraction and classification tasks.
23
 
24
  ## Dataset Details
25
 
@@ -27,7 +27,7 @@ ConstructCIE is a dataset for extracting causal information from construction ac
27
 
28
  <!-- Provide a longer summary of what this dataset is. -->
29
 
30
- The dataset contains 530 English construction accident narratives. Each narrative is annotated with a tree of causal information: **extraction** nodes carry supporting text spans and keywords, and **classification** nodes carry categorical labels (accident type, construction trade, severity). It supports two settings: End-to-End Joint Hierarchical Extraction (**JHE**) and End-to-End Individual Hierarchical Extraction (**IHE**).
31
 
32
  - **Language:** English
33
  - **License:** Apache 2.0
@@ -66,17 +66,29 @@ Each record is one JSON line with three top-level fields:
66
  - `accident_report` — the narrative text with its hierarchical annotation tree
67
  - `accident_type` — classification: `caught-in/between`, `electrocution`, `fall`, or `struck-by`
68
 
69
- Nodes in the `accident_report` tree are either **extraction** nodes (`{text, keywords, children}`) or **classification** nodes (`{value}`), organized as:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
 
71
- - `working_circumstances` → `construction_trade` (17 CSI-division classes)
72
- - `managerial_factors` → `failure_of_hazard_management`, `deficiency_in_safety_training`
73
- - `working_condition_factors` → `weather_condition`, `workspace_condition`
74
- - `equipment_factors` → `protective_equipment_condition`, `work_equipment_condition`
75
- - `behavioral_factors` → `inattentive_behavior`, `noncompliant_behavior`
76
- - `consequences` → `severity` (`fatality`, `hospitalized injury`, `non hospitalized injury`), `affected_body_part`
77
- - `object_involved`
78
-
79
- The dataset ships with five alternate train/val/test partitions (`split1`–`split5`) of the same 530 records, 424/53/53 each, for multi-seed evaluation.
80
 
81
  ## Dataset Creation
82
 
@@ -84,7 +96,7 @@ The dataset ships with five alternate train/val/test partitions (`split1`–`spl
84
 
85
  <!-- Motivation for the creation of this dataset. -->
86
 
87
- Construction accident reports contain rich causal information locked in free text. Structuring it as a hierarchy of causal factors enables systematic safety analysis and provides a benchmark for hierarchical information extraction methods.
88
 
89
  ### Source Data
90
 
@@ -94,29 +106,13 @@ Construction accident reports contain rich causal information locked in free tex
94
 
95
  <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
96
 
97
- [More Information Needed]
98
 
99
  #### Who are the source data producers?
100
 
101
  <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
102
 
103
- [More Information Needed]
104
-
105
- ### Annotations [optional]
106
-
107
- <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
108
-
109
- #### Annotation process
110
-
111
- <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
112
-
113
- [More Information Needed]
114
-
115
- #### Who are the annotators?
116
-
117
- <!-- This section describes the people or systems who created the annotations. -->
118
-
119
- [More Information Needed]
120
 
121
  #### Personal and Sensitive Information
122
 
@@ -124,18 +120,6 @@ Construction accident reports contain rich causal information locked in free tex
124
 
125
  Narratives describe real workplace injuries and fatalities. Workers are referred to anonymously (e.g., "Employee #1") and no names or direct identifiers appear in the text.
126
 
127
- ## Bias, Risks, and Limitations
128
-
129
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
130
-
131
- [More Information Needed]
132
-
133
- ### Recommendations
134
-
135
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
136
-
137
- [More Information Needed]
138
-
139
  ## Citation
140
 
141
  <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
 
19
 
20
  <!-- Provide a quick summary of the dataset. -->
21
 
22
+ ConstructCIE is a dataset for extracting causal information from construction accident narratives. Each accident report is annotated with a hierarchy of causal factors.
23
 
24
  ## Dataset Details
25
 
 
27
 
28
  <!-- Provide a longer summary of what this dataset is. -->
29
 
30
+ The dataset contains 530 English construction accident narratives drawn from OSHA accident investigation summaries published between 2011 and 2023. Each narrative is annotated with a tree of causal information: **extraction** nodes carry supporting text spans and keywords, and **classification** nodes carry categorical labels (accident type, construction trade, severity).
31
 
32
  - **Language:** English
33
  - **License:** Apache 2.0
 
66
  - `accident_report` — the narrative text with its hierarchical annotation tree
67
  - `accident_type` — classification: `caught-in/between`, `electrocution`, `fall`, or `struck-by`
68
 
69
+ Nodes in the `accident_report` tree are either **extraction** nodes (`{text, keywords, children}`) or **classification** nodes (`{value}`). Factors and their subfactors (marked ↳) are:
70
+
71
+ | Factor / Subfactor | Definition |
72
+ |--------------------|------------|
73
+ | `working_circumstances` | Physical and operational contexts present at the time of the accident that characterize the immediate work situation. |
74
+ | ↳ `construction_trade` | The primary construction activity division being performed at the time of the accident. |
75
+ | `managerial_factors` | Deficiencies at the organizational or supervisory level that allowed unsafe conditions or behaviors to exist. |
76
+ | ↳ `failure_of_hazard_management` | Failure to identify or include foreseeable hazards during pre-task planning or risk assessment. |
77
+ | ↳ `deficiency_in_safety_training` | Failure to provide adequate task-specific training enabling workers to perform tasks safely and respond to foreseeable hazards. |
78
+ | `working_condition_factors` | Physical conditions of the work environment, such as natural conditions and workspace characteristics, that contributed to the occurrence of the accident. |
79
+ | ↳ `weather_condition` | Weather-related conditions that influenced the work environment or contributed to the accident sequence. |
80
+ | ↳ `workspace_condition` | Physical conditions related to the workspace, or structural elements, including spatial arrangement, support conditions, integrity, surface characteristics, or surrounding physical layout. |
81
+ | `equipment_factors` | Conditions related to personal or collective protective equipment or work equipment whose state contributed to the accident sequence. |
82
+ | ↳ `protective_equipment_condition` | The state, functionality, availability, configuration, or appropriateness of personal or collective protective equipment. |
83
+ | ↳ `work_equipment_condition` | The functional state, physical integrity, configuration, or availability of tools, machinery, or powered/non-powered work equipment. |
84
+ | `behavioral_factors` | Task-level human factors involving cognitive lapses or procedural deviations that directly contributed to the occurrence of the accident. |
85
+ | ↳ `inattentive_behavior` | Behavior resulting from cognitive lapses such as reduced vigilance, distraction, or loss of situational awareness. |
86
+ | ↳ `noncompliant_behavior` | Behavior involving the disregard of required safety rules, safe work practices, or protective measures. |
87
+ | `consequences` | The adverse outcomes of the incident, including the seriousness of injury and the part(s) of the body affected. |
88
+ | ↳ `severity` | The degree and seriousness of injury: `fatality`, `hospitalized injury`, or `non hospitalized injury`. |
89
+ | ↳ `affected_body_part` | The part(s) of the body that sustained harm due to the incident. |
90
+ | `object_involved` | The equipment, structure, material, or object that physically interacted with or contributed to the accident mechanism. |
91
 
 
 
 
 
 
 
 
 
 
92
 
93
  ## Dataset Creation
94
 
 
96
 
97
  <!-- Motivation for the creation of this dataset. -->
98
 
99
+ Construction accident reports contain rich causal information locked in free text. Unlike trigger-centered event extraction, accident causality is often implicit, long-span, and distributed across multiple sentences. Structuring it as a hierarchy of causal factors enables systematic safety analysis and provides a benchmark for hierarchical causal information extraction.
100
 
101
  ### Source Data
102
 
 
106
 
107
  <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
108
 
109
+ OSHA accident investigation summaries published between 2011 and 2023 were screened in two stages: record-level screening removed duplicates and reports unrelated to construction activities, and content-level screening retained only narratives that explicitly describe both accident circumstances and causes, yielding 530 reports. All date information was removed using regular-expression matching to prevent models from learning false temporal patterns.
110
 
111
  #### Who are the source data producers?
112
 
113
  <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
114
 
115
+ The Occupational Safety and Health Administration (OSHA), which publishes accident investigation summaries of workplace incidents in the United States.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
  #### Personal and Sensitive Information
118
 
 
120
 
121
  Narratives describe real workplace injuries and fatalities. Workers are referred to anonymously (e.g., "Employee #1") and no names or direct identifiers appear in the text.
122
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  ## Citation
124
 
125
  <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->