I've downloaded a dataset from https://public.roboflow.com/ which contains test.tfrecord and train.tfrecord
Is it the same than test.record and train.record?
I've downloaded a dataset from https://public.roboflow.com/ which contains test.tfrecord and train.tfrecord
Is it the same than test.record and train.record?
Yes, the file extension doesn't matter, they're in the
TFRecordformat. You can think of it a bit like azipfile though in that its structure can be freeform.These specific ones are for use with the Tensorflow Object Detection API which expects the data inside the
tfrecordto be laid out in a specific structure and order like this:There's a full tutorial on how to train with the Tensorflow 2.0 Object Detection API here.