AttributeError: module 'tensorflow_core._api.v2.nn' has no attribute 'rnn_cell' tensorflow版本兼容問題-解決

 

 該問題是在tfv2環境下跑了tfv1的代碼致使的,只需把v1的用法替換成v2留出的兼容用法便可:python

tf.compat.v1.nn.rnn_cell.RNNCell代替tf.nn.rnn_cell.RNNCellapi

參考:https://tensorflow.google.cn/api_docs/python/tf/compat/v1/nn/rnn_cell/RNNCell?hl=engoogle

也能夠這樣,使2.0的環境可以運行1.0的代碼:spa

import tensorflow.compat.v1 as tfcode

tf.disable_v2_behavior()blog

相關文章
相關標籤/搜索