tensorflow_object_detection_create_coco_tfrecord
tensorflow_object_detection_create_coco_tfrecord copied to clipboard
Need to read the images one by one and write as TFRecord, instead of loading all images in memory and create a TF record
If you have 10000 pictures , do you want to load all of them to the memory? Maybe it'll out of memory then.
@MetaPeak Thats exactly the issue. I don't want all images to be loaded at once in memory. I'm getting Out of memory error. We need to process the images one by one..