tensorflow没有compat
tensorflow
一个面向所有人的开源机器学习框架
项目地址:https://gitcode.com/gh_mirrors/te/tensorflow
免费下载资源
·
缺包可能不止一个,无脑cmd:输入以下命令(请先将python放在环境变量中)
pip install tensorflow-estimator
pip install scipy
pip install tensorboard
还是没有办法,只能说恭喜你版本太新了:
将一下代码
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
替换为
import tensorflow._api.v2.compat.v1 as tf
tf.disable_v2_behavior()
如果有警告不想看的话在导入包的操作后加上:
tf.get_logger().setLevel('ERROR')
GitHub 加速计划 / te / tensorflow
184.54 K
74.12 K
下载
一个面向所有人的开源机器学习框架
最近提交(Master分支:1 个月前 )
a49e66f2
PiperOrigin-RevId: 663726708
1 个月前
91dac11a
This test overrides disabled_backends, dropping the default
value in the process.
PiperOrigin-RevId: 663711155
1 个月前
更多推荐
已为社区贡献5条内容
所有评论(0)