[ONNX] Tensorflow Lite (TFLite) 에서 ONNX 모델로 변경하기

변환 과정

1. pip3 install tf2onnx

2. python3 -m tf2onnx.convert --opset 13 --tflite [tflite file path] --output [onnx file path]

(ex. python3 -m tf2onnx.convert --opset 13 --tflite face_detection_full_range.tflite --output facedetect_full.onnx)

 

위 명령어를 통해 손 쉽게 변환 가능.