上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 62 下一页
摘要: 显卡驱动突然崩了 NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and runnin 阅读全文
posted @ 2018-09-08 13:24 牧马人夏峥 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL1、迭代法,超时 ListNode* reverseList(ListNode* head) { if(!head || !head->next)return head; ListNode dummy(-1); ListNode* prev = &dum... 阅读全文
posted @ 2018-09-04 22:58 牧马人夏峥 阅读(119) 评论(0) 推荐(0) 编辑
摘要: https://github.com/sfzhang15/RefineDet 1、编译安装 cp Makefile.config.example Makefile.config make all -j4 make pycaffe 2、训练 (1)原作只提供了resnet101,vgg16两种网络,因 阅读全文
posted @ 2018-09-04 18:35 牧马人夏峥 阅读(2657) 评论(1) 推荐(0) 编辑
摘要: https://blog.csdn.net/baocheng_521/article/details/77161791 用第一种方式成功 阅读全文
posted @ 2018-09-04 09:23 牧马人夏峥 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 一、创新点 针对two-stage的速度慢以及one-stage精度不足提出的方法,refinedet 包括三个核心部分:使用TCB来转换ARM的特征,送入ODM中进行检测; 两步级连回归;过滤较多的负样本(容易分类的,类似于ohem)。 (1)anchor refine module 阅读全文
posted @ 2018-08-28 08:26 牧马人夏峥 阅读(3094) 评论(1) 推荐(0) 编辑
摘要: 树莓派3b+上安装 1、安装 2、git clone https://github.com/Tencent/ncnn 3、修改CmakeList.txt文件。去掉下面两段代码前面的#,便于后续的测试 https://github.com/Tencent/ncnn/wiki/how-to-build 阅读全文
posted @ 2018-08-23 14:20 牧马人夏峥 阅读(2612) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/fuwenyan/article/details/79500765a https://www.cnblogs.com/yangyangcv/archive/2012/03/23/2413335.html http://vra.github.io/2016/ 阅读全文
posted @ 2018-08-17 13:22 牧马人夏峥 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 再添加一个python3.6conda create --name py36 python=3.6然后通过source activate py36来激活环境 阅读全文
posted @ 2018-08-17 11:45 牧马人夏峥 阅读(2633) 评论(0) 推荐(0) 编辑
摘要: 四个坐标系的转换:https://blog.csdn.net/humanking7/article/details/44756073 标定和矫正:https://blog.csdn.net/u013498583/article/details/71404323 四个视频教程:https://www. 阅读全文
posted @ 2018-07-26 09:57 牧马人夏峥 阅读(217) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/daydayjump/article/details/80899029 阅读全文
posted @ 2018-07-18 21:38 牧马人夏峥 阅读(112) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 62 下一页