Datasets:
File size: 554 Bytes
d3ca56a 77d9a66 d3ca56a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
---
task_categories:
- image-classification
tags:
- vision
- fruits
- classification
---
# Fruit Classification Dataset
This dataset contains images of fruits classified into six categories:
fresh and rotten apples, bananas, and oranges.
## Classes
- fresh_apple
- fresh_banana
- fresh_orange
- rotten_apple
- rotten_banana
- rotten_orange
## Structure
- Images stored in train/ and test/
- Labels provided in train.csv
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("menasi11/fruit-classification")
print(dataset)
|