Metadata-Version: 2.1
Name: tfds-aihub
Version: 0.1.0
Summary: AIHub 데이터를 TFRecord 방식으로 가공하기 위한 프로젝트
Home-page: https://github.com/jeongukjae/tfds-aihub
Author: Ukjae Jeong
Author-email: jeongukjae@gmail.com
License: UNKNOWN
Keywords: tensorflow,machine learning,dataset
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# tfds aihub

AIhub 데이터를 tfrecord 형태로 GCS에 저장/캐싱하기 위한 코드.

## 데이터셋

### [K-Fashion Image(`k_fashion_image`)](https://aihub.or.kr/aidata/7988/download)

* Version: 1.1
* splits
    * `Training`: `967806`
    * `Validation`: `120975`
* Features:

        ```python
        tfds.features.FeaturesDict(
            {
                "image": tfds.features.Image(shape=(None, None, 3)),
                "objects": tfds.features.Sequence({
                    "type": tfds.features.ClassLabel(names=_BBOX_TYPE),
                    "bbox": tfds.features.BBoxFeature(),
                    "segmentation_mask": tfds.features.Image(shape=(None, None, 1)),
                    # TODO style 관련 정보
                })
            }
        )
        ```


