KaraAgroAI commited on
Commit
a33bf60
β€’
1 Parent(s): c1e8ef1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -15
README.md CHANGED
@@ -16,33 +16,64 @@ metrics:
16
 
17
  ## Drone-based Agricultural Dataset for Crop Yield Estimation
18
 
19
- ### Dataset Description
20
 
21
- Images of cashew, cocoa and coffee were collected from Uganda and Ghana using drones. Each high-resolution image is accompanied by meticulously annotated labels.
22
 
23
- #### Ghana
24
- 4,715 instances of cashew images and 4,069 instances of cocoa images. Each image in the Ghana set has a resolution of 16000 by 13000 pixels. See data sheet for more information.
25
 
26
- #### Uganda
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  A total of 6,086 drone images, comprising 3,000 for coffee and 3,086 for cashew. See data sheet for more information on the dataset.
28
 
29
- A total of 3000 coffee yield data points were collected in Uganda.
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- The Drone-based Agricultural Dataset for Crop Yield Estimation via [HuggingFace](https://huggingface.co/datasets/KaraAgroAI/Drone-based-Agricultural-Dataset-for-Crop-Yield-Estimation).
32
- The Dataset was compiled by two teams:
33
- * KaraAgro AI Foundation (Ghana)
34
- * Makerere AI Lab (Uganda)
35
 
 
 
 
 
 
 
 
 
 
36
 
37
- ## Intended uses
38
 
39
- The dataset was mainly developed for yield estimation. The dataset could be used for further research including crop abnormality detection.
40
 
41
 
42
- Our datasets comply with the Findable, Accessible, InterOperable, and Reusable (FAIR) data principles.
43
- The datasets have been assigned a Digital Object Identifier (DOI), a permanent unique identifier to facilitate findability and accessibility. The metadata is citable and includes domain-specific and file-level data that map to metadata standards within machine learning, computer vision, data analysis - geospatial and time series analysis to make it Interoperable.
44
 
45
- Our datasets along with their associated metadata may be accessed and downloaded via this link : <a href = "https://doi.org/10.57967/hf/0959"> doi.org/10.57967/hf/0959 </a>
46
 
47
 
48
 
 
16
 
17
  ## Drone-based Agricultural Dataset for Crop Yield Estimation
18
 
19
+ This repository contains a comprehensive dataset of cashew, cocoa and coffee images captured by drones, accompanied by meticulously annotated labels. To facilitate object detection, each image is paired with a corresponding text file in YOLO format. The YOLO format file contains annotations, including class labels and bounding box coordinates.
20
 
21
+ The dataset was collected by teams from Ghana (KaraAgro AI) and Uganda (Makerere AI Lab, Uganda Marconi Lab, National Coffee Research Institute, National Crops Resources Research Institute)
22
 
 
 
23
 
24
+ ### Ghana - KaraAgro AI
25
+ Each image in the Ghana set has a resolution of 16000 by 13000 pixels.
26
+
27
+ #### Dataset Labels
28
+
29
+ ```
30
+ Cashew --> ['cashew_tree', 'flower', 'immature', 'mature', 'ripe', 'spoilt']
31
+ Cocoa --> ['flower', 'immature', 'mature', 'ripe', 'spoilt', 'tree']
32
+ ```
33
+
34
+ #### Number of Images
35
+ ```json
36
+ Cashew --> 4,715 images
37
+ Cocoa --> 4, 069 images
38
+ ```
39
+
40
+ ### Uganda
41
  A total of 6,086 drone images, comprising 3,000 for coffee and 3,086 for cashew. See data sheet for more information on the dataset.
42
 
43
+ #### Dataset Labels
44
+
45
+ ```
46
+ Cashew --> ['cashew_tree', 'flower', 'immature', 'mature', 'ripe', 'spoilt']
47
+ Coffee --> ['unripe', 'ripening', 'ripe', 'spoilt', 'coffee']
48
+ ```
49
+
50
+ #### Number of Images
51
+ ```json
52
+ Cashew --> 3,086 images
53
+ Coffee --> 3,000 images
54
+ ```
55
 
56
+ ### Folder structure
 
 
 
57
 
58
+ ```markdown
59
+ Data/
60
+ └── Ghana/
61
+ β”œβ”€β”€ cashew.zip
62
+ β”œβ”€β”€ cocoa.zip
63
+ └── Uganda/
64
+ β”œβ”€β”€ cashew.zip
65
+ β”œβ”€β”€ coffee.zip
66
+ ```
67
 
68
+ ### Intended uses
69
 
70
+ The dataset which was mainly developed for yield estimation can also be usedfor further research including crop abnormality detection due to the presence of spoilt classes in the datasets
71
 
72
 
73
+ ### Dataset Information
74
+ The dataset was created by a team of data scientists from the KaraAgro AI Foundation, with support from the agricultural scientists and officers. The creation of this dataset was made possible through the funding from the Lacuna Fund. For detailed information regarding the datasheet, we invite you to explore the accompanying datasheet available [here](https://). This comprehensive resource offers a deeper understanding of the dataset's compostion, variables, data collection methodologies, and othe relevant details.
75
 
76
+ Our datasets comply with the Findable, Accessible, InterOperable, and Reusable (FAIR) data principles. The datasets have been assigned a Digital Object Identifier (DOI), a permanent unique identifier to facilitate findability and accessibility. The metadata is citable and includes domain-specific and file-level data that map to metadata standards within machine learning, computer vision, data analysis - geospatial and time series analysis to make it Interoperable. Our datasets along with their associated metadata may be accessed and downloaded via this link : <a href = "https://doi.org/10.57967/hf/0959"> doi.org/10.57967/hf/0959 </a>
77
 
78
 
79