docmhvr commited on
Commit
5024813
·
verified ·
1 Parent(s): 7d383b9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -41
README.md CHANGED
@@ -1,41 +1,71 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- features:
5
- - name: image
6
- dtype: image
7
- - name: bboxes
8
- sequence:
9
- sequence: float32
10
- - name: labels
11
- sequence:
12
- class_label:
13
- names:
14
- '0': Broken Cable
15
- '1': Broken Insulator
16
- '2': Cable
17
- '3': Insulators
18
- '4': Tower
19
- '5': Vegetation
20
- splits:
21
- - name: train
22
- num_bytes: 114060938.86
23
- num_examples: 1794
24
- - name: validation
25
- num_bytes: 4561112.0
26
- num_examples: 77
27
- - name: test
28
- num_bytes: 2287163.0
29
- num_examples: 41
30
- download_size: 122200157
31
- dataset_size: 120909213.86
32
- configs:
33
- - config_name: default
34
- data_files:
35
- - split: train
36
- path: data/train-*
37
- - split: validation
38
- path: data/validation-*
39
- - split: test
40
- path: data/test-*
41
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Powerline Components and Faults Dataset
3
+
4
+ ## Overview
5
+
6
+ The **Powerline Components and Faults Dataset** is a dataset designed for object detection tasks involving powerline components and associated faults. It provides images of powerline infrastructure along with annotated bounding boxes for various components and faults.
7
+
8
+ This dataset is useful for training and evaluating models on powerline inspection, maintenance, and safety applications.
9
+
10
+ ## Dataset Structure
11
+
12
+ The dataset is organized into the following directories:
13
+
14
+ - `train/`: Contains training images and their corresponding annotation files.
15
+ - `validation/`: Contains validation images and their corresponding annotation files.
16
+ - `test/`: Contains test images and their corresponding annotation files.
17
+
18
+ Each image file has a corresponding `.txt` file in the same directory, which contains the annotations in YOLO format.
19
+
20
+ ## Data Format
21
+
22
+ ### Images
23
+
24
+ - Format: JPEG/PNG
25
+ - Resolution: Various resolutions
26
+
27
+ ### Annotations
28
+
29
+ Annotations are provided in YOLO format, where each line in a `.txt` file corresponds to an object in the image. The format is:
30
+
31
+ ```
32
+ class_id x_center y_center width height
33
+ ```
34
+
35
+ - `class_id`: The ID of the object class.
36
+ - `x_center`, `y_center`: The center of the bounding box (normalized between 0 and 1).
37
+ - `width`, `height`: The dimensions of the bounding box (normalized between 0 and 1).
38
+
39
+ ## Usage
40
+
41
+ You can use this dataset with popular machine learning frameworks and libraries. Below is an example of how to load the dataset using the Hugging Face `datasets` library:
42
+
43
+ ```python
44
+ from datasets import load_dataset
45
+
46
+ # Load the dataset
47
+ dataset = load_dataset("docmhvr/powerline-components-and-faults")
48
+
49
+ # Access the train, validation, and test splits
50
+ train_dataset = dataset['train']
51
+ val_dataset = dataset['validation']
52
+ test_dataset = dataset['test']
53
+ ```
54
+
55
+ ## License
56
+
57
+ This dataset is provided under the [MIT License](https://opensource.org/licenses/MIT). See the [LICENSE](LICENSE) file for more details.
58
+
59
+ ## Acknowledgements
60
+
61
+ This dataset was created as part of the research work on powerline inspection and fault detection. Data was collected using DJI Mini drone and manually compiled and annotated using Roboflow.
62
+
63
+ ## Research reference
64
+
65
+ You can find the related Research work published in IEEE, full text avaliable on researchgate here,
66
+
67
+ [Research Paper](https://www.researchgate.net/publication/381461493_UAV-Based_Powerline_Problem_Inspection_and_Classification_using_Machine_Learning_Approaches)
68
+
69
+ ## Contribution
70
+
71
+ If you would like to contribute to this dataset, please feel free to open an issue or submit a pull request on the [GitHub repository](https://github.com/docmhvr/UAV-Based-Powerline-Problem-Inspection-Using-Machine-Learning).