module 'tensorflow' has no attribute 'truncated_normal'
时间: 2023-09-04 07:06:24 浏览: 204
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误是由于TensorFlow版本不兼容引起的。在较新版本的TensorFlow中,truncated_normal函数被移动到tf.compat.v1模块中,而旧版本的TensorFlow直接使用tf模块。所以,解决这个问题的办法是使用tf.compat.v1.truncated_normal函数代替tf.truncated_normal函数。使用tf.compat.v1.truncated_normal(shape, stddev=0.1, dtype=tf.float32)来替换你的代码中的tf.truncated_normal函数调用。这样就可以解决这个错误了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [已解决-报错:AttributeError: module ‘tensorflow‘ has no attribute ‘truncated_normal](https://blog.csdn.net/m0_57704424/article/details/131571821)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文