File: data_pipeline.py Project: anguoyang/YOLOv3_tf def parser(example): features = { 'xywhc': tf.FixedLenFeature([150], tf.float32), 'img': tf.FixedLenFeature((), tf.string)} feats = tf.parse_single_example(example, features) coord = feats['xywhc'] coord = tf.reshape(coord,...