上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: 原博客迁移到:https://blog.csdn.net/u013171226/article/details/107680311 import os file_data1 = [] with open("temp1.txt", "w") as f: for file_name in os.list 阅读全文
posted @ 2020-05-29 14:33 cumtchw 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 原博客迁移到:https://blog.csdn.net/u013171226/article/details/107680310 import os def updateFile(file,str): """ 在文件的每一行前面增加关键字 :param file:文件名 :param str:关键 阅读全文
posted @ 2020-05-29 10:34 cumtchw 阅读(1219) 评论(0) 推荐(0) 编辑
摘要: 原博客迁移到:https://blog.csdn.net/u013171226/article/details/107680309 查看/usr/local/cuda-10.0/bin下是否有nvcc可执行程序,如果有则说明nvcc没有被设置为系统变量 vim ~/.bashrc 然后在末尾添加 e 阅读全文
posted @ 2020-05-28 21:37 cumtchw 阅读(1119) 评论(0) 推荐(0) 编辑
摘要: 原博客迁移到:https://blog.csdn.net/u013171226/article/details/107680308 在nvidia jetson xavier NX安装了opencv,然后编译darknet,提示error: ‘IplImage’ does not name a ty 阅读全文
posted @ 2020-05-28 21:32 cumtchw 阅读(1613) 评论(0) 推荐(0) 编辑
摘要: 博客搬移到:https://blog.csdn.net/u013171226/article/details/107680267 阅读全文
posted @ 2020-05-28 21:28 cumtchw 阅读(1604) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zong596568821xp/article/details/80268034 上面这篇博客里面有安装jtop的具体方法,sudo -H pip install jetson-stats, 但是使用这个命令需要首先安装pip,用apt install 安 阅读全文
posted @ 2020-05-28 21:05 cumtchw 阅读(2990) 评论(0) 推荐(0) 编辑
摘要: 博客搬移到:https://blog.csdn.net/u013171226/article/details/107680307 阅读全文
posted @ 2020-05-28 15:18 cumtchw 阅读(2952) 评论(0) 推荐(0) 编辑
摘要: 利用Python随机删除一半数量的图片 import os import random num = 0; for image_name in os.listdir("./data"): feed = random.randint(0, 10) if feed <= 5: os.remove(os.p 阅读全文
posted @ 2020-05-28 09:31 cumtchw 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 原博客搬移到:https://blog.csdn.net/u013171226/article/details/107680305 阅读全文
posted @ 2020-05-22 13:59 cumtchw 阅读(1178) 评论(0) 推荐(0) 编辑
摘要: 第5天 Caffe依赖包解析 5.1 ProtoBuffer ProtoBuffer是由Google开发的一种可以实现内存与硬盘文件交换的协议接口,Caffe源码中大量使用ProtoBuffer作为权值和模型参数的载体,例如我们训练时使用的prototext文件,训练时会首先读取改文件,获得其中特定 阅读全文
posted @ 2020-05-17 22:26 cumtchw 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页