dwb2023 commited on
Commit
1a1fb48
1 Parent(s): 7da7d9c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +108 -0
README.md CHANGED
@@ -35,3 +35,111 @@ configs:
35
  - split: validation
36
  path: data/validation-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  - split: validation
36
  path: data/validation-*
37
  ---
38
+
39
+ # Dataset Card for roboflow-bccd-paligemma
40
+
41
+ ## Dataset Description
42
+
43
+ - **Repository:** https://huggingface.co/datasets/dwb2023/roboflow-bccd-paligemma
44
+ - **Paper:** N/A
45
+
46
+ ### Dataset Summary
47
+
48
+ 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:
49
+
50
+ 1. Platelets
51
+ 2. Red Blood Cells (RBC)
52
+ 3. White Blood Cells (WBC)
53
+
54
+ Key features of the dataset:
55
+ - Total of 364 annotated images across train, validation, and test splits
56
+ - Bounding box annotations for each detected cell
57
+ - Labels identifying the cell types
58
+
59
+ The dataset is structured to support object detection tasks in the medical imaging domain, particularly for blood cell analysis.
60
+
61
+ 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.
62
+
63
+ ### Supported Tasks and Leaderboards
64
+
65
+ - **Tasks:** Object Detection
66
+
67
+ ### Languages
68
+
69
+ The dataset uses English labels.
70
+
71
+ ## Dataset Structure
72
+
73
+ ### Data Instances
74
+
75
+ A typical data instance contains:
76
+ - An image of blood cells
77
+ - Bounding box annotations for detected cells
78
+ - Labels identifying the cell types (Platelets, RBC, WBC)
79
+
80
+ ### Data Fields
81
+
82
+ - `image_id`: Unique identifier for each image
83
+ - `image`: The blood cell image
84
+ - `annotations`: Contains annotation details
85
+
86
+ The `annotations` field has the following structure:
87
+
88
+ | Field Name | Description | Data Type |
89
+ |------------|-------------|-----------|
90
+ | image | Identifier for the image being annotated | string |
91
+ | prefix | Standard prefix for all annotations, typically "detect Platelets ; RBC ; WBC" | string |
92
+ | suffix | Contains the actual annotation data, including bounding box coordinates and cell type labels | string |
93
+
94
+ The `suffix` field contains multiple annotations for each image, separated by semicolons. Each annotation typically follows this format:
95
+
96
+ `<locx1><locy1><locx2><locy2> CellType`
97
+
98
+ Where:
99
+ - `<locx1><locy1><locx2><locy2>` represent the bounding box coordinates
100
+ - `CellType` is one of: RBC, WBC, or Platelets
101
+
102
+ Example of a complete annotation:
103
+ ```
104
+ prefix: "detect Platelets ; RBC ; WBC"
105
+ suffix: "<loc0834><loc0158><loc1004><loc0347> RBC ; <loc0586><loc0193><loc0827><loc0403> RBC ; <loc0040><loc0169><loc0290><loc0377> WBC"
106
+ ```
107
+
108
+ ### Data Splits
109
+
110
+ The dataset is divided into three splits:
111
+ - Train: 255 images
112
+ - Validation: 73 images
113
+ - Test: 36 images
114
+
115
+ ## Considerations for Using the Data
116
+
117
+ ### Social Impact of Dataset
118
+
119
+ 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.
120
+
121
+ ## Additional Information
122
+
123
+ ### Licensing Information
124
+
125
+ This dataset is licensed under Apache 2.0.
126
+
127
+ ### Citation Information
128
+
129
+ If you use this dataset in your research, please cite it as:
130
+
131
+ ```
132
+ @misc{
133
+ bccd-ouzjz_dataset,
134
+ title = { bccd Dataset },
135
+ type = { Open Source Dataset },
136
+ author = { Roboflow 100 },
137
+ howpublished = { \url{ https://universe.roboflow.com/roboflow-100/bccd-ouzjz } },
138
+ url = { https://universe.roboflow.com/roboflow-100/bccd-ouzjz },
139
+ journal = { Roboflow Universe },
140
+ publisher = { Roboflow },
141
+ year = { 2023 },
142
+ month = { may },
143
+ note = { visited on 2024-08-02 },
144
+ }
145
+ ```