Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license:
|
| 3 |
+
- unknown
|
| 4 |
+
task_categories:
|
| 5 |
+
- object-detection
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
pretty_name: FriutDetection
|
| 9 |
+
size_categories:
|
| 10 |
+
- n<1K
|
| 11 |
+
dataset_info:
|
| 12 |
+
features:
|
| 13 |
+
- name: image_id
|
| 14 |
+
dtype: int64
|
| 15 |
+
- name: image
|
| 16 |
+
dtype: image
|
| 17 |
+
- name: width
|
| 18 |
+
dtype: int32
|
| 19 |
+
- name: height
|
| 20 |
+
dtype: int32
|
| 21 |
+
- name: objects
|
| 22 |
+
sequence:
|
| 23 |
+
- name: bbox
|
| 24 |
+
sequence: float32
|
| 25 |
+
length: 4
|
| 26 |
+
- name: category
|
| 27 |
+
dtype:
|
| 28 |
+
class_label:
|
| 29 |
+
names:
|
| 30 |
+
'0': Apple
|
| 31 |
+
'1': Banana
|
| 32 |
+
'2': Orange
|
| 33 |
+
splits:
|
| 34 |
+
- name: train
|
| 35 |
+
num_examples: 240
|
| 36 |
+
- name: test
|
| 37 |
+
num_examples: 60
|
| 38 |
+
configs:
|
| 39 |
+
- config_name: default
|
| 40 |
+
data_files:
|
| 41 |
+
- split: train
|
| 42 |
+
path: data/train-*
|
| 43 |
+
- split: test
|
| 44 |
+
path: data/test-*
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
# [Fruit Images for Object Detection](https://www.kaggle.com/datasets/mbkinaci/fruit-images-for-object-detection)
|
| 48 |
+
|
| 49 |
+
Download from Kaggle datasets.
|
| 50 |
+
|
| 51 |
+
## About Dataset
|
| 52 |
+
|
| 53 |
+
### Project
|
| 54 |
+
|
| 55 |
+
This dataset is the data used in this project.
|
| 56 |
+
|
| 57 |
+
### Context
|
| 58 |
+
|
| 59 |
+
A different dataset for object detection. 240 images in train folder. 60 images in test folder.
|
| 60 |
+
|
| 61 |
+
### Content
|
| 62 |
+
|
| 63 |
+
3 different fruits:
|
| 64 |
+
|
| 65 |
+
- Apple
|
| 66 |
+
- Banana
|
| 67 |
+
- Orange
|
| 68 |
+
|
| 69 |
+
### Acknowledgements
|
| 70 |
+
|
| 71 |
+
`.xml` files were created with LabelImg. It is super easy to label objects in images.
|