robworks-software commited on
Commit
63f2b3f
·
verified ·
1 Parent(s): 5254acf

Upload structured historical training manuals dataset

Browse files
Files changed (4) hide show
  1. README.md +147 -159
  2. dataset.csv +0 -0
  3. dataset.parquet +3 -0
  4. dataset_info.json +22 -0
README.md CHANGED
@@ -1,214 +1,202 @@
1
- # Historical Training Manuals Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  ## Dataset Description
4
 
5
- This dataset contains 1373 historical training manuals, instruction guides, and technical documentation from the early 19th to early 20th century. All materials are verified public domain (primarily pre-1928 publications).
6
 
7
- ### Dataset Summary
 
 
 
 
 
8
 
9
- - **Total Manuals**: 1,373
10
- - **Total Size**: 27.02 GB
11
- - **Publication Years**: 1800-1926
12
- - **Average Year**: 1882
13
- - **Format**: PDF with comprehensive metadata
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
  ### Industry Distribution
16
 
17
- - **Historical**: 1009 manuals (73.5%)
18
- - **Military**: 210 manuals (15.3%)
19
- - **Healthcare**: 138 manuals (10.1%)
20
- - **Manufacturing**: 11 manuals (0.8%)
21
- - **Agriculture**: 4 manuals (0.3%)
22
- - **Aviation**: 1 manuals (0.1%)
 
23
 
 
24
 
25
- ### Copyright Status
 
 
26
 
27
- All materials in this dataset are verified public domain:
28
 
29
- - **Pre-1928 Public Domain**: 1373 manuals (100.0%)
 
30
 
 
 
31
 
32
- ## Data Collection
 
 
 
 
33
 
34
- ### Source
 
 
35
 
36
- All materials collected from Internet Archive (archive.org), specifically:
37
- - Americana Collection
38
- - National Library of Medicine Historical Collections
39
- - Emory University Digital Collections
40
- - University of Michigan Historical Texts
41
 
42
- ### Collection Methodology
43
 
44
- 1. **Public Domain Filtering**: Only items published before 1928 (guaranteed U.S. public domain)
45
- 2. **Verification**: Multi-level copyright verification for each item
46
- 3. **Quality Control**: Automated quality validation and manual sampling
47
- 4. **Metadata Extraction**: Comprehensive Dublin Core metadata extraction
48
 
49
- ### Ethical Considerations
 
 
50
 
51
- - **No Copyright Infringement**: All materials are verified public domain
52
- - **Historical Preservation**: Digitally preserving historical educational materials
53
- - **Attribution**: Original publishers, creators, and archive sources documented in metadata
54
- - **Educational Use**: Intended for research, AI training, and educational purposes
55
 
56
- ## Dataset Structure
 
 
 
 
57
 
58
- ### Data Fields
59
 
60
- Each entry contains:
61
-
62
- #### Core Fields
63
- - `title` (string): Manual title
64
- - `filepath` (string): Local file path to PDF
65
- - `url` (string): Original Internet Archive URL
66
- - `file_size_mb` (float): File size in megabytes
67
- - `industry` (string): Classified industry/domain
68
-
69
- #### Dublin Core Metadata
70
- - `dc:creator` (string): Original author/publisher
71
- - `dc:date` (string): Publication date
72
- - `dc:description` (string): Manual description
73
- - `dc:rights` (string): Copyright/public domain status
74
- - `dc:subject` (string): Subject matter
75
- - `dc:language` (string): Language (primarily English)
76
- - `dc:type` (string): Resource type (Training Manual)
77
- - `dc:format` (string): Format (application/pdf)
78
-
79
- #### Archive Metadata
80
- - `archive:identifier` (string): Internet Archive item ID
81
- - `archive:collection` (string): Source collection
82
- - `archive:publicdate` (string): Archive publication date
83
- - `archive:downloads` (int): Download count on Archive.org
84
- - `archive:public_domain_reason` (string): Why item is public domain
85
-
86
- #### Content Metadata
87
- - `publication_year` (int): Year of publication
88
- - `topics` (list): Extracted topics/subjects
89
- - `sha256` (string): File hash for verification
90
 
91
- ## Usage
92
 
93
- ### Loading the Dataset
94
 
95
- ```python
96
- from datasets import load_dataset
97
 
98
- # Load full dataset
99
- dataset = load_dataset("robworks-software/historical-training-manuals")
100
 
101
- # Access metadata
102
- for item in dataset['train']:
103
- print(f"Title: {item['title']}")
104
- print(f"Year: {item['publication_year']}")
105
- print(f"Industry: {item['industry']}")
106
- ```
107
 
