File size: 2,061 Bytes
6eb5679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Dataset Card for Industrial Safety Procedures

## Dataset Summary
The Industrial Safety Procedures Dataset is a comprehensive collection of safety protocols and guidelines designed for use in industrial and manufacturing environments. It encompasses a wide range of procedures covering various aspects of workplace safety, including but not limited to confined space entry, chemical handling, electrical safety, and working at heights.

## Supported Tasks and Leaderboards

Tasks:
- Multi-label classification: Categorizing safety procedures based on their application areas
- Text generation: Creating new safety procedures or expanding existing ones
- Information retrieval: Finding relevant safety procedures for specific situations

## Dataset Structure
Data Instances
Each instance in the dataset represents a single safety procedure and typically includes the following fields:

```
{
    "procedureId": "CONF-001",
    "title": "Confined Space Entry Protocol",
    "description": "Guidelines for safely entering and working in confined spaces",
    "category": "confined space",
    "steps": [
        {"stepNumber": 1, "description": "Assess the confined space for hazards"},
        {"stepNumber": 2, "description": "Obtain necessary permits"},
        {"stepNumber": 3, "description": "Use appropriate PPE"},
        {"stepNumber": 4, "description": "Establish communication protocol"}
    ],
    "lastUpdated": "2024-01-13T08:53:38.621899"
}
```
## Data Fields

- `procedureId`: Unique identifier for the safety procedure
- `title`: Title of the safety procedure
- `description`: Brief description of the procedure's purpose
- `category`: Category or type of safety procedure
- `steps`: List of steps to follow, each with a step number and description
- `lastUpdated`: Timestamp of the last update to the procedure


## Personal and Sensitive Information
This dataset does not contain personal or sensitive information. All procedures are generalized for industrial use and do not reference specific individuals or confidential company information.