1. 程式人生 > >關於AttributeError: module 'tensorflow' has no attribute 'select'

關於AttributeError: module 'tensorflow' has no attribute 'select'

在 Tensorflow 實戰Google深度學習框架 第78頁有關於tf.select的內容。

tf.select函式有3個引數。第一個為選擇條件根據,當選擇條件為True時,tf.select函式會選擇第二個引數中的值,否則使用第三個引數中的值。

但是,在測試時有如下錯誤:

AttributeError: module 'tensorflow' has no attribute 'select'

原因:書中的TensorFlow版本是0.9.0,版本升級後會報錯

解決方法:用tf.where替換tf.select