admin commited on
Commit
a649347
·
1 Parent(s): e52a29a
Files changed (2) hide show
  1. .gitignore +2 -0
  2. README.md +25 -5
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ test.*
2
+ *__pycache__*
README.md CHANGED
@@ -22,8 +22,6 @@ dataset_info:
22
  names:
23
  '0': fresh
24
  '1': rotten
25
- - name: quality
26
- dtype: image
27
  - name: category
28
  dtype:
29
  class_label:
@@ -35,8 +33,6 @@ dataset_info:
35
  '4': oranges
36
  '5': potato
37
  '6': tomato
38
- - name: category
39
- dtype: image
40
  splits:
41
  - name: train
42
  num_bytes: 3125926
@@ -60,4 +56,28 @@ configs:
60
  path: default/test/data-*.arrow
61
  ---
62
 
63
- # Intro
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  names:
23
  '0': fresh
24
  '1': rotten
 
 
25
  - name: category
26
  dtype:
27
  class_label:
 
33
  '4': oranges
34
  '5': potato
35
  '6': tomato
 
 
36
  splits:
37
  - name: train
38
  num_bytes: 3125926
 
56
  path: default/test/data-*.arrow
57
  ---
58
 
59
+
60
+ # Intro
61
+ The Fruit and Vegetable Quality Dataset is a multi‑category image dataset designed for quality classification and produce recognition tasks. It contains over 19,000 images across seven fruit and vegetable types (apples, bananas, cucumbers, okra, oranges, potatoes, and tomatoes), each annotated with a binary quality label (fresh or rotten). The dataset is split into training (13,355 samples), validation (2,857), and test (2,867) sets, providing a standardized benchmark for developing and evaluating computer vision models in agricultural quality inspection. With an MIT license and a size range of 10K to 100K samples, the dataset supports academic and industrial research in tasks such as defect detection, quality grading, and species identification.
62
+
63
+ ## Usage
64
+ ```python
65
+ from datasets import load_dataset
66
+ ds = load_dataset(
67
+ "RobotIX-Lab/fruit_quality",
68
+ name="default",
69
+ split="train",
70
+ cache_dir="./__pycache__",
71
+ )
72
+ for i in ds:
73
+ print(i)
74
+ ```
75
+
76
+ ## Maintenance
77
+ ```bash
78
+ GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/RobotIX-Lab/fruit_quality
79
+ cd vtuber_emojis
80
+ ```
81
+
82
+ ## Mirror
83
+ <https://www.modelscope.cn/datasets/RobotIX-Lab/fruit_quality>