108
- ### Use Cases
 
 
109
 
110
- 1. **Historical Research**: Study evolution of training methodologies and industrial practices
111
- 2. **AI/ML Training**: Train models on historical technical documentation
112
- 3. **Educational Technology**: Develop historical context for modern training programs
113
- 4. **Digital Humanities**: Analyze language, terminology, and pedagogical approaches over time
114
- 5. **OCR Training**: Historical document OCR model training
115
- 6. **Information Retrieval**: Test retrieval systems on historical documents
116
 
117
- ## Licensing
 
 
118
 
119
- ### Dataset License
120
 
121
- **CC0-1.0 (Public Domain Dedication)**
 
 
 
 
 
122
 
123
- This dataset compilation is released under CC0-1.0. To the extent possible under law, the dataset creator has waived all copyright and related rights to the dataset structure and metadata.
124
 
125
- ### Source Materials License
126
 
127
- **Public Domain (Pre-1928)**
 
 
 
128
 
129
- All source materials are in the public domain under U.S. copyright law:
130
- - Published before 1928 (guaranteed public domain per 17 U.S.C. § 104A)
131
- - No copyright restrictions
132
- - Free to use for any purpose, including commercial use
133
- - No attribution required (though appreciated)
134
 
135
- ### Attribution (Recommended, Not Required)
 
 
 
 
136
 
137
- While not required, we recommend citing:
138
- - Internet Archive as the source
139
- - Original publishers/creators when known
140
- - This dataset if used in research
141
 
142
- Example:
143
- ```
144
- Historical Training Manuals Dataset. (2025). Retrieved from Internet Archive
145
- Americana Collection. Available at: https://huggingface.co/datasets/robworks-software/historical-training-manuals
146
- ```
147
 
148
- ## Citation
 
 
 
 
149
 
150
- If you use this dataset in your research, please cite:
151
 
152
  ```bibtex
153
  @dataset{historical_training_manuals_2025,
154
- title={Historical Training Manuals Dataset},
155
  author={Robworks Software},
156
  year={2025},
157
  publisher={HuggingFace},
158
- howpublished={\url{https://huggingface.co/datasets/robworks-software/historical-training-manuals}},
159
- note={Public Domain materials from Internet Archive}
160
  }
161
  ```
162
 
