Questions tagged [object-detection-api]

Inquiries concerning the usage of the tensorflow object detection api.

Do all images need to be uniform in size when utilizing the tensorflow object detection api?

I need to train a set of images that have already been labeled for object detection. The images have different resolutions, so I am wondering if it is possible to train them using the object detection API. Would specifying the min_dimension as the greate ...

Assessing performance after each training iteration

Currently in the process of setting up a workflow with the tensorflow object detection API. I've prepared tfrecords for both my training set (4070 images) and validation set (1080 images). The training runs for 400 iterations before moving to evaluation, ...

Error Encountered During Custom Object Training in TensorFlow

I am encountering an issue while trying to train a set of images for my research project. The tutorial I have been following, which can be found here, leads me to the following error. Using Python 3.6 and the latest version of TensorFlow (CPU), when attem ...

Can you explain the process of shuffling during training in the TensorFlow object detection API?

Recently, I've been experimenting with the tensorflow object detection API for instance segmentation. Within the pipeline configuration file, specifically in the train_config, we define the value of num_steps. This parameter represents the total number of ...