Closed deep-diver closed 2 years ago
Regenerate low-resolution image datasets in TFRecord. It should follow the same format as the full-resolution datasets:
feature_description = { "image": tf.io.VarLenFeature(tf.float32), "image_shape": tf.io.VarLenFeature(tf.int64), "label": tf.io.VarLenFeature(tf.float32), "label_shape": tf.io.VarLenFeature(tf.int64), }
Related to #26.
maybe I will handle this issue to practice how to generate / host TFRecords myself since you have done this many times :) WDYT?
Sure thing. Please assign me as a reviewer then.
Regenerate low-resolution image datasets in TFRecord. It should follow the same format as the full-resolution datasets: