dwb2023 commited on
Commit
5478996
·
verified ·
1 Parent(s): 0962dc3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md CHANGED
@@ -35,3 +35,106 @@ configs:
35
  - split: validation
36
  path: data/validation-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  - split: validation
36
  path: data/validation-*
37
  ---
38
+
39
+
40
+ # Dataset Card for roboflow-bccd-paligemma
41
+
42
+ ## Dataset Description
43
+
44
+ - **Repository:** https://huggingface.co/datasets/dwb2023/roboflow-bccd-paligemma
45
+ - **Paper:** N/A
46
+
47
+ ### Dataset Summary
48
+
49
+ This dataset, roboflow-bccd-paligemma, is a modified version of the BCCD (Blood Cell Count and Detection) dataset. It contains blood cell images annotated for object detection tasks, specifically targeting three types of blood cells:
50
+
51
+ 1. Platelets
52
+ 2. Red Blood Cells (RBC)
53
+ 3. White Blood Cells (WBC)
54
+
55
+ Key features of the dataset:
56
+ - Total of 364 annotated images across train, validation, and test splits
57
+ - Bounding box annotations for each detected cell
58
+ - Labels identifying the cell types
59
+
60
+ The dataset is structured to support object detection tasks in the medical imaging domain, particularly for blood cell analysis.
61
+
62
+ It's crucial to note that this dataset is a derivative work based on the original BCCD dataset. When using this dataset, proper attribution is essential. Please use the citation provided at the end of this card in any work that utilizes this data.
63
+
64
+ ### Supported Tasks and Leaderboards
65
+
66
+ - **Tasks:** Object Detection
67
+
68
+ ### Languages
69
+
70
+ The dataset uses English labels.
71
+
72
+ ## Dataset Structure
73
+
74
+ ### Data Instances
75
+
76
+ A typical data instance contains:
77
+ - An image of blood cells
78
+ - Bounding box annotations for detected cells
79
+ - Labels identifying the cell types (Platelets, RBC, WBC)
80
+
81
+ ### Data Fields
82
+
83
+ - `image_id`: Unique identifier for each image
84
+ - `image`: The blood cell image
85
+ - `annotations`: Contains annotation details
86
+
87
+ The `annotations` field has the following structure:
88
+
89
+ | Field Name | Description | Data Type |
90
+ |------------|-------------|-----------|
91
+ | image | Identifier for the image being annotated | string |
92
+ | prefix | Standard prefix for all annotations, typically "detect Platelets ; RBC ; WBC" | string |
93
+ | suffix | Contains the actual annotation data, including bounding box coordinates and cell type labels | string |
94
+
95
+ The `suffix` field contains multiple annotations for each image, separated by semicolons. Each annotation typically follows this format:
96
+
97
+ `<loc_x1><loc_y1><loc_x2><loc_y2> CellType`
98
+
99
+ Where:
100
+ - `<loc_x1><loc_y1><loc_x2><loc_y2>` represent the bounding box coordinates
101
+ - `CellType` is one of: RBC, WBC, or Platelets
102
+
103
+ Example of a complete annotation:
104
+ ```
105
+ prefix: "detect Platelets ; RBC ; WBC"
106
+ suffix: "<loc0834><loc0158><loc1004><loc0347> RBC ; <loc0586><loc0193><loc0827><loc0403> RBC ; <loc0040><loc0169><loc0290><loc0377> WBC"
107
+ ```
108
+
109
+ ### Data Splits
110
+
111
+ The dataset is divided into three splits:
112
+ - Train: 255 images
113
+ - Validation: 73 images
114
+ - Test: 36 images
115
+
116
+ ## Considerations for Using the Data
117
+
118
+ ### Social Impact of Dataset
119
+
120
+ This dataset could potentially aid in automating blood cell counting and classification, which may improve efficiency in medical diagnostics. However, as with any medical-related AI application, care must be taken to ensure accuracy and proper validation before clinical use.
121
+
122
+ ## Additional Information
123
+
124
+ ### Licensing Information
125
+
126
+ This dataset is licensed under Apache 2.0.
127
+
128
+ ### Citation Information
129
+
130
+ If you use this dataset in your research, please cite it as:
131
+
132
+ ```
133
+ @misc{roboflow-bccd-paligemma,
134
+ title={BCCD Blood Cell Count and Detection Dataset},
135
+ author={Roboflow},
136
+ year={2024},
137
+ howpublished={\url{https://huggingface.co/datasets/dwb2023/roboflow-bccd-paligemma}},
138
+ note={Dataset made available through Hugging Face}
139
+ }
140
+ ```