MLops Pipeline
1. 데이터 가져오기.
2. 데이터 탐색.(EDA)
- 클래스 분포, scale, 환경 등..
데이터 가공.(pre process)
데이터 검증.
데이터 나누기.
학습방법 결정.
모델 결정.
모델 검증.
대규모 학습.
...
1 Inertial Navigation System (GPS/IMU): OXTS RT 3003
1 Laserscanner: Velodyne HDL-64E
2 Grayscale cameras, 1.4 Megapixels: Point Grey Flea 2 (FL2-14S3M-C)
2 Color cameras, 1.4 Megapixels: Point Grey Flea 2 (FL2-14S3C-C)
4 Varifocal lenses, 4-8 mm: Edmund Optics NT59-917
세 종류의 Object Detection Dadaset을 제공한다.
2D Object Detection Labeling Format
100K Images 다운로드.
Detection 2020 Labels를 다운로드.
labeling data는 json 파일로 되어있다.
import json
.import json
with open('sample.json', 'r', encoding='UTF-8') as json_file:
sample = json.load(json_file)
sementic segmentation : 동일 클래스의 개체를 구분하지 않음.
instance segmentation : 동일 클래스의 개체를 구분함.
gtFine_trainvaltest.zip (241MB) 다운로드.
leftImg8bit_trainvaltest.zip (11GB) 다운로드.
Segmentation Labeling Format
하나의 image에 대해 4개의 labeling data가 존재한다.
leftImg8bit
gtFine
leftImg8bit.png
color.png
객체를 클래스별로 고유한 색상으로 표현.
instanceIds.png
각 객체를 개별적인 ID로 구분.
labelIds.png
각 객체를 동일한 클래스로 구분한 이미지.
polygons.json
How to find Open datasets
How to find models