All Questions
34 questions
-2
votes
1
answer
143
views
How to Convert tensorflow saved_model to frozen inference graph?
I train a model by tensorflow 2 to detecting vehicles, but I want to Convert tensorflow saved_model to frozen inference graph.
Can any one help?
0
votes
0
answers
96
views
The TensorFlow Objet Detection Analysis results of the evaluation of a model (API Evaluation Metrics)
I created a dataset of approximately 200 flower images to detect the dead part of a flower. I used tensorflow-lite and the AI pretrained model EfficientDet-lite2 to train my model. I tested it with a ...
0
votes
2
answers
1k
views
Tensorflow Object-API: convert ssd model to tflite and use it in python
I have a hard time to convert a given tensorflow model into a tflite model and then use it. I already posted a question where I described my problem but didn't share the model I was working with, ...
2
votes
0
answers
528
views
Object detection with TFLite
I need to convert a given tensorflow model into a tflite model. Unfortunately I am not allowed to share the model. I also have not created it myself. However, I know it is a "...
1
vote
0
answers
564
views
Tensorflow Object Detection API quantization with output tensor as TFLite_Detection_PostProcess
I am in the process of performing a full 8-bit quantization of ssd_mobilenet_v2_320x320_coco17 using Object detection API. For this I run the following notebook.
In my case my final hardware requires ...
-1
votes
1
answer
169
views
convert .tflite to .pb model to test performance of tflite model on test tfrecords
I am currently working on object detection task.
Till TF1.2 we could use toco to get .pb file get back again from .tflite model file. Is there any solution in tf2.4 or tf2.5?
If not, how can i test ....
1
vote
1
answer
266
views
How to convert CustomVision.ai TensorFlow/TensorFlow Lite model into something that works with TFLite Object Detection API?
We have a model exported from CustomVision.ai (it supports exporting TensorFlow .pb, TensorFlow Lite .tflite, Saved Model .pp formats).
We would like to integrate this model into an existing app that ...
1
vote
0
answers
3k
views
How can I use COCOAPI/PyCOCOTools to evaluate the performance of Tensorflow Lite models
I have used the Tensorflow Object Detection API to train models on a custom dataset. The tensorflow object detection API also allows evaluating the trained models on a test set and gives results in ...
1
vote
0
answers
156
views
The common object detection accuracy is poor when deployed a default tflite in mobile
Installed the default tflite apk file in the mobile device using the android studio environment. By default, the installed app has to detect the 90 common objects. The detecting accuracy is very poor.
...
0
votes
1
answer
1k
views
Tensorflow Lite Custom Object detection Model Error in Android app
could you please help to solve this error?
I am testing a custom Object Detection model using TensorFlow Lite in Android App according to the documentation, but I have an error when the library tries ...
0
votes
1
answer
679
views
Custom object detection model to TensorFlow Lite, shape of model input
I need to export a custom object detection model, fine-tuned on a custom dataset, to TensorFlow Lite, so that it can run on Android devices.
I'm using TensorFlow 2.4.1 on Ubuntu 18.04, and so far this ...
1
vote
1
answer
940
views
Exporting fine-tuned saved model to TensorFlow Lite error
I fine.tuned an SSD model to recognize a custom object.
I followed the tutorials, ran the training process and exported the model, I tested it for inference and everything works great.
So, now I have ...
0
votes
1
answer
336
views
Integrate tflite model with tensorflow object-detection example code
I have a tflite model which I procured by converting my TFmodel( MobileNet Single Shot Detector (v2) ).
I have successfully converted my model into tflite format using the code below.
!tflite_convert \...
0
votes
3
answers
988
views
Is it possible to run ssd_mobilenet_v1_fpn on Android for inference?
I'm making an object detection app for Android, I got good performance while training with ssd_mobilenet_v1_fpn model.
I exported frozen inference graph, converted to tflite and quantized it to ...
1
vote
0
answers
699
views
Object Detection API v2 Tflite model post quantization
I try to convert and quantize a model trained with the Object Detection API v2 to run it on a Coral Devboard.
It seems like there is still a big problem with exporting Object Detection Models to lite, ...