transfer 는 학습된 모델에서 구조는 유지한채 학습 데이터를 날리고
새로운 데이터로 학습하는걸 의미하는데
학습시에 양자화 범위를 지정해주는 학습도 존재하는 듯.
quant learning
def format_example(image, label):
image = tf.cast(image, tf.float32)
image = (image/127.5) - 1
image = tf.image.resize(image, (IMG_SIZE, IMG_SIZE))
return image, label
[링크 : https://www.tensorflow.org/tutorials/images/transfer_learning?hl=ko]
[링크 : https://github.com/EdjeElectronics/TensorFlow-Lite-Object-Detection-on-Android-and-Raspberry-Pi]
'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글
generate_tfrecord.py (0) | 2021.04.13 |
---|---|
Learning without Forgetting (LwF) (0) | 2021.04.12 |
tf checkpoint to pb (0) | 2021.04.09 |
labelImg (0) | 2021.04.09 |
tf docker (0) | 2021.04.09 |