Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 설치
- 언리얼엔진
- 파이썬
- NPY
- C언어
- yolo
- 논문리뷰
- 이터널리턴
- 헬스케어
- Detectron2
- python
- ctypes
- 개발자
- V3
- 게임개발
- 호흡분석
- 딥러닝
- pyqt5
- 프로그래머
- 언어모델
- ChatGPT
- 딜러닝
- 텐서플로우
- connx
- 논문
- CycleGAN
- 리뷰
- 파워셀
- 욜로
Archives
- Today
- Total
사냥꾼의 IT 노트
TensorFlow를 이용한 YOLO v1 논문 구현 #6 - model.py 본문
이전 글: https://it-the-hunter.tistory.com/33
model.py
목표: keras subclassing 형태의 모델 구조 class 정의
필요한 모듈 import
import tensorflow as tf
상세 코드
class YOLOv1(tf.keras.Model):
keras model을 상속받는 class YOLOv1 정의
def __init__(self, input_height, input_width, cell_size, boxes_per_cell, num_classes):
super(YOLOv1, self).__init__()
base_model = tf.keras.applications.InceptionV3(include_top=False, weights='imagenet', input_shape=(input_height, input_width, 3))
base_model.trainable = True
x = base_model.output
#Global Average Pooling
x = tf.keras.layers.GlobalAveragePooling2D()(x)
output = tf.keras.layers.Dense(cell_size * cell_size * (num_classes + (boxes_per_cell*5)), activation=None)(x)
model = tf.keras.Model(inputs=base_model.input, outputs=output)
self.model = model
#model structure 출력
self.model.summary()
keras 모델 중 pre-train된 모델 InceptionV3를 가져오는 코드
하지만 base_model.trainable = True 코드를 넣어 레이어도 우리가 원하는 대로 train이 가능하게 함
def call(self, x):
return self.model(x)
input으로 넘어온 이미지에 대해 모델 구조에 대한 예측값 반환
'YOLO' 카테고리의 다른 글
TensorFlow를 이용한 YOLO v1 논문 구현 #8 - evaluate.py (0) | 2022.07.08 |
---|---|
TensorFlow를 이용한 YOLO v1 논문 구현 #7 - train.py (0) | 2022.07.08 |
TensorFlow를 이용한 YOLO v1 논문 구현 #5 - utils.py (0) | 2022.07.08 |
TensorFlow를 이용한 YOLO v1 논문 구현 #4 - datasets.py (0) | 2022.07.08 |
TensorFlow를 이용한 YOLO v1 논문 구현 #2 - 모델 설명 (0) | 2022.07.07 |