fjba20 commited on
Commit
8756b5d
1 Parent(s): 054f8a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +84 -23
README.md CHANGED
@@ -1,13 +1,4 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*
7
- - split: validation
8
- path: data/validation-*
9
- - split: test
10
- path: data/test-*
11
  dataset_info:
12
  features:
13
  - name: image_id
@@ -36,19 +27,89 @@ dataset_info:
36
  '2': fracture
37
  '3': line
38
  '4': messed_up_angle
39
- splits:
40
- - name: train
41
- num_bytes: 156473077.0
42
- num_examples: 626
43
- - name: validation
44
- num_bytes: 1278386.0
45
- num_examples: 44
46
- - name: test
47
- num_bytes: 2530151.0
48
- num_examples: 88
49
- download_size: 68671666
50
- dataset_size: 160281614.0
 
 
 
 
 
 
 
 
51
  ---
52
- # Dataset Card for "Huesitos"
53
 
54
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: image_id
 
27
  '2': fracture
28
  '3': line
29
  '4': messed_up_angle
30
+ annotations_creators:
31
+ - crowdsourced
32
+ language_creators:
33
+ - found
34
+ language:
35
+ - en
36
+ license:
37
+ - cc
38
+ multilinguality:
39
+ - monolingual
40
+ size_categories:
41
+ - 1K<n<10K
42
+ source_datasets:
43
+ - original
44
+ task_categories:
45
+ - object-detection
46
+ task_ids: []
47
+ pretty_name: bone-fracture-7fylg
48
+ tags:
49
+ - rf100
50
  ---
 
51
 
52
+
53
+ ## Dataset Structure
54
+
55
+ ### Data Instances
56
+
57
+ A data point comprises an image and its object annotations.
58
+
59
+ ```
60
+ {
61
+ 'image_id': 15,
62
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
63
+ 'width': 964043,
64
+ 'height': 640,
65
+ 'objects': {
66
+ 'id': [114, 115, 116, 117],
67
+ 'area': [3796, 1596, 152768, 81002],
68
+ 'bbox': [
69
+ [302.0, 109.0, 73.0, 52.0],
70
+ [810.0, 100.0, 57.0, 28.0],
71
+ [160.0, 31.0, 248.0, 616.0],
72
+ [741.0, 68.0, 202.0, 401.0]
73
+ ],
74
+ 'category': [4, 4, 0, 0]
75
+ }
76
+ }
77
+ ```
78
+
79
+ ### Data Fields
80
+
81
+ - `image`: the image id
82
+ - `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]`
83
+ - `width`: the image width
84
+ - `height`: the image height
85
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
86
+ - `id`: the annotation id
87
+ - `area`: the area of the bounding box
88
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
89
+ - `category`: the object's category.
90
+
91
+
92
+ ## Licensing Information
93
+
94
+ See original homepage https://universe.roboflow.com/object-detection/bone-fracture-7fylg
95
+
96
+ ### Citation Information
97
+
98
+ ```
99
+ @misc{ bone-fracture-7fylg,
100
+ title = { bone fracture 7fylg Dataset },
101
+ type = { Open Source Dataset },
102
+ author = { Roboflow 100 },
103
+ howpublished = { \url{ https://universe.roboflow.com/object-detection/bone-fracture-7fylg } },
104
+ url = { https://universe.roboflow.com/object-detection/bone-fracture-7fylg },
105
+ journal = { Roboflow Universe },
106
+ publisher = { Roboflow },
107
+ year = { 2022 },
108
+ month = { nov },
109
+ note = { visited on 2023-03-29 },
110
+ }"
111
+ ```
112
+
113
+ ### Contributions
114
+
115
+ Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.