alkzar90 commited on
Commit
efc2896
1 Parent(s): b3a48cc

Change tab config

Browse files
Files changed (1) hide show
  1. NIH-Chest-X-ray-dataset.py +16 -17
NIH-Chest-X-ray-dataset.py CHANGED
@@ -127,23 +127,22 @@ class ChestXray14(datasets.GeneratorBasedBuilder):
127
  keys = ("image", "labels")
128
 
129
  if self.config.name == "object-detection":
130
- pass
131
- # features = datasets.Features(
132
- # {
133
- # "image_id": datasets.Value("string"),
134
- # "patient_id": datasets.Value("int32"),
135
- # "image": datasets.Image(),
136
- # "width": datasets.Value("int32"),
137
- # "height": datasets.Value("int32"),
138
- # }
139
- # )
140
- # object_dict = {
141
- # "image_id": datasets.Value("string"),
142
- # "area": datasets.Value("int64"),
143
- # "bbox": datasets.Sequence(datasets.Value("float32"), length=4),
144
- # }
145
- # features["objects"] = [object_dict]
146
- # keys = ("image", "objects")
147
 
148
  return datasets.DatasetInfo(
149
  description=_DESCRIPTION,
 
127
  keys = ("image", "labels")
128
 
129
  if self.config.name == "object-detection":
130
+ features = datasets.Features(
131
+ {
132
+ "image_id": datasets.Value("string"),
133
+ "patient_id": datasets.Value("int32"),
134
+ "image": datasets.Image(),
135
+ "width": datasets.Value("int32"),
136
+ "height": datasets.Value("int32"),
137
+ }
138
+ )
139
+ object_dict = {
140
+ "image_id": datasets.Value("string"),
141
+ "area": datasets.Value("int64"),
142
+ "bbox": datasets.Sequence(datasets.Value("float32"), length=4),
143
+ }
144
+ features["objects"] = [object_dict]
145
+ keys = ("image", "objects")
 
146
 
147
  return datasets.DatasetInfo(
148
  description=_DESCRIPTION,