会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
相思似海深,旧事如天远
江西理工大学2020级研究生,欢迎沟通交流
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2021年8月7日
PDF文档被保护,无法编辑的解决办法
摘要: 问题重现: 解决办法: 1.点击PDF Password Remover - Download Now,下载软件 2.双击PPR.exe运行,点击buy a license now,输入序列码:FLA850510518611047 3.重启软件,将文件解锁即可。
阅读全文
posted @ 2021-08-07 12:11 追风赶月的少年
阅读(1867)
评论(2)
推荐(0)
2021年8月3日
ModuleNotFoundError: No module named 'apex'
摘要: 在github上下载mirrors / nvidia / apex · CODE CHINA (csdn.net),然后本地安装
阅读全文
posted @ 2021-08-03 10:43 追风赶月的少年
阅读(839)
评论(0)
推荐(0)
ModuleNotFoundError: No module named 'yolox'
摘要: 错误提示: 修改: 可以在from yolox.data.data_augment import preproc上面添加如下两行代码(注意路径替换成你自己的): import sys sys.path.append(r'D:\PYCHARMprojects\YOLOX-main')
阅读全文
posted @ 2021-08-03 10:41 追风赶月的少年
阅读(2812)
评论(0)
推荐(0)
win10环境下Python怎么安装torch2trt包
摘要: 可以从github上下载到本地安装。详细见此说明:https://github.com/NVIDIA-AI-IOT/torch2trt
阅读全文
posted @ 2021-08-03 10:30 追风赶月的少年
阅读(1451)
评论(1)
推荐(0)
2021年8月1日
windows下虚拟环境下安装pycocotools
摘要: 安装visualcppbuildtools_full.exe(链接:https://blog.csdn.net/u012247418/article/details/82314129) 重启电脑,在开始菜单中打开"Visual C++ 2015 x64 Native Build Tools Comm
阅读全文
posted @ 2021-08-01 18:30 追风赶月的少年
阅读(155)
评论(0)
推荐(0)
Microsoft Visual C++ Build Tools.exe安装包损坏
摘要: Python3安装支持库的过程中经常会遇到“Microsoft Visual C++ 14.0 is required”,此时就需要安装Visual C++ build tools生成工具,在运行build tool安装时,提示安装包损坏,FQ也无效 解决办法:在build tool安装时,提示安装
阅读全文
posted @ 2021-08-01 18:28 追风赶月的少年
阅读(9654)
评论(0)
推荐(0)
2021年7月27日
TypeError: __init__() missing 1 required positional argument: 'units'
摘要: 源代码: x = Dense(output_dim=NB_CLASS, activation='softmax')(x) 错误提示: 修正: x = Dense(uints=NB_CLASS, activation='softmax')(x) 代码运行成功。
阅读全文
posted @ 2021-07-27 21:02 追风赶月的少年
阅读(2392)
评论(0)
推荐(0)
TypeError: ('Keyword argument not understood:', 'input')
摘要: 源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x])
阅读全文
posted @ 2021-07-27 20:59 追风赶月的少年
阅读(1134)
评论(0)
推荐(0)
Inception模块结构图
摘要:
阅读全文
posted @ 2021-07-27 16:36 追风赶月的少年
阅读(251)
评论(0)
推荐(0)
VGG16实现MNIST分类
摘要: # -*- coding = utf-8 -*- # @Time : 2021/7/26 # @Author : pistachio # @File : P29.py # @Software : PyCharm from keras.models import Sequential from ker
阅读全文
posted @ 2021-07-27 16:14 追风赶月的少年
阅读(503)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告