avewright commited on
Commit
f9ed0a9
·
verified ·
1 Parent(s): 771c230

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +123 -0
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Experimento-3 - Industrial Machinery Text Detection Dataset
2
+
3
+ ## Dataset Description
4
+
5
+ This dataset contains **4,237 images** of industrial machinery nameplates with detailed text field annotations for OCR and information extraction tasks. The dataset focuses on extracting key information from equipment nameplates including manufacturer, model, serial numbers, and dates.
6
+
7
+ ## Dataset Summary
8
+
9
+ - **Task**: Industrial text detection and OCR
10
+ - **Domain**: Industrial machinery and equipment
11
+ - **Images**: 4,237 total images
12
+ - **Annotations**: Bounding boxes for text fields with 8 categories
13
+ - **Source**: [Roboflow Universe - Experimento-3](https://universe.roboflow.com/marcos-feria/experimento-3)
14
+
15
+ ## Dataset Structure
16
+
17
+ ### Splits
18
+
19
+ | Split | Images |
20
+ |-------|--------|
21
+ | Train | 3,456 |
22
+ | Valid | 470 |
23
+ | Test | 311 |
24
+
25
+ ### Categories
26
+
27
+ The dataset includes 8 text field categories commonly found on industrial equipment nameplates:
28
+
29
+ | ID | Category | Description |
30
+ |----|----------|-------------|
31
+ | 0 | tipos-pl | Equipment type (unused in annotations) |
32
+ | 1 | FABRICANTE | Manufacturer name |
33
+ | 2 | FECHA | Date information |
34
+ | 3 | MODEL | Model designation |
35
+ | 4 | MODELO | Model designation (Spanish) |
36
+ | 5 | NUMERO DE SERIE | Serial number (full text) |
37
+ | 6 | SN | Serial number (abbreviated) |
38
+ | 7 | YEAR | Year information |
39
+
40
+ ## Data Fields
41
+
42
+ Each example contains:
43
+
44
+ - `image_id`: Unique image identifier
45
+ - `image`: PIL Image of the machinery nameplate
46
+ - `width`: Image width in pixels
47
+ - `height`: Image height in pixels
48
+ - `objects`: Dictionary containing:
49
+ - `bbox`: List of bounding boxes in [x, y, width, height] format (COCO format)
50
+ - `category_id`: List of category IDs (0-7)
51
+ - `category`: List of category names
52
+ - `area`: List of bounding box areas
53
+ - `iscrowd`: List of crowd flags (typically 0)
54
+
55
+ ## Use Cases
56
+
57
+ This dataset is ideal for:
58
+
59
+ 1. **Industrial OCR Systems**: Extracting text from machinery nameplates
60
+ 2. **Equipment Inventory Management**: Automated data collection from equipment
61
+ 3. **Maintenance Planning**: Identifying equipment details for service schedules
62
+ 4. **Asset Tracking**: Digital cataloging of industrial equipment
63
+ 5. **Computer Vision Research**: Multi-language text detection in industrial settings
64
+
65
+ ## Data Collection
66
+
67
+ The images were collected from various industrial machinery and equipment, focusing on nameplates and identification tags. The dataset includes equipment from multiple manufacturers and spans different time periods, providing diverse examples for robust model training.
68
+
69
+ ## Licensing & Attribution
70
+
71
+ Please refer to the original Roboflow dataset for licensing information. When using this dataset, please cite:
72
+
73
+ ```bibtex
74
+ @misc{
75
+ experimento-3_dataset,
76
+ title = { Experimento-3 Dataset },
77
+ type = { Open Source Dataset },
78
+ author = { Marcos Feria },
79
+ howpublished = { \url{ https://universe.roboflow.com/marcos-feria/experimento-3 } },
80
+ url = { https://universe.roboflow.com/marcos-feria/experimento-3 },
81
+ journal = { Roboflow Universe },
82
+ publisher = { Roboflow },
83
+ year = { 2023 },
84
+ note = { visited on 2025-01-25 },
85
+ }
86
+ ```
87
+
88
+ ## Loading the Dataset
89
+
90
+ ```python
91
+ from datasets import load_dataset
92
+
93
+ # Load the full dataset
94
+ dataset = load_dataset("kahua-ml/experimento3-industrial-text-detection")
95
+
96
+ # Load specific split
97
+ train_dataset = load_dataset("kahua-ml/experimento3-industrial-text-detection", split="train")
98
+
99
+ # Example usage
100
+ example = dataset["train"][0]
101
+ image = example["image"]
102
+ bboxes = example["objects"]["bbox"]
103
+ categories = example["objects"]["category"]
104
+ ```
105
+
106
+ ## Dataset Statistics
107
+
108
+ - **Average annotations per image**: ~6.2 text fields
109
+ - **Most common categories**: FABRICANTE, SN, NUMERO DE SERIE
110
+ - **Image resolution**: Primarily 544x416 pixels
111
+ - **Languages**: Mixed Spanish/English text fields
112
+
113
+ ## Applications
114
+
115
+ This dataset has been successfully used for:
116
+ - Training YOLO models for industrial text detection
117
+ - Fine-tuning vision transformers for equipment OCR
118
+ - Developing maintenance automation systems
119
+ - Creating inventory management solutions
120
+
121
+ ## Contact
122
+
123
+ For questions about this dataset, please refer to the original Roboflow project or create an issue in this repository.