parquet-converter commited on
Commit
4e72b81
1 Parent(s): ce7718b

Update parquet files

Browse files
data/test-00000-of-00001-283c6964a2943199.parquet → Francesco--asbestos/parquet-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f5ad40ad073dca602e587f1756c3e74fe92f153079b7e507ac19d7bb78e14205
3
- size 8219043
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a99f1a4088e25016313ea61f2c72e5c4663f633f11ef6427b6ac64f7db5ac42d
3
+ size 8219042
dataset.tar.gz → Francesco--asbestos/parquet-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a38b6afdce7a01404fc97e493deee283cf3cce949bb52d41c32d8f8eba8beed1
3
- size 40310841
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80108e5af5c131f8e07e839d96a117ac3945a9a7a4d7cf6303fd1a860b17463b
3
+ size 28891923
data/validation-00000-of-00001-6e5e04a76562dda8.parquet → Francesco--asbestos/parquet-validation.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fb40c2b7dcccd4e9a3924756d670eabb6286087261eef6f65b62052ba2a3ec73
3
- size 4127236
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c80ea16068ad3399afb3179a676144ddc65e5865f8abc32d9ef703df042a579
3
+ size 4127235
README.md DELETED
@@ -1,141 +0,0 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: image_id
5
- dtype: int64
6
- - name: image
7
- dtype: image
8
- - name: width
9
- dtype: int32
10
- - name: height
11
- dtype: int32
12
- - name: objects
13
- sequence:
14
- - name: id
15
- dtype: int64
16
- - name: area
17
- dtype: int64
18
- - name: bbox
19
- sequence: float32
20
- length: 4
21
- - name: category
22
- dtype:
23
- class_label:
24
- names:
25
- '0': asbestos
26
- '1': thick-dark-mark
27
- '2': thick-light-mark
28
- '3': thin-dark-mark
29
- '4': thin-light-mark
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: asbestos
48
- tags:
49
- - rf100
50
- ---
51
-
52
- # Dataset Card for asbestos
53
-
54
- ** The original COCO dataset is stored at `dataset.tar.gz`**
55
-
56
- ## Dataset Description
57
-
58
- - **Homepage:** https://universe.roboflow.com/object-detection/asbestos
59
- - **Point of Contact:** francesco.zuppichini@gmail.com
60
-
61
- ### Dataset Summary
62
-
63
- asbestos
64
-
65
- ### Supported Tasks and Leaderboards
66
-
67
- - `object-detection`: The dataset can be used to train a model for Object Detection.
68
-
69
- ### Languages
70
-
71
- English
72
-
73
- ## Dataset Structure
74
-
75
- ### Data Instances
76
-
77
- A data point comprises an image and its object annotations.
78
-
79
- ```
80
- {
81
- 'image_id': 15,
82
- 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>,
83
- 'width': 964043,
84
- 'height': 640,
85
- 'objects': {
86
- 'id': [114, 115, 116, 117],
87
- 'area': [3796, 1596, 152768, 81002],
88
- 'bbox': [
89
- [302.0, 109.0, 73.0, 52.0],
90
- [810.0, 100.0, 57.0, 28.0],
91
- [160.0, 31.0, 248.0, 616.0],
92
- [741.0, 68.0, 202.0, 401.0]
93
- ],
94
- 'category': [4, 4, 0, 0]
95
- }
96
- }
97
- ```
98
-
99
- ### Data Fields
100
-
101
- - `image`: the image id
102
- - `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]`
103
- - `width`: the image width
104
- - `height`: the image height
105
- - `objects`: a dictionary containing bounding box metadata for the objects present on the image
106
- - `id`: the annotation id
107
- - `area`: the area of the bounding box
108
- - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
109
- - `category`: the object's category.
110
-
111
-
112
- #### Who are the annotators?
113
-
114
- Annotators are Roboflow users
115
-
116
- ## Additional Information
117
-
118
- ### Licensing Information
119
-
120
- See original homepage https://universe.roboflow.com/object-detection/asbestos
121
-
122
- ### Citation Information
123
-
124
- ```
125
- @misc{ asbestos,
126
- title = { asbestos Dataset },
127
- type = { Open Source Dataset },
128
- author = { Roboflow 100 },
129
- howpublished = { \url{ https://universe.roboflow.com/object-detection/asbestos } },
130
- url = { https://universe.roboflow.com/object-detection/asbestos },
131
- journal = { Roboflow Universe },
132
- publisher = { Roboflow },
133
- year = { 2022 },
134
- month = { nov },
135
- note = { visited on 2023-03-29 },
136
- }"
137
- ```
138
-
139
- ### Contributions
140
-
141
- Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/train-00000-of-00001-4bdd9b41e9daaf91.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b192eab19a935c94019158d3076f90cec3ac7b097818b6b36aa4de4734b6601c
3
- size 28891924
 
 
 
 
dataset_info.json DELETED
@@ -1 +0,0 @@
1
- {"description": "\nasbestos - v1 release\n==============================\n\nThis dataset was exported via roboflow.com on August 3, 2022 at 3:50 PM GMT\n\nRoboflow is an end-to-end computer vision platform that helps you\n* collaborate with your team on computer vision projects\n* collect & organize images\n* understand unstructured image data\n* annotate, and create datasets\n* export, train, and deploy computer vision models\n* use active learning to improve your dataset over time\n\nIt includes 1331 images.\nAsbestos are annotated in COCO format.\n\nThe following pre-processing was applied to each image:\n* Auto-orientation of pixel data (with EXIF-orientation stripping)\n* Resize to 640x640 (Stretch)\n\nNo image augmentation techniques were applied.\n\n\n", "citation": "@misc{ asbestos,\n title = { asbestos Dataset },\n type = { Open Source Dataset },\n author = { Roboflow 100 },\n howpublished = { \\url{ https://universe.roboflow.com/object-detection/asbestos } },\n url = { https://universe.roboflow.com/object-detection/asbestos },\n journal = { Roboflow Universe },\n publisher = { Roboflow },\n year = { 2022 },\n month = { nov },\n note = { visited on 2023-03-29 },\n}\"", "homepage": "https://universe.roboflow.com/object-detection/asbestos", "license": "CC BY 4.0", "features": {"image_id": {"dtype": "int64", "_type": "Value"}, "image": {"_type": "Image"}, "width": {"dtype": "int32", "_type": "Value"}, "height": {"dtype": "int32", "_type": "Value"}, "objects": {"feature": {"id": {"dtype": "int64", "_type": "Value"}, "area": {"dtype": "int64", "_type": "Value"}, "bbox": {"feature": {"dtype": "float32", "_type": "Value"}, "length": 4, "_type": "Sequence"}, "category": {"names": ["asbestos", "thick-dark-mark", "thick-light-mark", "thin-dark-mark", "thin-light-mark"], "_type": "ClassLabel"}}, "_type": "Sequence"}}, "builder_name": "dataset", "config_name": "default", "version": {"version_str": "1.0.0", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 29171800, "num_examples": 932, "dataset_name": "dataset"}, "validation": {"name": "validation", "num_bytes": 4162544, "num_examples": 133, "dataset_name": "dataset"}, "test": {"name": "test", "num_bytes": 8287774, "num_examples": 266, "dataset_name": "dataset"}}, "download_checksums": {"https://huggingface.co/datasets/Francesco/asbestos/resolve/main/dataset.tar.gz": {"num_bytes": 40310841, "checksum": null}}, "download_size": 40310841, "dataset_size": 41622118, "size_in_bytes": 81932959}