Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,72 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-classification
|
| 5 |
+
tags:
|
| 6 |
+
- computer-vision
|
| 7 |
+
- manufacturing
|
| 8 |
+
- synthetic-data
|
| 9 |
+
- industrial-inspection
|
| 10 |
+
pretty_name: Nut Defect Classification (Synthetic)
|
| 11 |
+
size_categories:
|
| 12 |
+
- n<1K
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
<div style="background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); padding: 30px; border-radius: 16px; border: 1px solid #334155; text-align: center; font-family: system-ui, -apple-system, sans-serif; color: #f8fafc; margin-bottom: 30px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);">
|
| 16 |
+
<div style="display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); border-radius: 50%; margin-bottom: 20px; box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);">
|
| 17 |
+
<!-- SVG Hexagon Nut Icon -->
|
| 18 |
+
<svg width="44" height="44" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
| 19 |
+
<path d="M12 2L4 7V17L12 22L20 17V7L12 2Z" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
| 20 |
+
<circle cx="12" cy="12" r="4" stroke="#ffffff" stroke-width="2"/>
|
| 21 |
+
<path d="M12 8V6" stroke="#ffffff" stroke-width="2"/>
|
| 22 |
+
<path d="M12 18V16" stroke="#ffffff" stroke-width="2"/>
|
| 23 |
+
<path d="M8.5 10L6.5 9" stroke="#ffffff" stroke-width="2"/>
|
| 24 |
+
<path d="M17.5 14L15.5 13" stroke="#ffffff" stroke-width="2"/>
|
| 25 |
+
<path d="M8.5 14L6.5 15" stroke="#ffffff" stroke-width="2"/>
|
| 26 |
+
<path d="M17.5 10L15.5 11" stroke="#ffffff" stroke-width="2"/>
|
| 27 |
+
</svg>
|
| 28 |
+
</div>
|
| 29 |
+
<h1 style="margin: 0; font-size: 28px; font-weight: 800; letter-spacing: -0.025em; background: linear-gradient(to right, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Nut Defect Classification</h1>
|
| 30 |
+
<p style="margin: 8px 0 0 0; color: #94a3b8; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;">Synthetic Industrial Quality Inspection Dataset</p>
|
| 31 |
+
</div>
|
| 32 |
+
|
| 33 |
+
# Nut Defect Classification (Synthetic Dataset)
|
| 34 |
+
|
| 35 |
+
This dataset is a synthetic collection of industrial nut images designed for image classification tasks, specifically focusing on defect detection in manufacturing pipelines. It serves as a benchmark and training resource for computer vision algorithms used in quality assurance.
|
| 36 |
+
|
| 37 |
+
## Dataset Structure
|
| 38 |
+
|
| 39 |
+
The dataset contains a total of **261 images** categorized into two classes:
|
| 40 |
+
- **`defect`**: Images representing industrial nuts with defects (e.g., structural, surface flaws).
|
| 41 |
+
- **`non_defect`**: Images representing normal, non-defective nuts.
|
| 42 |
+
|
| 43 |
+
The dataset includes a `metadata.csv` mapping image paths to their respective labels, as well as a `dataset-metadata.json` describing the dataset details.
|
| 44 |
+
|
| 45 |
+
### Directory Layout
|
| 46 |
+
```
|
| 47 |
+
├── README.md
|
| 48 |
+
├── dataset-metadata.json
|
| 49 |
+
├── metadata.csv
|
| 50 |
+
├── synthetic_defect/
|
| 51 |
+
│ ├── synth_defect_1.png
|
| 52 |
+
│ └── ...
|
| 53 |
+
└── synthetic_non_defect/
|
| 54 |
+
├── synth_non_defect_1.png
|
| 55 |
+
└── ...
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
### Data Fields
|
| 59 |
+
|
| 60 |
+
The `metadata.csv` contains the following fields:
|
| 61 |
+
- `file_name`: Path to the image file relative to the root directory (e.g. `synthetic_defect/synth_defect_1.png`).
|
| 62 |
+
- `label`: Class label (`defect` or `non_defect`).
|
| 63 |
+
|
| 64 |
+
## Use Cases
|
| 65 |
+
|
| 66 |
+
- **Quality Control & Automation**: Training models to detect defect products on assembly lines.
|
| 67 |
+
- **Anomaly Detection**: Evaluating unsupervised or semi-supervised anomaly detection methods.
|
| 68 |
+
- **Synthetic Data Research**: Analyzing the transferability of synthetic datasets to real-world scenarios.
|
| 69 |
+
|
| 70 |
+
## Licensing
|
| 71 |
+
|
| 72 |
+
Licensed under the [MIT License](https://opensource.org/licenses/MIT).
|