找不到flatten函数
来源:3-4 卷积神经网络实战
慕云19
2019-04-21
老师,为什么我没有flatten函数,AttributeError: module 'tensorflow.python.layers.layers' has no attribute 'flatten'
flatten = tf.layers.flatten(pooling3)
写回答
1回答
-
同学你好,根据tensorflow的最新动态,这个API在tensorflow的新版本里会被遗弃,可以用keras.layers.flatten替代。
见链接:https://www.tensorflow.org/api_docs/python/tf/layers/flatten
112019-04-22
相似问题