RichmondMongo's picture
Create README.md
6eb5679 verified
|
raw
history blame
No virus
2.06 kB
# 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.