TJIET commited on
Commit
9a00bce
Β·
verified Β·
1 Parent(s): cc434c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -4
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
- ## πŸ“¦ Data Format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
 
122
- Organized in `imagefolder` style:1
 
 
 
 
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
+ ---