上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页
摘要: 参考: https://www.cnblogs.com/mylinux/p/4955448.html LIBRARY_PATH和LD_LIBRARY_PATH是Linux下的两个环境变量,二者的含义和作用分别如下: LIBRARY_PATH环境变量用于在程序编译期间查找动态链接库时指定查找共享库的路 阅读全文
posted @ 2018-09-29 14:49 BlueOceans 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 网址:https://kinddragon.github.io/vld/ 阅读全文
posted @ 2018-09-26 11:47 BlueOceans 阅读(117) 评论(0) 推荐(0) 编辑
摘要: size_t的取值range是目标平台下最大可能的数组尺寸 典型的例子:x64平台下size_t是8位,而x32平台下是4位; int在两个平台下均为4位 所以在使用的时候一定要配置好对应的平台,否则在读取文件的时候会出现错误 比如,在darknet读取模型文件的时候,size_t *seen = 阅读全文
posted @ 2018-09-18 18:05 BlueOceans 阅读(432) 评论(0) 推荐(0) 编辑
摘要: string s = " test "; size_t n = s.find_last_not_of(" \r\n\t"); if (n != string::npos){ s.erase(n + 1, s.size() - n); } n = s.find_first_not_of(" \r\n\t"); if (n !... 阅读全文
posted @ 2018-09-04 20:18 BlueOceans 阅读(6545) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/ice_actor/article/details/78648780 个人理解: 卷积计算的过程其实是将原始的全连接换成了卷积全连接,每个kernel为对应通道的权重 卷积全连接和点全连接,注意卷积核是多维的 [ c_in, k_h, k_w ] 阅读全文
posted @ 2018-09-04 11:09 BlueOceans 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 替换单个字符串 string fnd = "dataset"; string rep = "labels"; string buf = "d:/data/dataset/ii.jpg"; buf = buf.replace(buf.find(fnd), fnd.length(), rep); 替换所 阅读全文
posted @ 2018-09-03 14:54 BlueOceans 阅读(13417) 评论(0) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2018-08-19 10:30 BlueOceans 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 下载文件夹 ossutil64 cp oss://folder/ out_folder/ -r --jobs 20 阅读全文
posted @ 2018-08-15 11:28 BlueOceans 阅读(270) 评论(0) 推荐(0) 编辑
摘要: Resnet网络:两种不同设计结构的误差对比 疑问1:残差网络用于解决深度网络的退化问题,那么对于浅层网络也有效果吗? 疑问2:不同的loss函数如何影响整个网络的更新的? 阅读全文
posted @ 2018-08-06 18:20 BlueOceans 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 主要是对内存数据自动编解码 阅读全文
posted @ 2018-07-30 19:50 BlueOceans 阅读(29271) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 20 下一页