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
TFRecord
format. You can think of it a bit like azip
file 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
tfrecord
to 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.