Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,51 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: odc-by
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: odc-by
|
| 3 |
+
task_categories:
|
| 4 |
+
- fill-mask
|
| 5 |
+
- text-generation
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- manufacturing
|
| 10 |
+
- engineering
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1M<n<10M
|
| 13 |
+
---
|
| 14 |
+
# Manu-FineWeb
|
| 15 |
+
|
| 16 |
+
**Manu-FineWeb** is a high-quality, large-scale corpus specifically curated for the **manufacturing domain**. It was extracted from the 15-trillion-token FineWeb dataset and refined to facilitate efficient domain-specific pretraining for models like **ManufactuBERT**.
|
| 17 |
+
|
| 18 |
+
## Dataset Summary
|
| 19 |
+
- **Developed by:** Robin Armingaud and Romaric Besançon (Université Paris-Saclay, CEA, List)
|
| 20 |
+
- **Statistics:** 2B tokens/4,5 million documents
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Construction & Curation
|
| 25 |
+
The dataset was built using a rigorous pipeline to ensure high relevance and low redundancy:
|
| 26 |
+
|
| 27 |
+
### 1. Domain-Specific Filtering
|
| 28 |
+
A **fastText classifier** was trained on a positive set of manufacturing-specific sources to filter the general FineWeb corpus. The training sources included:
|
| 29 |
+
* **Elsevier:** Abstracts from industrial and manufacturing engineering journals.
|
| 30 |
+
* **ArXiv:** Abstracts from categories like physics, computer science, and engineering related to industrial processes.
|
| 31 |
+
* **Wikipedia:** Articles from manufacturing and engineering categories.
|
| 32 |
+
* **BigPatent:** Patent descriptions containing "manufacturing" keywords.
|
| 33 |
+
|
| 34 |
+
### 2. Multi-Stage Deduplication
|
| 35 |
+
To improve training efficiency, the 10B token corpus was reduced by ~80% through:
|
| 36 |
+
* **Lexical Deduplication (MinHash):** Eliminating near-exact text duplicates.
|
| 37 |
+
* **Semantic Deduplication (SemDeDup):** Identifying and removing semantically redundant documents using sentence embeddings (all-MiniLM-L6-v2), leaving only the most representative data points.
|
| 38 |
+
|
| 39 |
+
## Citation
|
| 40 |
+
If you use ManufactuBERT in your research, please cite:
|
| 41 |
+
```bibtex
|
| 42 |
+
@misc{armingaud2025manufactubertefficientcontinualpretraining,
|
| 43 |
+
title={ManufactuBERT: Efficient Continual Pretraining for Manufacturing},
|
| 44 |
+
author={Robin Armingaud and Romaric Besançon},
|
| 45 |
+
year={2025},
|
| 46 |
+
eprint={2511.05135},
|
| 47 |
+
archivePrefix={arXiv},
|
| 48 |
+
primaryClass={cs.CL},
|
| 49 |
+
url={https://arxiv.org/abs/2511.05135},
|
| 50 |
+
}
|
| 51 |
+
```
|