摘要: 1压缩 unzip aaa.zip zip -r aaa.zip aaa/ tar -xzvf aaa.tar.gz 2conda conda list #查看安装包 conda info -e #查看环境 conda create -n py36(name) python=3.6(python 版 阅读全文
posted @ 2019-03-11 17:48 freebirds 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1 首选gdb工具是一个高校的debug工具,可以很快找到错误,(尤其对于某些c++程序)错误的原因是由于内存泄露,比如调试core文件 2 阅读全文
posted @ 2019-03-11 17:38 freebirds 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 检测(1)跑通mmdetection 二、安装教程 本人的系统环境: Ubuntu 16.04 Cuda 9.0 + Cudnn 7.0.5 (cuda8.0也可,亲测) Python 3.6 (mmdetection要求Python版本需要3.4+) Anaconda 3 (可选) Ubuntu 阅读全文
posted @ 2019-03-11 14:56 freebirds 阅读(5345) 评论(0) 推荐(1) 编辑
摘要: 接下来一段时间我会从0开始学习如何做检测了! 希望可以有成效 阅读全文
posted @ 2019-03-11 14:33 freebirds 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 之前做彭老师的项目(人体属性),就是有这个问题! 例如: a = torch.Tensor((1,2,3)) b = torch.Tensor((3,4,5)) 想要变成[[1,2,3],[3,4,5]] 错误做法: a = np.array(a.data.cpu()) b = np.array(b 阅读全文
posted @ 2019-03-11 14:28 freebirds 阅读(428) 评论(0) 推荐(0) 编辑