首页 > 解决方案 > 解码训练示例

问题描述

我正在使用 ddsm 数据集制作 CNN,数据集的所有者提供了一些代码来解码训练示例,但我无法弄清楚代码的第一部分实际上在做什么。还在学习。供参考:https ://www.kaggle.com/skooch/ddsm-mammography/home

代码: features = tf.parse_single_example( serialized_example, features={ 'label': tf.FixedLenFeature([], tf.int64), 'label_normal': tf.FixedLenFeature([], tf.int64), 'image': tf.FixedLenFeature([], tf.string) })

标签: tensorflow

解决方案


推荐阅读