
深度学习
文章平均质量分 51
zisuina_2
这个作者很懒,什么都没留下…
展开
-
/mmcv/_ext.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _ZN3c107Warning
mmcv安装原创 2023-01-06 15:43:29 · 1733 阅读 · 1 评论 -
qt.qpa.plugin: Could not load the Qt platform plugin “xcb“ in
Qt5 bug原创 2022-07-01 16:38:25 · 1180 阅读 · 0 评论 -
深度学习面试题总结-2022总结
背景:社招(我估摸着校招聘一样会问,主要方向:自动驾驶);祝愿每一个求职者都可以顺利;我刷题的思路就是repeat repeat repeat,背, 背, 背,背着背着就懂了;刷的dp,二叉树目前一题没考,好苦。地平线1面:自我介绍mobilenet整合时候的处理(1*1进行通道变化)手撸depthwise和普通卷积的计算量(吴恩达Mobilenet视频里有讲解, 1/9 + 1/c_out)(https://www.bilibili.com/video/BV1Rf4y1b7NP?p=21)原创 2021-12-28 10:58:54 · 1485 阅读 · 1 评论 -
Reducer buckets have been rebuilt in this iteration.
在跑torch多GPU报错“Reducer buckets have been rebuilt in this iteration.”原因是torch版本问题, torch1.7以上的distributed.py发生更改导致报错:这玩意是distributed.py里的前向函数报错def forward(self, inputs, *kwargs): if self.ddp_join_enabled: ones = torch.ones(原创 2021-11-05 11:13:33 · 13648 阅读 · 9 评论 -
小目标的目标检测
cropcrop的尺寸尽可能的FPN增大输入图片尺寸原创 2021-07-02 15:08:30 · 369 阅读 · 1 评论 -
train错误cpython-37m-x86_64-linux-gnu.so: undefined symbol: THPVariableClass
1.检查torch 和 torchvision , python 版本按照需要的版本安装删除之前编译的东西,重新编译cd /project_path/buildrm -rf *cd ..python setup.py build develop原创 2020-11-11 10:34:51 · 9370 阅读 · 1 评论 -
图像上采样方法 - 插值 反卷积 反池化
有3种常见的方法:双线性插值(bilinear)反卷积(Transposed Convolution)反池化(Unpooling)pytorch 上采样: https://pytorch.org/docs/stable/_modules/torch/nn/modules/upsampling.html双线性插值 (bilinear)import torch.nn as nnnn....原创 2019-12-04 15:40:17 · 2455 阅读 · 0 评论