RichmondMongo commited on
Commit
6eb5679
1 Parent(s): 6eedd36

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for Industrial Safety Procedures
2
+
3
+ ## Dataset Summary
4
+ 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.
5
+
6
+ ## Supported Tasks and Leaderboards
7
+
8
+ Tasks:
9
+ - Multi-label classification: Categorizing safety procedures based on their application areas
10
+ - Text generation: Creating new safety procedures or expanding existing ones
11
+ - Information retrieval: Finding relevant safety procedures for specific situations
12
+
13
+ ## Dataset Structure
14
+ Data Instances
15
+ Each instance in the dataset represents a single safety procedure and typically includes the following fields:
16
+
17
+ ```
18
+ {
19
+ "procedureId": "CONF-001",
20
+ "title": "Confined Space Entry Protocol",
21
+ "description": "Guidelines for safely entering and working in confined spaces",
22
+ "category": "confined space",
23
+ "steps": [
24
+ {"stepNumber": 1, "description": "Assess the confined space for hazards"},
25
+ {"stepNumber": 2, "description": "Obtain necessary permits"},
26
+ {"stepNumber": 3, "description": "Use appropriate PPE"},
27
+ {"stepNumber": 4, "description": "Establish communication protocol"}
28
+ ],
29
+ "lastUpdated": "2024-01-13T08:53:38.621899"
30
+ }
31
+ ```
32
+ ## Data Fields
33
+
34
+ - `procedureId`: Unique identifier for the safety procedure
35
+ - `title`: Title of the safety procedure
36
+ - `description`: Brief description of the procedure's purpose
37
+ - `category`: Category or type of safety procedure
38
+ - `steps`: List of steps to follow, each with a step number and description
39
+ - `lastUpdated`: Timestamp of the last update to the procedure
40
+
41
+
42
+ ## Personal and Sensitive Information
43
+ 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.