tf.FixedLenFeature 和tf.VarLenFeature 的区别

tf.FixedLenFeature 返回的是一个定长的tensor

tf.VarLenFeature 返回的是一个不定长的sparse tensor,用于处理可变长度的输入,在处理c t c 问题时,会用到tf.VallenFeature解析存储在tfrecord中的label。

待补充

你可能感兴趣的:(Tensorflow)