摘要:
1. 下载对应版本的驱动 https://www.nvidia.com/Download/index.aspx?lang=en-us 2. 卸载已有驱动 sudo sh NVIDIA-Linux-x86_64-390.116.run --uninstall或sudo /usr/bin/nvidia- 阅读全文
摘要:
简单例子 https://github.com/siriusdemon/Build-Your-Own-Face-Model/tree/master/recognition 遮挡情况下,附数据集 http://www.escience.cn/people/geshiming/mafa.html 阅读全文
摘要:
ffmpeg -i D14.dav -vcodec copy -acodec copy D14.mp4 阅读全文
摘要:
opencvcall.cpp #include <opencv2/opencv.hpp> using namespace cv; extern "C" { void test(int height, int width, int channel, uchar* frame_data) { int c 阅读全文
摘要:
valgrind --tool=memcheck --leak-check=full --show-leak-kinds=all --undef-value-errors=no --log-file=log ./可执行文件名 阅读全文
摘要:
1. 轻量化网络 参考: https://zhuanlan.zhihu.com/p/35405071 Mobilenet v1核心是把卷积拆分为Depthwise+Pointwise两部分。 图5 为了解释Mobilenet,假设有 的输入,同时有 个 的卷积。如果设置 且 ,那么普通卷积输出为 , 阅读全文
摘要:
https://www.ncnynl.com/archives/201802/2295.html 阅读全文
摘要:
一、算法详解 二、代码解析(pytorch版) 训练代码:https://blog.csdn.net/u014380165/article/details/79058147 测试代码:https://blog.csdn.net/u014380165/article/details/79058381 阅读全文
摘要:
1. 混淆矩阵 阅读全文
摘要:
TSM: Temporal Shift Module for Efficient Video Understanding https://github.com/mit-han-lab/temporal-shift-module https://github.com/jinwchoi/awesome- 阅读全文