+ 2021.01.22
다시 정리하고 와서 보니
위에는 classification tflite 파일이고 아래는 detection 이니 차이가 나는 듯.
+
tflite 파일 vi로 보니 문자열들이 좀 보이는데, python 써서 출력이 가능하려나?
[링크 : https://www.tensorflow.org/lite/convert/metadata]
---
output_tensor_metadata 에서
name:probability 라는게 있는데
[링크 : https://tfhub.dev/google/lite-model/aiy/vision/classifier/food_V1/1]
[링크 : https://tfhub.dev/google/lite-model/cropnet/classifier/cassava_disease_V1/1]
다른 tfilte 파일에서 보니
output_tensor_groups 라는게 존재해서 tensor_names로 3개의 출력이 존재하고
output_tensor_metadata 에 name:location, name:category, name:score 가 존재한다.
[링크 : https://tfhub.dev/google/lite-model/object_detection/mobile_object_localizer_v1/1/metadata/2]
출력에서 여러개 출력을 내는건.. 해당 프로젝트에서 사용하는 tflite 파일이 그렇게 생성 되었기 때문인건가?
Output Signature
The model outputs four arrays, mapped to the indices 0-4. Arrays 0, 1, and 2 describe N detected objects, with one element in each array corresponding to each object.
[링크 : https://www.tensorflow.org/lite/models/object_detection/overview]
'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글
tensorflow pb to tflite (0) | 2021.01.25 |
---|---|
텐서플로우 - detection과 classification (0) | 2021.01.22 |
tensorflow 객체 탐지 예제 (0) | 2021.01.21 |
tensorflow lite on x86 / label_image (0) | 2021.01.20 |
tensorflow-lite 모델 (0) | 2021.01.18 |