Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
crowdsourced
Source Datasets:
original
Tags:
rf100
License:
Francesco commited on
Commit
f3d6cf3
1 Parent(s): 7a0e4db

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +111 -15
README.md CHANGED
@@ -23,20 +23,116 @@ dataset_info:
23
  class_label:
24
  names:
25
  '0': abdomen-MRI
26
- '1': '0'
27
- splits:
28
- - name: train
29
- num_bytes: 63994219.796
30
- num_examples: 1887
31
- - name: validation
32
- num_bytes: 9198838.0
33
- num_examples: 238
34
- - name: test
35
- num_bytes: 15359021.0
36
- num_examples: 479
37
- download_size: 86496359
38
- dataset_size: 88552078.796
 
 
 
 
 
 
 
 
39
  ---
40
- # Dataset Card for "abdomen-mri"
41
 
42
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  class_label:
24
  names:
25
  '0': abdomen-MRI
26
+ '1': 0
27
+ annotations_creators:
28
+ - crowdsourced
29
+ language_creators:
30
+ - found
31
+ language:
32
+ - en
33
+ license:
34
+ - cc
35
+ multilinguality:
36
+ - monolingual
37
+ size_categories:
38
+ - 1K<n<10K
39
+ source_datasets:
40
+ - original
41
+ task_categories:
42
+ - object-detection
43
+ task_ids: []
44
+ pretty_name: abdomen-mri
45
+ tags:
46
+ - rf100
47
  ---
 
48
 
49
+ # Dataset Card for abdomen-mri
50
+
51
+ ** The original COCO dataset is stored at `dataset.tar.gz`**
52
+
53
+ ## Dataset Description
54
+
55
+ - **Homepage:** https://universe.roboflow.com/object-detection/abdomen-mri
56
+ - **Point of Contact:** francesco.zuppichini@gmail.com
57
+
58
+ ### Dataset Summary
59
+
60
+ abdomen-mri
61
+
62
+ ### Supported Tasks and Leaderboards
63
+
64
+ - `object-detection`: The dataset can be used to train a model for Object Detection.
65
+
66
+ ### Languages
67
+
68
+ English
69
+
70
+ ## Dataset Structure
71
+
72
+ ### Data Instances
73
+
74
+ A data point comprises an image and its object annotations.
75
+
76
+ ```
77
+ {
78
+ 'image_id': 15,
79
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
80
+ 'width': 964043,
81
+ 'height': 640,
82
+ 'objects': {
83
+ 'id': [114, 115, 116, 117],
84
+ 'area': [3796, 1596, 152768, 81002],
85
+ 'bbox': [
86
+ [302.0, 109.0, 73.0, 52.0],
87
+ [810.0, 100.0, 57.0, 28.0],
88
+ [160.0, 31.0, 248.0, 616.0],
89
+ [741.0, 68.0, 202.0, 401.0]
90
+ ],
91
+ 'category': [4, 4, 0, 0]
92
+ }
93
+ }
94
+ ```
95
+
96
+ ### Data Fields
97
+
98
+ - `image`: the image id
99
+ - `image`: `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
100
+ - `width`: the image width
101
+ - `height`: the image height
102
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
103
+ - `id`: the annotation id
104
+ - `area`: the area of the bounding box
105
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
106
+ - `category`: the object's category.
107
+
108
+
109
+ #### Who are the annotators?
110
+
111
+ Annotators are Roboflow users
112
+
113
+ ## Additional Information
114
+
115
+ ### Licensing Information
116
+
117
+ See original homepage https://universe.roboflow.com/object-detection/abdomen-mri
118
+
119
+ ### Citation Information
120
+
121
+ ```
122
+ @misc{ abdomen-mri,
123
+ title = { abdomen mri Dataset },
124
+ type = { Open Source Dataset },
125
+ author = { Roboflow 100 },
126
+ howpublished = { \url{ https://universe.roboflow.com/object-detection/abdomen-mri } },
127
+ url = { https://universe.roboflow.com/object-detection/abdomen-mri },
128
+ journal = { Roboflow Universe },
129
+ publisher = { Roboflow },
130
+ year = { 2022 },
131
+ month = { nov },
132
+ note = { visited on 2023-03-29 },
133
+ }"
134
+ ```
135
+
136
+ ### Contributions
137
+
138
+ Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.