
tensorflow
Jagger-Q
大数据
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
"ERROR: tensorboard 2.1.1 has requirement setuptools>=41.0.0, but you'll have setuptools 36.4.0"解决办法
安装tensorflow过程中遇到如下问题 原因是setuptools版本太老了 解决办法 1、更新setuptools pip3 install --ignore-installed setuptools 2、安装 tensorflow pip3 install tensorflow ...原创 2020-04-19 11:36:07 · 4713 阅读 · 0 评论 -
"AttributeError: module 'tensorflow' has no attribute 'random_normal'"问题解决办法
报错: AttributeError: module 'tensorflow' has no attribute 'random_normal' 原因: 我使用的是tf2,最新一版的random_normal方法已经换为:random.normal 解决办法 1、直接代码段中进行修改即可 2、使用 import tensorflow.compat.v1 as tf tf.disable_v2_...原创 2020-04-13 22:36:54 · 3723 阅读 · 1 评论