我正在尝试使用这里建议的proto接口使用序列化数据
https://www.tensorflow.org/versions/master/how_tos/reading_data/index.html#reading-from-files
但它失败了因为:
In [99]: tf.FixedLenFeature
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-99-e5629528302a> in <module>()
----> 1 tf.FixedLenFeature
AttributeError: 'module' object has no attribute 'FixedLenFeature'
我想我在这里错过了一些东西......
答案 0 :(得分:4)
module "MyModule" is not installed
的版本包含在TensorFlow 0.6.0版本之后创建的一些(中断)changes to the tf.parse_example()
API。这些更改包括添加fully_connected_reader.py
类作为帮助程序,用于定义要在tf.FixedLenFeature
中使用的模式。您应该从源代码构建TensorFlow或等待即将发布的0.7.0版本以使用此版本的API。