163
- ## Limitations and Biases
164
-
165
- ### Known Limitations
166
-
167
- 1. **OCR Quality**: Some older documents may have imperfect text extraction
168
- 2. **Historical Language**: Contains period-appropriate language and terminology that may be outdated
169
- 3. **Coverage**: Primarily U.S.-focused materials due to copyright restrictions
170
- 4. **Time Period**: Limited to pre-1928 due to public domain requirements
171
- 5. **Digitization Quality**: Quality varies based on original document condition
172
-
173
- ### Historical Biases
174
-
175
- As historical materials, these documents reflect the perspectives, biases, and social contexts of their time period (1800-1927). Users should be aware:
176
-
177
- - Industrial practices and safety standards have evolved significantly
178
- - Social and cultural perspectives may not reflect modern values
179
- - Technical information may be outdated
180
- - Language and terminology may be archaic or offensive by modern standards
181
-
182
- These materials are valuable for historical research but should not be used as authoritative sources for modern practices.
183
-
184
- ## Dataset Maintenance
185
-
186
- ### Updates
187
-
188
- - **Initial Release**: November 2025
189
- - **Version**: 1.0
190
- - **Update Frequency**: Dataset is static (historical materials)
191
-
192
- ### Contact
193
-
194
- For questions, issues, or contributions:
195
- - **Repository**: [github.com/ringo380/datasets/training-manuals-dataset](https://github.com/ringo380/datasets/training-manuals-dataset)
196
- - **Organization**: Robworks Software
197
- - **HuggingFace**: [@robworks-software](https://huggingface.co/robworks-software)
198
-
199
- ## Acknowledgments
200
 
201
- - **Internet Archive**: For digitizing and preserving these historical materials
202
- - **National Library of Medicine**: For historical medical/healthcare manuals
203
- - **Emory University**: For digital historical collections
204
- - **University of Michigan**: For historical text digitization
205
 
206
- This dataset would not be possible without the ongoing work of digital libraries and archives committed to preserving and providing access to historical materials.
207
 
208
- ## Technical Details
209
 
210
- - **Generated**: {stats['generated_date']}
211
- - **Total Files**: {stats['total_manuals']:,}
212
- - **Total Size**: {stats['total_size_gb']:.2f} GB ({stats['total_size_bytes']:,} bytes)
213
- - **Collections**: {', '.join(stats['collections'])}
214
- - **Format**: PDF with JSON metadata
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - text-classification
5
+ - text-generation
6
+ language:
7
+ - en
8
+ tags:
9
+ - historical
10
+ - training-manuals
11
+ - public-domain
12
+ - 19th-century
13
+ - 20th-century
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+
18
+ # Historical Training Manuals Dataset (1800-1926)
19
 
20
  ## Dataset Description
21
 
22
+ A structured dataset of 1,373 historical training manuals and instructional documents from 1800-1926, sourced from the Internet Archive. This dataset provides rich metadata about pre-1928 public domain training materials across multiple industries.
23
 
24
+ **Key Features:**
25
+ - **1,373 unique manuals** spanning 126 years (1800-1926)
26
+ - **Structured metadata** with 20 fields per manual
27
+ - **Industry categorization**: Military, healthcare, manufacturing, agriculture, general/historical
28
+ - **Direct links to source PDFs** via Internet Archive URLs
29
+ - **100% public domain** (pre-1928 publications)
30
 
31
+ ## Dataset Structure
32
+
33
+ ### Data Fields
34
+
35
+ Each row represents one historical manual with the following fields:
36
+
37
+ - `identifier`: Unique Internet Archive identifier
38
+ - `title`: Full title of the manual
39
+ - `creator`: Author(s) or organizational creator
40
+ - `publisher`: Publishing organization
41
+ - `publication_year`: Year of publication (1800-1926)
42
+ - `subject`: Subject classification
43
+ - `description`: Content description
44
+ - `language`: Primary language (mostly English)
45
+ - `industry`: Industry category (military, healthcare, manufacturing, agriculture, general/historical)
46
+ - `collection`: Source collection (americana, manuals)
47
+ - `copyright_status`: Copyright status (all "Pre-1928 Public Domain")
48
+ - `archive_url`: Direct link to the PDF on Internet Archive
49
+ - `archive_downloads`: Number of downloads on Internet Archive
50
+ - `file_size_bytes`: Size of original PDF in bytes
51
+ - `file_size_mb`: Size of original PDF in megabytes
52
+ - `local_file_available`: Whether PDF was downloaded locally (boolean)
53
+ - `local_filepath`: Path to local PDF file if available
54
+ - `mediatype`: Media type classification
55
+ - `format`: File format (PDF)
56
+ - `sha256`: SHA-256 hash of source file
57
+
58
+ ### Data Splits
59
+
60
+ Currently single split with all 1,373 records.
61
 
62
  ### Industry Distribution
63
 
64
+ ```
65
+ General/Historical: 1,047 (76.2%)
66
+ Military: 244 (17.8%)
67
+ Healthcare: 75 (5.5%)
68
+ Manufacturing: 6 (0.4%)
69
+ Agriculture: 1 (0.1%)
70
+ ```
71
 
72
+ ### Date Range
73
 
74
+ - **Earliest**: 1800
75
+ - **Latest**: 1926
76
+ - **Note**: All materials published before 1928 (US public domain)
77
 
78
+ ## Usage
79
 
80
+ ```python
81
+ from datasets import load_dataset
82
 
83
+ # Load the dataset
84
+ dataset = load_dataset("robworks-software/historical-training-manuals")
85
 
86
+ # Access a manual
87
+ manual = dataset['train'][0]
88
+ print(f"Title: {manual['title']}")
89
+ print(f"Year: {manual['publication_year']}")
90
+ print(f"PDF: {manual['archive_url']}")
91
 
92
+ # Filter by industry
93
+ military_manuals = dataset['train'].filter(lambda x: x['industry'] == 'military')
94
+ print(f"Military manuals: {len(military_manuals)}")
95
 
96
+ # Filter by date range
97
+ early_1900s = dataset['train'].filter(
98
+ lambda x: x['publication_year'] and 1900 <= x['publication_year'] <= 1910
99
+ )
100
+ ```
101
 
102
+ ## Data Collection
103
 
104
+ ### Source
 
 
 
105
 
106
+ All manuals sourced from Internet Archive collections:
107
+ - **Americana Collection**: 1,363 documents
108
+ - **Manuals Collection**: 10 documents
109
 
110
+ ### Collection Process
 
 
 
111
 
112
+ 1. Automated scraping via Internet Archive Python API
113
+ 2. Metadata extraction from Dublin Core fields
114
+ 3. Public domain verification (pre-1928 publication date)
115
+ 4. Industry categorization via keyword analysis
116
+ 5. Structured data export to Parquet format
117
 
118
+ ### Quality Assurance
119
 
120
+ - All manuals verified to exist on Internet Archive
121
+ - Publication dates validated against copyright requirements
122
+ - Duplicate identifiers removed
123
+ - Metadata consistency checks performed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
 
125
+ ## Licensing
126
 
127
+ ### Dataset License
128
 
129
+ **CC0-1.0 (Public Domain Dedication)**
 
130
 
131
+ This dataset of metadata is dedicated to the public domain under CC0-1.0.
 
132
 
133
+ ### Source Material License
 
 
 
 
 
134
 
135
+ All referenced training manuals are **pre-1928 publications** and in the **public domain** under US law:
136
+ - 17 U.S.C. § 104A (URAA amendments)
137
+ - Publications before 1928 in public domain regardless of notice
138
 
139
+ ### Attributions
 
 
 
 
 
140
 
141
+ - Source: Internet Archive (archive.org)
142
+ - Collections: Americana, Manuals
143
+ - Metadata: Dublin Core standard
144
 
145
+ ## Dataset Statistics
146
 
147
+ - **Total Manuals**: 1,373
148
+ - **Date Range**: 1800-1926 (126 years)
149
+ - **Total Source File Size**: ~27 GB (PDFs on Internet Archive)
150
+ - **Structured Dataset Size**: 0.15 MB (Parquet format)
151
+ - **Total Archive Downloads**: 1,373+ cumulative downloads
152
+ - **Generated**: 2025-11-03
153
 
154
+ ## Limitations and Bias
155
 
156
+ ### Known Limitations
157
 
158
+ 1. **OCR Quality**: PDFs may contain OCR errors (not extracted in this dataset)
159
+ 2. **Metadata Completeness**: Some fields may be empty or incomplete
160
+ 3. **Date Precision**: Publication years extracted via regex; may have gaps
161
+ 4. **Language**: Primarily English-language materials
162
 
163
+ ### Historical Bias
 
 
 
 
164
 
165
+ Materials reflect historical perspectives and may contain:
166
+ - Outdated medical/scientific information
167
+ - Historical social biases and stereotypes
168
+ - Military perspectives from specific time periods
169
+ - Gender biases typical of the era (1800-1926)
170
 
171
+ Users should interpret content in historical context.
 
 
 
172
 
173
+ ## Use Cases
 
 
 
 
174
 
175
+ - **Historical Research**: Study training methods and instructional design evolution
176
+ - **Language Models**: Pre-training on historical technical writing
177
+ - **Document Classification**: Industry/domain classification tasks
178
+ - **OCR Training**: Source for historical document OCR systems
179
+ - **Digital Humanities**: Analyze technical communication trends
180
 
181
+ ## Citation
182
 
183
  ```bibtex
184
  @dataset{historical_training_manuals_2025,
185
+ title={Historical Training Manuals Dataset (1800-1926)},
186
  author={Robworks Software},
187
  year={2025},
188
  publisher={HuggingFace},
189
+ howpublished={\\url{https://huggingface.co/datasets/robworks-software/historical-training-manuals}},
190
+ note={1,373 pre-1928 public domain training manuals from Internet Archive}
191
  }
192
  ```
193
 
194
+ ## Contact
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
 
196
+ For questions or issues, please open an issue on the dataset repository.
 
 
 
197
 
198
+ ## Ethical Considerations
199
 
200
+ This dataset contains only metadata and links to publicly available materials. All source documents are verified public domain. No student data, personally identifiable information (PII), or copyrighted modern materials are included.
201
 
202
+ The materials reflect historical perspectives and should be used with appropriate historical context and critical analysis.
 
 
 
 
dataset.csv ADDED
The diff for this file is too large to render. See raw diff
 
dataset.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f06c04e9d8ad272cdcbe184b152224428a5202a8de2accd84aa7781999f974d
3
+ size 152060
dataset_info.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_manuals": 1373,
3
+ "date_range": {
4
+ "earliest": 1800,
5
+ "latest": 1926
6
+ },
7
+ "industry_distribution": {
8
+ "general/historical": 1047,
9
+ "military": 244,
10
+ "healthcare": 75,
11
+ "manufacturing": 6,
12
+ "agriculture": 1
13
+ },
14
+ "collection_distribution": {
15
+ "americana": 1363,
16
+ "manuals": 10
17
+ },
18
+ "total_archive_downloads": 0,
19
+ "total_file_size_gb": 0.0,
20
+ "files_with_local_copy": 1373,
21
+ "generated_date": "2025-11-03T16:02:09.953824"
22
+ }