
深度学习
文章平均质量分 97
lzAllen
这个作者很懒,什么都没留下…
展开
-
mmdetection族的github项目编译时候出现的bug
bug一:解决方法:g++ error cuda_runtime_api.h: No such file or directorybug二:安装基于mmdetection的solo时:unable to execute ':/usr/local/cuda-10.1/bin/nvcc': No such file or directory解决方法:安装 maskrcnn-benchmark: command ':/usr/local/cuda/bin/nvcc' failed wit...原创 2020-12-10 10:34:54 · 457 阅读 · 0 评论 -
使用ONNX来部署mmdetection中的模型
安装ONNXgithub:https://github.com/onnx/onnxconda install -c conda-forge protobuf numpysudo apt-get install protobuf-compiler libprotoc-devpip install onnxpip install pytest==2.8 nbval一开始我使用pip install pytestnbval,然后报出了如下的错误,然后我通过这句提示nbval 0.9..原创 2020-11-25 17:39:32 · 3714 阅读 · 1 评论 -
MSE,MAE和CE的区别
MSE和MAE的区别异常值MSE对异常值敏感,因为它的Cost是平方的,所以异常值的loss会非常大,下面的公式中y表示标注,a表示网络预测值。MAE对异常之不敏感,不妨设拟合函数为常数,那么MSE就相当于所有数据的均值(列出loss对c求导即可),而MAE相当于所有数据的中位数,所以会对异常值不敏感。优化效率MAE不可导而且所有的导数的绝对值都相同,优化时无法确定更新速度,MSE可导,有closed-form解,只需要令偏导数为0即可。如何选择因为MSE对异常值敏感原创 2020-11-22 15:03:18 · 2371 阅读 · 0 评论 -
GhostNet的主要代码理解及其注释
参考的知乎博客:CVPR 2020:华为GhostNet,超越谷歌MobileNet,已开源github:https://github.com/huawei-noah/ghostnet# 2020.06.09-Changed for building GhostNet# Huawei Technologies Co., Ltd. <foss@huawei.com>"""Creates a GhostNet Model as defined in:Ghos.原创 2020-11-19 19:16:24 · 1772 阅读 · 2 评论 -
深度学习 计算机视觉面试常考知识点
深度学习 计算机视觉面试常考知识点深度学习1. 你觉得batch-normalization过程是什么样的 知乎 Batch Normalization原理与实战原创 2020-11-12 11:22:49 · 1267 阅读 · 1 评论