Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -89,7 +89,7 @@ configs:
|
|
| 89 |
|
| 90 |
- π Fruit Type Classification
|
| 91 |
- π± Growth Stage Recognition (`unripe`, `pest-damaged`, `mature`, `rotten`)
|
| 92 |
-
- πΎ Agricultural Action Recommendation
|
| 93 |
- π½οΈ Consumer Score Prediction (1β100)
|
| 94 |
|
| 95 |
The dataset contains **3,200 high-quality expert-annotated images** covering **16 fruit categories**, each across **4 growth stages**.
|
|
@@ -105,7 +105,6 @@ The dataset contains **3,200 high-quality expert-annotated images** covering **1
|
|
| 105 |
- Growth stage
|
| 106 |
- Recommended action (`keep for further growth`, `try to recover it`, `discard it`)
|
| 107 |
- Consumer score (1β100 rating from 30 human raters)
|
| 108 |
-
|
| 109 |
---
|
| 110 |
|
| 111 |
## π Tasks
|
|
@@ -114,10 +113,51 @@ The dataset contains **3,200 high-quality expert-annotated images** covering **1
|
|
| 114 |
2. **Growth Stage Identification**
|
| 115 |
3. **Action Recommendation**
|
| 116 |
4. **Consumer Score Prediction**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
---
|
| 119 |
|
| 120 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
|
| 122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
|
|
|
|
|
|
| 89 |
|
| 90 |
- π Fruit Type Classification
|
| 91 |
- π± Growth Stage Recognition (`unripe`, `pest-damaged`, `mature`, `rotten`)
|
| 92 |
+
- πΎ Agricultural Action Recommendation ('keep for further growth', 'picking it', 'try to recover it', 'discard it')
|
| 93 |
- π½οΈ Consumer Score Prediction (1β100)
|
| 94 |
|
| 95 |
The dataset contains **3,200 high-quality expert-annotated images** covering **16 fruit categories**, each across **4 growth stages**.
|
|
|
|
| 105 |
- Growth stage
|
| 106 |
- Recommended action (`keep for further growth`, `try to recover it`, `discard it`)
|
| 107 |
- Consumer score (1β100 rating from 30 human raters)
|
|
|
|
| 108 |
---
|
| 109 |
|
| 110 |
## π Tasks
|
|
|
|
| 113 |
2. **Growth Stage Identification**
|
| 114 |
3. **Action Recommendation**
|
| 115 |
4. **Consumer Score Prediction**
|
| 116 |
+
|
| 117 |
+
All tasks are evaluated under both **zero-shot** and **one-shot** settings using multimodal large language models (MLLMs).
|
| 118 |
+
|
| 119 |
+
---
|
| 120 |
+
|
| 121 |
+
## βοΈ Environment Setup
|
| 122 |
+
|
| 123 |
+
We provide both `conda` and `pip` setup options (Python 3.11 recommended).
|
| 124 |
+
|
| 125 |
+
### β
Option A: Conda (Recommended)
|
| 126 |
+
|
| 127 |
+
```bash
|
| 128 |
+
conda env create -f environment.yml
|
| 129 |
+
conda activate fruitbench
|
| 130 |
+
```
|
| 131 |
|
| 132 |
+
### β
Option B: pip
|
| 133 |
+
|
| 134 |
+
```bash
|
| 135 |
+
pip install -r requirements.txt
|
| 136 |
+
```
|
| 137 |
---
|
| 138 |
|
| 139 |
+
## π Usage
|
| 140 |
+
|
| 141 |
+
### 1. Clone the Repository
|
| 142 |
+
|
| 143 |
+
```bash
|
| 144 |
+
git lfs install
|
| 145 |
+
git clone https://huggingface.co/datasets/TJIET/FruitBench
|
| 146 |
+
|
| 147 |
+
```
|
| 148 |
+
|
| 149 |
+
### 3. Evaluate Models
|
| 150 |
+
|
| 151 |
+
```bash
|
| 152 |
+
python scripts/evaluate_models.py
|
| 153 |
+
```
|
| 154 |
+
|
| 155 |
+
## π Benchmark Details
|
| 156 |
|
| 157 |
+
- β
3,200 annotated fruit images
|
| 158 |
+
- π¦ 16 fruit types: strawberry, tomato, guava, dragon fruit, orange, pear, lychee, mango, kiwi, papaya, apple, grape, pomegranate, peach, banana, pomelo
|
| 159 |
+
- π± 4 growth stages: unripe, pest-damaged, mature, rotten
|
| 160 |
+
- π§βπΎ Expert action labels: keep for growth / pick it / recover / discard
|
| 161 |
+
- π― Consumer scores: average of 30 human ratings (range: 1β100)
|
| 162 |
|
| 163 |
+
---
|