Closed jkravanja closed 4 years ago
Thank you for your post. We noticed you have not filled out the following field in the issue template. Could you update them if they are relevant in your case, or leave them as N/A? Thanks. What is the top-level directory of the model you are using Have I written custom code OS Platform and Distribution TensorFlow installed from TensorFlow version Bazel version CUDA/cuDNN version GPU model and memory Exact command to reproduce
Hi There, We are checking to see if you still need help on this, as this seems to be considerably old issue. Please update this issue with the latest information, code snippet to reproduce your issue and error you are seeing. If we don't hear from you in the next 7 days, this issue will be closed automatically. If you don't need help on this issue any more, please consider closing this.
While evaluating a Mask RCNN model, i noticed that same images get evaluated multiple times. I counted the number of times images repeated and it was the same as 'num_readers' variable set in the configuration file. This was my initial configuration:
Visualizations (images with bounding boxes) were saved to "PATH/eval_detections/". However, i found out that there were 6 instances of each image (which is exactly num_readers). After setting num_readers: 1, i get the correct output (one visualization per image)
Should the readers not read different files, but do this in parallel, instead of 6 readers reading the same image 6 times?