Fork me on CSDN
摘要: 问题重现: 解决办法: 1.点击PDF Password Remover - Download Now,下载软件 2.双击PPR.exe运行,点击buy a license now,输入序列码:FLA850510518611047 3.重启软件,将文件解锁即可。 阅读全文
posted @ 2021-08-07 12:11 追风赶月的少年 阅读(1557) 评论(2) 推荐(0) 编辑
摘要: 在github上下载mirrors / nvidia / apex · CODE CHINA (csdn.net),然后本地安装 阅读全文
posted @ 2021-08-03 10:43 追风赶月的少年 阅读(685) 评论(0) 推荐(0) 编辑
摘要: 错误提示: 修改: 可以在from yolox.data.data_augment import preproc上面添加如下两行代码(注意路径替换成你自己的): import sys sys.path.append(r'D:\PYCHARMprojects\YOLOX-main') 阅读全文
posted @ 2021-08-03 10:41 追风赶月的少年 阅读(2402) 评论(0) 推荐(0) 编辑
摘要: 可以从github上下载到本地安装。详细见此说明:https://github.com/NVIDIA-AI-IOT/torch2trt 阅读全文
posted @ 2021-08-03 10:30 追风赶月的少年 阅读(1360) 评论(1) 推荐(0) 编辑
摘要: 安装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 追风赶月的少年 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Python3安装支持库的过程中经常会遇到“Microsoft Visual C++ 14.0 is required”,此时就需要安装Visual C++ build tools生成工具,在运行build tool安装时,提示安装包损坏,FQ也无效 解决办法:在build tool安装时,提示安装 阅读全文
posted @ 2021-08-01 18:28 追风赶月的少年 阅读(8852) 评论(0) 推荐(0) 编辑
摘要: 源代码: x = Dense(output_dim=NB_CLASS, activation='softmax')(x) 错误提示: 修正: x = Dense(uints=NB_CLASS, activation='softmax')(x) 代码运行成功。 阅读全文
posted @ 2021-07-27 21:02 追风赶月的少年 阅读(2250) 评论(0) 推荐(0) 编辑
摘要: 源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) 阅读全文
posted @ 2021-07-27 20:59 追风赶月的少年 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-07-27 16:36 追风赶月的少年 阅读(210) 评论(0) 推荐(0) 编辑
摘要: # -*- 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 追风赶月的少年 阅读(433) 评论(0) 推荐(0) 编辑