tensorflow
我的梦境传说
这个作者很懒,什么都没留下…
展开
-
tfds.load函数异常,All attempts to get a Google authentication bearer token failed
tensorflow 加载数据集异常异常错误提示:tensorflow/core/platform/cloud/google_auth_provider.cc:184] All attempts to get a Google authentication bearer token failed, returning an empty token. Retrieving token from files failed with "Not found: Could not locate the cre原创 2020-12-08 15:00:14 · 4623 阅读 · 3 评论 -
机器学习线性回归实例Python实现
导入依赖包import tensorflow as tfimport numpy as npimport matplotlib.pylab as pltfrom pylab import mplmpl.rcParams['font.sans-serif'] = ['SimHei']生成直线数据并加入噪音画图显示train_x = np.linspace(-1, 1, 100) #...原创 2019-04-17 10:11:27 · 550 阅读 · 0 评论 -
ValueError: Object arrays cannot be loaded when allow_pickle=False 异常的处理
ValueError: Object arrays cannot be loaded when allow_pickle=False在谷歌上查了一下,Stack Overflow 上大意是numpy的版本对应问题,之前版本的allow_pickle的默认值为True,所以可以通过numpy版本降级来解决这个问题。执行如下命令:anaconda中使用conda降级安装好像有点问题,这里推荐...原创 2019-05-29 08:34:35 · 3835 阅读 · 0 评论