缺包可能不止一个,无脑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 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