error
error解决方法分享
吃饭第一名
低调做人,踏实做事
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
问题解决:ERROR: Cannot uninstall 'llvmlite'.
问题解决:ERROR: Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.)1遇到的问题:2对问题的...原创 2020-03-21 12:45:43 · 16124 阅读 · 2 评论 -
具体问题具体分析“ModuleNotFoundError: No module named 'nets'”
具体问题具体分析“ModuleNotFoundError: No module named ‘nets’”原创 2020-03-08 20:19:00 · 4170 阅读 · 0 评论 -
Centos7 输入中文 与 右键添加新建文档
Centos7 输入中文 与 右键添加新建文档第一次装linux系统什么也不会,因为centos7右键没有“新建文档”,百度了好久,自己做个详细总结,备忘填坑右上角,语言上有中英(中文要有拼音)文,没有则手动添加单机加号添加打开终端(右键,打开终端)输入指令输入中文时解决方法:1,可以用“shift”切换中英文2,可以用“win+space”切换语言...原创 2020-01-30 16:45:41 · 1630 阅读 · 2 评论 -
github下载慢 用码云导入仓库下载 特快
今天学习机器学实战的书籍找不到下载资源,最后在github上找到了,下载特别慢,然后发现可以用码云下载,非常块用我的例子来说吧:github下载慢 用码云导入仓库下载 特快《机器学习实战》代码下载1,找到github地址:git下载地址:https://github.com/pbharrin/machinelearninginaction2,打开码云(没有的话,要先注册,可以手机微...原创 2020-01-13 15:32:34 · 826 阅读 · 0 评论 -
NotFoundError: Restoring from checkpoint failed. 解决
遇到的问题:今天在学习tensorflow的模型保存和载入中出现以下BUGNotFoundError: Restoring from checkpoint failed. This is most likely due to a Variable name or other graph key that is missing from the checkpoint. Please ensu...原创 2019-12-12 22:25:40 · 4699 阅读 · 2 评论 -
TypeError: 'NoneType' object is not callable : 解决
遇到的问题:今天在学习Python闭合函数的时候遇到了如上题目的问题,很明显是类型错误 TypeError: 'NoneType' object is not callable思考:检查代码那里的类型有问题,因为自己定义了一个函数进行调用,所以问题应该在自己新建的函数这里自己的代码如下:#闭合函数(closure)def wrapperfun(strname): def rec...原创 2019-12-06 19:10:19 · 9546 阅读 · 0 评论 -
AttributeError: module 'tensorflow' has no attribute 'reset_default_graph' 解决
问题如下:AttributeError: module ‘tensorflow’ has no attribute ‘reset_default_graph’上面是因为安装的Tensorflow 2不支持Tensorflow1的API而报的错,需要将导入模块的部分进行更改,操作如下:1,原本的代码import tensorflow as tf %这行代码改成下面的两行代码2,替换成...原创 2019-11-18 21:24:18 · 35293 阅读 · 14 评论 -
ImportError: cannot import name '_validate_lengths'解决
ImportError: cannot import name '_validate_lengths'解决一,问题二,原因分析三,解决办法1,点进出现问题的函数2,替换内容四,成功一,问题二,原因分析可能是numpy的版本问题三,解决办法1,点进出现问题的函数2,替换内容原本:import numpy as npfrom numpy.lib.arraypad import _...原创 2019-11-29 22:31:30 · 1940 阅读 · 0 评论
分享