tensorflow應用Session模塊出現錯誤 AttributeError: module 'tensorflow' has no attribute 'Session' 錯誤解決

運行代碼,引用模塊錯誤: with tf.Session() as sess:     for i in range(num):   出現錯誤: 出現這個錯誤的原因是,tensorflow 2.0版本將該模塊移除,所以我們要借用tensorflow 1.0中的Session函數 網上找到一個解決方法還不錯: 將原代碼中開頭的 import tensorflow as tf 改成: import t
相關文章
相關標籤/搜索