일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머
- 이터널리턴
- 딥러닝
- 리뷰
- 설치
- 게임개발
- NPY
- TensorFlow
- 텐서플로우
- V3
- 논문
- python
- 논문리뷰
- 파이썬
- 욜로
- 호흡분석
- 개발자
- connx
- ChatGPT
- 파워셀
- 언어모델
- 헬스케어
- CycleGAN
- yolo
- 언리얼엔진
- ctypes
- pyqt5
- Detectron2
- 딜러닝
- C언어
- Today
- Total
목록딥러닝 (23)
사냥꾼의 IT 노트
이전 포스팅 모음: https://it-the-hunter.tistory.com/26?category=1035318 https://it-the-hunter.tistory.com/31?category=1035318 https://it-the-hunter.tistory.com/28?category=1035318 https://it-the-hunter.tistory.com/32?category=1035318 https://it-the-hunter.tistory.com/33?category=1035318 https://it-the-hunter.tistory.com/34?category=1035318 https://it-the-hunter.tistory.com/36?category=1035318 https://i..
이전 글: https://it-the-hunter.tistory.com/36 TensorFlow를 이용한 YOLO v1 논문 구현 #7 - train.py 이전 글: https://it-the-hunter.tistory.com/34 TensorFlow를 이용한 YOLO v1 논문 구현 #6 - model.py 이전 글: https://it-the-hunter.tistory.com/33 TensorFlow를 이용한 YOLO v1 논문 구현 #5 - utils.py 이.. it-the-hunter.tistory.com evaluate.py 목표: 학습된 파라미터를 불러와 evaluation을 진행 필요한 모듈, 라이브러리 import import tensorflow as tf import tensorflow..
이전 글: https://it-the-hunter.tistory.com/34 TensorFlow를 이용한 YOLO v1 논문 구현 #6 - model.py 이전 글: https://it-the-hunter.tistory.com/33 TensorFlow를 이용한 YOLO v1 논문 구현 #5 - utils.py 이전 글: https://it-the-hunter.tistory.com/32 TensorFlow를 이용한 YOLO v1 논문 구현 #4 - datasets.py.. it-the-hunter.tistory.com train.py 목표: 모델 class를 인스턴스로 선언해 for 루프를 돌면서, gradient descet를 수행하며 파라미터를 업데이트 필요한 모듈, 라이브러리 import import..
일반적으로 데이터셋 구조를 생성할 때 train, test 이렇게 두 가지를 만들 것이다. 하지만 좀 더 깊이 들어가서 논문을 읽다보면, validation이라는 단어가 굉장히 자주 등장하고 이게 대체 뭘까 하는 의문이 들 것이다. 사전적 의미 국민 번역 프로그램 파파고에 의하면 validation의 사전적 의미는 '확인'이라고 한다. 여기서 우리는 validation이 뭘 뜻하는지 어느정도 유추가 가능하다. 딥러닝에서의 'validation' validation은 학습이 완료된 모델을 검증하기 위한 데이터셋이다. 즉, 중간 점검을 위한 것이다. 딥러닝 분야에서 대부분은 train 데이터셋으로 학습을 시키고, 정확한 성능 평가를 위해 중간 피드백을 하고 수정을 거쳐 최종 output이 추출된다. 이를 위..
이전 글: https://it-the-hunter.tistory.com/33 TensorFlow를 이용한 YOLO v1 논문 구현 #5 - utils.py 이전 글: https://it-the-hunter.tistory.com/32 TensorFlow를 이용한 YOLO v1 논문 구현 #4 - datasets.py 이전 글: https://it-the-hunter.tistory.com/28 TensorFlow를 이용한 YOLO v1 논문 구현 #3 - loss.py.. it-the-hunter.tistory.com model.py 목표: keras subclassing 형태의 모델 구조 class 정의 필요한 모듈 import import tensorflow as tf 상세 코드 class YOLOv1(..
이전 글: https://it-the-hunter.tistory.com/32 TensorFlow를 이용한 YOLO v1 논문 구현 #4 - datasets.py 이전 글: https://it-the-hunter.tistory.com/28 TensorFlow를 이용한 YOLO v1 논문 구현 #3 - loss.py 구현할 논문: https://arxiv.org/pdf/1506.02640v1.pdf loss.py 목표: YOLO v1의 loss function 구현 기본.. it-the-hunter.tistory.com utils.py 목표: 딥러닝 메인 로직 외에 유틸리티성 기능들을 조직 필요한 모듈 import import cv2 import numpy as np import tensorflow as t..