일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 사회초년생 추천독서
- TensorFlow Object Detection Error
- TensorFlow Object Detection 사용예시
- Towards Deep Learning Models Resistant to Adversarial Attacks
- Carla
- Branch 활용 개발
- Docker
- DACON
- Custom Animation
- object detection
- TensorFlow Object Detection Model Build
- VOC 변환
- Object Detection Dataset 생성
- 개발흐름
- Paper Analysis
- InstructPix2Pix
- Git
- Linux build
- 커스텀 애니메이션 적용
- 논문 분석
- 논문분석
- DOTA dataset
- TensorFlow Object Detection API install
- 리눅스 빌드
- 크롤링
- 객체 탐지
- 기능과 역할
- AI Security
- paper review
- CARLA simulator
Archives
- Today
- Total
JSP's Deep learning
[Deep learning - Obeject Detection] TensorFlow Object Detection API(4) - 사용예시 본문
Deap learning/Object Detection
[Deep learning - Obeject Detection] TensorFlow Object Detection API(4) - 사용예시
_JSP_ 2023. 3. 6. 22:21데이터 생성부터 평가까지 모든 과정
1. 커스텀 데이터 셋 생성
- 이미지 다운로드
- labelImg 실행
cd TensorFlow/addons/labelImg
python labelImg.py
- 이미지 로드 및 annotations
- annotated 이미지 저장
- 데이터 셋 분할
cd TensorFlow/scripts/preprocessing
python partition_dataset.py –x –i Users/jiseung/Tensorflow/workspace/training_demo/images –r 0.1
- label map 생성
- TensorFlow Records 생성
2. 모델 학습
- 모델 다운로드 및 저장(링크 : Download)
- pipeline 파일 복사 및 저장
- pipeline.config 수정
- 스크립트 복사
- 학습(스크립트 사용)
- 학습 모델 내보내기
3. 모델 사용
- 초기 세팅
- 테스트용 이미지 다운로드
- 학습 모델 로드 및 pre-trained 모델 로드
- label map 로드
- 모델 테스트
- 탐지 세부 사항 확인
참고
[1] https://tensorflow-object-detection-api-tutorial.readthedocs.io/en/latest/training.html
'Deap learning > Object Detection' 카테고리의 다른 글
Comments