自然语言处理方面,很多的代码是基于tf1.x的版本,这也导致了在目前的平台上没有办法使用。最近两周遇到的格外多,因此做一个小结:
1)module ‘tensorflow‘ has no attribute ‘xxx’
首先尝试:
复制代码
1
2
3import tensorflow.compat.v1 as tf tf.disable_v2_behavior()
能解决大多数问题
2)module ‘tensorflow.compat.v1 has no attribute contrib ‘xxxx’
比较典型的问题是layer中的网络没有:
复制代码
1
2
3LSTM可替换tf.nn.rnn_cell.BasicLSTMCell() GRU可替换tf.nn.rnn_cell.BasicGRUCell()
复制代码
1
2
3初始化失败: 替换为:tf.initializers.GlorotUniform()
- Variable
复制代码
1
2替换为get_variable()
- tf.contrib.layers.layer_norm
复制代码
1
2替换为tendorflow.keras.LayerNormalization()
- tf.device does not support functions when eager execution
复制代码
1
2
3if tf.__version__ >='2.0.0': tf.compat.v1.disable_eager_execution()
6)from tensorflow.gfile import Glob as glob
复制代码
1
2
3替换为:from tensorflow.python.platform.gfile import Glob as glob 其他的在gfile下的库都可以这么换
7)图初始化:放在sess()之后
最后
以上就是无情秀发最近收集整理的关于总结一下tf2.3上遇到的奇奇怪怪的问题的全部内容,更多相关总结一下tf2.3上遇到内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复