摘要: 这是SEnet 的特征融合部分, 注意: 暂时还不知道效果如何,可以测试一下。这个和cfe一样都是不改变shape的module,可以多关注一下。 阅读全文
posted @ 2018-11-16 16:53 overfitover 阅读(1807) 评论(0) 推荐(0) 编辑
摘要: cuda编程实战参考文档:https://blog.csdn.net/shuzfan/article/category/7072956https://www.cnblogs.com/1024incn/p/4537010.htmlhttps://www.cnb... 阅读全文
posted @ 2018-11-16 10:52 overfitover 阅读(315) 评论(0) 推荐(0) 编辑
摘要: cython参考文献https://moonlet.gitbooks.io/cython-document-zh_cn/content/ch1-basic_tutorial.htmlhttp://blog.hszofficial.site/TutorialF... 阅读全文
posted @ 2018-11-13 11:55 overfitover 阅读(516) 评论(0) 推荐(0) 编辑
摘要: cuda 安装与卸载 cuda安装 注意: 显卡驱动不要再安转了 examples可以不安转,这个是做验证的。 好像有教程不让安装opengl ,可以参考一下。 环境配置 根据你使用的shell对应编辑.bashrc或是.zshrc. 注意: 根据安转的cuda版本选择是8.0还是9.0. 检查 会 阅读全文
posted @ 2018-11-12 17:04 overfitover 阅读(3357) 评论(0) 推荐(0) 编辑
摘要: BirdNet 论文解读核心思想:Detection Framework:第一步:将三维点云信息处理成2D的鸟瞰图。第二步:利用处理图像的卷积神经网络鸟瞰图,得到位置,朝向,类别等2D信息。第三步:进行3D Object Oriented Detection... 阅读全文
posted @ 2018-11-08 22:45 overfitover 阅读(1149) 评论(0) 推荐(0) 编辑
摘要: Pytorch Distributed 初始化方法参考文献https://pytorch.org/docs/master/distributed.html代码https://github.com/overfitover/pytorch-distributed... 阅读全文
posted @ 2018-11-06 11:15 overfitover 阅读(10127) 评论(2) 推荐(1) 编辑
摘要: pytorch 分布式训练参考文献https://pytorch.org/tutorials/intermediate/dist_tuto.html代码https://github.com/overfitover/pytorch-distributed欢迎来... 阅读全文
posted @ 2018-11-06 10:09 overfitover 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: pytorch 多gpu训练用nn.DataParallel重新包装一下数据并行有三种情况前向过程device_ids=[0, 1, 2]model = model.cuda(device_ids[0])model = nn.DataParallel(mod... 阅读全文
posted @ 2018-11-05 10:59 overfitover 阅读(3409) 评论(0) 推荐(0) 编辑
摘要: pytorch demoimport torch.nn as nnimport torch.nn.functional as Ffrom torch.autograd import Variableimport torchimport torch.optim... 阅读全文
posted @ 2018-10-31 10:53 overfitover 阅读(8004) 评论(0) 推荐(0) 编辑
摘要: 预处理预处理指令主要包括:文件包含,宏定义,条件编译,特殊控制。文件包含:#include 是 C 程序设计中最常用的预处理指令。例如,几乎每个需要输入输出的 C 程序,都要包含 #include 指令,表示把 stdio.h 文件中的全部内容,替换该行指令... 阅读全文
posted @ 2018-10-30 21:18 overfitover 阅读(249) 评论(0) 推荐(0) 编辑