All Questions
Tagged with tensorflow object-detection-api
974 questions
0
votes
0
answers
67
views
Implementing class activation maps for models in Tensorflow Object Detection API
I need to implement CAM for a model trained on the base model ssd_mobilenet_v2_320x320_coco17_tpu-8 in the pre-trained Object Detection Zoo.
How could I accesses the layers and other fields necessary ...
0
votes
1
answer
3k
views
ImportError: cannot import name 'runtime_version' from 'google.protobuf' in TensorFlow Object Detection API
I'm encountering an ImportError when trying to run the TensorFlow Object Detection API's test script. The error message is:
(tfod) dev@dev:/media/dev/96E0A5D3E0A5BA3F/tfod/models/research$ python ...
1
vote
0
answers
45
views
Dimension Error in MobileNet SSD object detection
I am trying to implement an object detection algorithm using ssd_mobilenet_v2_fpnlite_320x320 using Tensorflow Object Detection API. My input image is of size 1024x33. But when I run the training ...
-1
votes
1
answer
99
views
Tensorflow Object Detection API installation issues
I am trying to install tensorflow object detection API using this link in my Ubuntu PC.
My goal is to use MobileNet SSD for object detection.
My tensorflow version is 2.13.1. I was able to install the ...
0
votes
0
answers
28
views
Display result of overall loss validation graph
Can I display the results of the overall loss validation graph from the last checkpoint? so I can see the difference between learning curve loss train and loss vall, because from the code that I run ...
0
votes
0
answers
52
views
how to set checkpoint with efficientdet model and tensorflow object detection API
I have run the training process, but for the evaluation I run only at the last checkpoint step, can someone help me to provide input so that I can change the checkpoint assignment per 100 steps, so ...
0
votes
0
answers
60
views
python model_builder_tf2_test.py generates errors
I am trying to use the Tensorflow object detection API to create my own model, so I created a virtudal enviorement,installed tensorflow 2.16.1, and I am using python 3.12.3. I installed Slim as well, ...
0
votes
0
answers
104
views
I couldn't start Tensorflow Object Detection API training with Google colab's TPUv2
I am using version of Tensorflow 2.15.0 and Python 3.10.12 in google colab cell
tpu = tf.distribute.cluster_resolver.TPUClusterResolver(tpu='local')
tf.config.experimental_connect_to_cluster(...
0
votes
0
answers
29
views
tensorflow_object_detection_api installation incomplete?
I need to import DetectorAPI from tensorflow_object_detection_API. But there seems to be an installation problem.
I get the no module found error, even though i just installed it.
I installed it using ...
0
votes
0
answers
39
views
TF1 SSD Mobilenet v2, TF2 SSD Mobilenet mAP difference
I'm training an object detection model using the SSD Mobilenetv2 model with the same data (using the same tfrecord files) using both TF1 and TF2. The batch size, number of epochs, GPU used, and all ...
0
votes
0
answers
35
views
Tensorflow : TypeError: create_estimator_and_inputs() missing 1 required positional argument: 'hparams'
Hello everyone I am trying to train my object detection model using model_main.py from Tensorflow
But when I execute the command in the cmd : python model_main.py --alsologtostderr --model_dir=...
0
votes
1
answer
46
views
unable to import model model_main (from object_detection import model_main)
I'm trying to import the package model_main from object_detection but it Is throwing an error like
Traceback (most recent call last): File "../LearningSpace/ObJTEST01/main.py", line 9, in &...
0
votes
0
answers
19
views
Tensorflow Object Detection API - FasterCNN - Able to use normalised floats array stored in tfrecord
When using TensorFlow Object Detection API, and FasterCNN model from the Detection Zoo, are you able to store a normalised 2D array (0-1) as floats into a tfrecord and use this as model inputs?
I am ...
0
votes
1
answer
146
views
ImportError: cannot import name 'model_lib_v2' from 'object_detection' (already installed an still not working)
**Hey guys, currently doing tensorflow object detection and stuck because of an error. Already tried all the method in the internet, still not working.
**
I use tensorflow == 2.10.0, the model is http:...
0
votes
0
answers
61
views
KeyError: 1720: Python
I'm following this tutorial on how to export my saved model to tflite for building an android app using my custom detection model Link
But after executing this code
ObjectDetectorWriter = ...