open_images_challenge2019_Detection
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Open Images는 이미지 수준 레이블, 객체 경계 상자, 객체 분할 마스크 및 시각적 관계로 주석이 달린 최대 900만 개의 이미지로 구성된 공동 릴리스입니다. 이 독특하고 방대하고 다양한 데이터 세트는 이미지 분석 및 이해 분야의 최첨단 발전을 촉진하도록 설계되었습니다.
여기에는 대회의 개체 감지 트랙에서 얻은 데이터가 포함되어 있습니다. 이 트랙의 목표는 500개 클래스의 모든 객체 인스턴스 주위에 긴밀한 경계 상자를 예측하는 것입니다.
이미지에는 특정 객체 클래스가 있음을 나타내는 양수 이미지 수준 레이블과 특정 클래스가 없음을 나타내는 음수 이미지 수준 레이블로 주석이 추가됩니다. 경쟁에서 주석이 추가되지 않은 다른 모든 클래스는 해당 이미지의 평가에서 제외됩니다. 이미지의 각 양수 이미지 수준 레이블에 대해 이미지에 있는 해당 개체 클래스의 모든 인스턴스에 주석이 추가되었습니다.
나뉘다 | 예 |
---|
'test' | 99,999 |
'train' | 1,743,042 |
'validation' | 41,620 |
FeaturesDict({
'bobjects': Sequence({
'bbox': BBoxFeature(shape=(4,), dtype=float32),
'is_group_of': bool,
'label': ClassLabel(shape=(), dtype=int64, num_classes=500),
}),
'id': Text(shape=(), dtype=string),
'image': Image(shape=(None, None, 3), dtype=uint8),
'objects': Sequence({
'confidence': float32,
'label': ClassLabel(shape=(), dtype=int64, num_classes=500),
'source': Text(shape=(), dtype=string),
}),
})
특징 | 수업 | 모양 | Dtype | 설명 |
---|
| 특징Dict | | | |
b객체 | 순서 | | | |
b객체/bbox | B박스특징 | (4,) | float32 | |
b객체/is_group_of | 텐서 | | 부울 | |
객체/레이블 | 클래스 라벨 | | 정수64 | |
ID | 텍스트 | | 끈 | |
영상 | 영상 | (없음, 없음, 3) | uint8 | |
사물 | 순서 | | | |
객체/신뢰 | 텐서 | | float32 | |
객체/라벨 | 클래스 라벨 | | 정수64 | |
객체/소스 | 텍스트 | | 끈 | |
open_images_challenge2019_Detection/200k (기본 구성)

open_images_challenge2019_Detection/300k

달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-06-01(UTC)
[null,null,["최종 업데이트: 2024-06-01(UTC)"],[],[],null,["# open_images_challenge2019_detection\n\n\u003cbr /\u003e\n\n- **Description**:\n\nOpen Images is a collaborative release of \\~9 million images annotated with\nimage-level labels, object bounding boxes, object segmentation masks, and visual\nrelationships. This uniquely large and diverse dataset is designed to spur state\nof the art advances in analyzing and understanding images.\n\nThis contains the data from thee Object Detection track of the competition. The\ngoal in this track is to predict a tight bounding box around all object\ninstances of 500 classes.\n\nThe images are annotated with positive image-level labels, indicating certain\nobject classes are present, and with negative image-level labels, indicating\ncertain classes are absent. In the competition, all other unannotated classes\nare excluded from evaluation in that image. For each positive image-level label\nin an image, every instance of that object class in the image was annotated.\n\n- **Homepage** :\n \u003chttps://storage.googleapis.com/openimages/web/challenge2019.html\u003e\n\n- **Source code** :\n [`tfds.datasets.open_images_challenge2019_detection.Builder`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/datasets/open_images_challenge2019_detection/open_images_challenge2019_detection_dataset_builder.py)\n\n- **Versions**:\n\n - **`1.0.0`** (default): No release notes.\n- **Download size** : `534.63 GiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n No\n\n- **Splits**:\n\n| Split | Examples |\n|----------------|-----------|\n| `'test'` | 99,999 |\n| `'train'` | 1,743,042 |\n| `'validation'` | 41,620 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'bobjects': Sequence({\n 'bbox': BBoxFeature(shape=(4,), dtype=float32),\n 'is_group_of': bool,\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=500),\n }),\n 'id': Text(shape=(), dtype=string),\n 'image': Image(shape=(None, None, 3), dtype=uint8),\n 'objects': Sequence({\n 'confidence': float32,\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=500),\n 'source': Text(shape=(), dtype=string),\n }),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|----------------------|--------------|-----------------|---------|-------------|\n| | FeaturesDict | | | |\n| bobjects | Sequence | | | |\n| bobjects/bbox | BBoxFeature | (4,) | float32 | |\n| bobjects/is_group_of | Tensor | | bool | |\n| bobjects/label | ClassLabel | | int64 | |\n| id | Text | | string | |\n| image | Image | (None, None, 3) | uint8 | |\n| objects | Sequence | | | |\n| objects/confidence | Tensor | | float32 | |\n| objects/label | ClassLabel | | int64 | |\n| objects/source | Text | | string | |\n\n- **Supervised keys** (See\n [`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):\n `None`\n\n- **Citation**:\n\nopen_images_challenge2019_detection/200k (default config)\n---------------------------------------------------------\n\n- **Config description**: Images have at most 200,000 pixels, at 72 JPEG\n quality.\n\n- **Dataset size** : `59.06 GiB`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n\n- **Examples** ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples... \n\nopen_images_challenge2019_detection/300k\n----------------------------------------\n\n- **Config description**: Images have at most 300,000 pixels, at 72 JPEG\n quality.\n\n- **Dataset size** : `80.10 GiB`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n\n- **Examples** ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples..."]]