ankithreddy commited on
Commit
ee85a6e
·
verified ·
1 Parent(s): 0078bf1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -36
README.md CHANGED
@@ -1,36 +1,88 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- features:
5
- - name: guide_id
6
- dtype: int64
7
- - name: task_title
8
- dtype: string
9
- - name: device_name
10
- dtype: string
11
- - name: difficulty
12
- dtype: string
13
- - name: tools
14
- list: string
15
- - name: time_required_min
16
- dtype: int64
17
- - name: time_required_max
18
- dtype: int64
19
- - name: image_path
20
- dtype: image
21
- - name: text
22
- dtype: string
23
- - name: type
24
- dtype: string
25
- splits:
26
- - name: train
27
- num_bytes: 109480125.978
28
- num_examples: 4649
29
- download_size: 102506652
30
- dataset_size: 109480125.978
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ dataset_info:
4
+ features:
5
+ - name: image_path
6
+ dtype: image
7
+ - name: text
8
+ dtype: string
9
+ - name: task_title
10
+ dtype: string
11
+ - name: device_name
12
+ dtype: string
13
+ - name: difficulty
14
+ dtype: string
15
+ - name: tools
16
+ list: string
17
+ - name: time_required_min
18
+ dtype: int64
19
+ - name: time_required_max
20
+ dtype: int64
21
+ - name: guide_id
22
+ dtype: int64
23
+ - name: type
24
+ dtype: string
25
+ splits:
26
+ - name: train
27
+ num_bytes: 109480125.978
28
+ num_examples: 4649
29
+ download_size: 102506652
30
+ dataset_size: 109480125.978
31
+ configs:
32
+ - config_name: default
33
+ data_files:
34
+ - split: train
35
+ path: data/train-*
36
+ ---
37
+
38
+
39
+ # Electronics Repair Dataset
40
+
41
+ **A comprehensive mini dataset covering smartwatch and other wearable repair and teardown procedures.**
42
+
43
+ ![Dataset Preview](https://img.shields.io/badge/Examples-4,649-blue) ![Images](https://img.shields.io/badge/Images-4,649-green) ![Categories](https://img.shields.io/badge/Categories-3-orange)
44
+
45
+ ## Dataset Overview
46
+
47
+ This dataset contains **4,649 carefully examples**
48
+
49
+ ## Dataset Structure
50
+
51
+ Each example contains rich metadata and high-quality repair images:
52
+
53
+ ```python
54
+ {
55
+ 'guide_id': 37170,
56
+ 'task_title': 'Microsoft Band Wrist Clasp Replacement',
57
+ 'device_name': 'Microsoft Band',
58
+ 'difficulty': 'Easy',
59
+ 'tools': ['T3 Torx Screwdriver'],
60
+ 'time_required_min': 300,
61
+ 'time_required_max': 600,
62
+ 'image_path': <PIL.Image(512, 512)>, # High-quality repair image
63
+ 'text': 'This is a Microsoft Band Wrist Clasp Replacement guide...',
64
+ 'type': 'guide_overview' # or 'step_instruction', 'teardown_analysis'
65
+ }
66
+ ```
67
+
68
+ ## Quick Start
69
+
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ # Load the complete dataset
74
+ dataset = load_dataset("ankithreddy/repairdataset-mini")
75
+
76
+ # Access examples
77
+ example = dataset['train'][0]
78
+ image = example['image_path'] # PIL Image object
79
+ instruction = example['text'] # Repair instruction text
80
+ device = example['device_name'] # Target device
81
+
82
+ # Filter by category
83
+ repair_guides = dataset['train'].filter(lambda x: x['type'] == 'guide_overview')
84
+ teardowns = dataset['train'].filter(lambda x: x['type'] == 'teardown_analysis')
85
+ steps = dataset['train'].filter(lambda x: x['type'] == 'step_instruction')
86
+ ```
87
+
88
+ This dataset was created using publicly available data from here https://www.ifixit.com/api/2.0/doc for research and educational purposes only. All data belongs to iFixit and respective contributors