Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- pl
|
5 |
+
license: cc-by-4.0
|
6 |
+
size_categories:
|
7 |
+
- 1K<n<10K
|
8 |
+
task_categories:
|
9 |
+
- image-classification
|
10 |
+
pretty_name: "Pompax Equipment Classification"
|
11 |
+
tags:
|
12 |
+
- industrial
|
13 |
+
- manufacturing
|
14 |
+
- nameplate
|
15 |
+
- classification
|
16 |
+
- computer-vision
|
17 |
+
- Polish
|
18 |
+
---
|
19 |
+
|
20 |
+
# Pompax Equipment Classification Dataset
|
21 |
+
|
22 |
+
## Dataset Description
|
23 |
+
|
24 |
+
This dataset contains 2,772 images for **industrial equipment nameplate classification**. The task is to classify whether an image contains an industrial nameplate ("tabliczka-znamionowa" in Polish) or not.
|
25 |
+
|
26 |
+
## Dataset Summary
|
27 |
+
|
28 |
+
- **Total Images**: 2,772
|
29 |
+
- **Task**: Binary classification (nameplate vs non-nameplate)
|
30 |
+
- **Classes**: 3 categories
|
31 |
+
- `tabliczka-znamionowa` (nameplate): 2,525 images (91.1%)
|
32 |
+
- `inne` (other/non-nameplate): 240 images (8.7%)
|
33 |
+
- `Unlabeled`: 7 images (0.3%)
|
34 |
+
|
35 |
+
## Data Splits
|
36 |
+
|
37 |
+
| Split | Examples |
|
38 |
+
|-------|----------|
|
39 |
+
| Train | 2,502 |
|
40 |
+
| Valid | 34 |
|
41 |
+
| Test | 236 |
|
42 |
+
|
43 |
+
## Use Cases
|
44 |
+
|
45 |
+
- Industrial equipment identification
|
46 |
+
- Nameplate detection in manufacturing environments
|
47 |
+
- Computer vision research for industrial applications
|
48 |
+
- Quality control automation
|
49 |
+
|
50 |
+
## Dataset Structure
|
51 |
+
|
52 |
+
```python
|
53 |
+
from datasets import load_dataset
|
54 |
+
|
55 |
+
dataset = load_dataset("kahua-ml/pompax-classification")
|
56 |
+
|
57 |
+
# Example usage
|
58 |
+
example = dataset["train"][0]
|
59 |
+
print(f"Image: {example['image']}")
|
60 |
+
print(f"Label: {example['label']}")
|
61 |
+
```
|
62 |
+
|
63 |
+
## Citation
|
64 |
+
|
65 |
+
```bibtex
|
66 |
+
@misc{
|
67 |
+
pompax_class_dataset,
|
68 |
+
title = { Pompax_class Dataset },
|
69 |
+
type = { Open Source Dataset },
|
70 |
+
author = { Mevaco },
|
71 |
+
howpublished = { \url{ https://universe.roboflow.com/mevaco/pompax_class } },
|
72 |
+
url = { https://universe.roboflow.com/mevaco/pompax_class },
|
73 |
+
journal = { Roboflow Universe },
|
74 |
+
publisher = { Roboflow },
|
75 |
+
year = { 2024 },
|
76 |
+
month = { sep },
|
77 |
+
note = { visited on 2025-01-25 },
|
78 |
+
}
|
79 |
+
```
|
80 |
+
|
81 |
+
## License
|
82 |
+
|
83 |
+
This dataset is released under the CC BY 4.0 license.
|
84 |
+
|
85 |
+
## Original Source
|
86 |
+
|
87 |
+
Originally published on [Roboflow Universe](https://universe.roboflow.com/mevaco/pompax_class) by Mevaco.
|