| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 개발흐름
- TensorFlow Object Detection Model Build
- Object Detection Dataset 생성
- Branch 활용 개발
- 크롤링
- Git
- VOC 변환
- 논문분석
- InstructPix2Pix
- 기능과 역할
- object detection
- TensorFlow Object Detection Error
- 리눅스 빌드
- paper review
- Custom Animation
- Carla
- DACON
- DOTA dataset
- 커스텀 애니메이션 적용
- AI Security
- 논문 분석
- Towards Deep Learning Models Resistant to Adversarial Attacks
- 객체 탐지
- CARLA simulator
- Docker
- 사회초년생 추천독서
- TensorFlow Object Detection API install
- TensorFlow Object Detection 사용예시
- Linux build
- Paper Analysis
- Today
- Total
목록전체 글 (47)
JSP's Deep learning
데이터 생성부터 평가까지 모든 과정 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 수정 스..
1. Pre-Trained Model 다운로드 다운로드 링크 : Download TensorFlow/workspace/training_demo/pre-trained-models에 압축해제 압축해제시 폴더 구조 2. Training pipeline 파일 생성 Tensorflow/workspace/training_demo/models에 폴더 이름을 지정(사용자정의)하여 생성 생성한 폴더에 pre-trained model의 pipeline.config 파일 저장 폴더 구조 예시 3. pipeline.config 파일 조정 Model이 가지는 classes 수 설정(즉, 모델이 분류할 수 있는 클래스 수) Train batch_size 조정(그래픽 카드 성능에 맞게 조정) Pre-trained model che..
1. Detection 데이터 만들기 1) labelImg를 이용한 이미지 라벨링 진행순서 labelImg 실행 TensorFlow/addons/labelImg 경로로 이동 python labelImg.py [이미지 데이터 경로] (본문에서는 TensorFlow/workspace/training_demo/images) 이미지 파일 선택 Ctrl + 마우스 클릭으로 bounding box 지정 Label 입력 or Default label 지정 저장(본문에서는 TensorFlow/workspace/training_demo/images에 저장) -> 최종적으로 Image에 대한 box 및 label 정보가 .xml 형태로 저장 labelImg 예시 실행 결과 및 바운딩 박스 표기 labelImg로 생성된 ...