yanghailin

PyTorch C++ API

https://pytorch.org/cppdocs/

利用Pytorch的C++前端(libtorch)读取预训练权重并进行预测

https://oldpan.me/archives/pytorch-c-libtorch-inference

交通红绿灯 (caffe 多个模型融合)

http://www.sohu.com/a/128094821_185201
https://www.freecodecamp.org/news/recognizing-traffic-lights-with-deep-learning-23dae23287cc/#.6pbtdktpd
https://github.com/davidbrai/deep-learning-traffic-lights/issues

python中列表排序的一些问题

https://blog.csdn.net/weixin_38052444/article/details/82119818

FQ 免费账号

https://gitlab.com/Alvin9999/free/wikis/ss免费账号
https://github.com/Alvin9999/new-pac/wiki/ss免费账号
https://t1.free-air.org/ss免费账号/

https://www.pianshen.com/article/4114261494/ ssr教程

键盘重新映射

linux系统下键盘按键的重新映射——xmodmap工具和xev工具
https://www.cnblogs.com/yinheyi/p/10146900.html
https://blog.csdn.net/guangmingsky/article/details/78721370

! 20190831 yhl   把home键替换成空 用shift+home=home
xmodmap -e \'keycode 110 = NoSymbol Home\'

这个是一次生效,重启失效。想永远有效,gedit ~/.Xmodmap
文本中添加:!表示注释
! 20190831 yhl   把home键替换成空 用shift+home=home
keycode 110 = NoSymbol Home
重启即可

pytorch 中文教程

http://pytorch123.com

PyTorch 实现孪生网络识别面部相似度

https://www.pytorchtutorial.com/pytorch-one-shot-learning/

cmakelist 学习

https://www.linuxidc.com/Linux/2019-01/156197.htm

报错解决:Missing key(s) in state_dict: Unexpected key(s) in state_dict

https://www.cnblogs.com/llfctt/p/11045066.html
解决方案3:
model.load_state_dict({k.replace(\'module.\',\'\'):v for k,v in torch.load(\'myfile.pth\').items()})

python metaclass //python metaclass orm

https://blog.csdn.net/weixin_35955795/article/details/52985170
https://blog.csdn.net/jaccty/article/details/77368120
https://www.cnblogs.com/yjt1993/p/11103368.html
https://segmentfault.com/a/1190000007255412
https://www.cnblogs.com/yssjun/p/9832526.html (Python MetaClass深入分析)

tf lite

https://github.com/tensorflow/examples/tree/master/lite/examples
TensorFlow Lite Python解释器 https://segmentfault.com/a/1190000018741468

人脸识别

http://bbs.cvmart.net/topics/817/1 人脸识别常用数据集大全(12/20 更新)包含百度网盘

TVM

Ubuntu下TVM的编译安装
https://blog.csdn.net/weixin_43953703/article/details/94344889
利用TVM完成C++端的部署
https://zhuanlan.zhihu.com/p/60981432

pytorch转onnx问题
不支持reshape,添加支持。在/torch/onnx/symbolic.py添加
http://www.bubuko.com/infodetail-3203156.html

Pytorch导出ONNX踩坑指南
不支持的操作... scatter
https://www.jianshu.com/p/e2a444853e13

一步一步解读神经网络编译器TVM(一)——一个简单的例子
https://oldpan.me/archives/the-first-step-towards-tvm-1

如何学习TVM的代码?
https://www.zhihu.com/question/268423574/answer/506008668

使用TVM在树莓派上运行INT8量化SSD模型
https://zhuanlan.zhihu.com/p/136442019

冯思远 完整版演讲视频
https://zhuanlan.zhihu.com/p/150110137

TVM 学习过程汇总(持续更新
https://zhuanlan.zhihu.com/p/89904859

PyTorch模型转TVM模型全流程记录 (转east)
https://zhuanlan.zhihu.com/p/108679717

在TVM中实现Instance Normalization层 (增加新算子)
https://bindog.github.io/blog/2018/11/27/add-instance-norm-in-TVM/

cmake 简介

https://www.cnblogs.com/lidabo/p/7359422.html

下载文献,知网论文

广西图书馆 注册的是我手机号码 密码6位数字 5×××××
[http://wap.gxlib.org/ermsClient/eresourceInfo.do?rid=108]

有文章的doi,可以在sci-hub里面下载
[https://sci-hub.tw/]

iData-知识检索 一天可以下三个
https://www.cn-ki.net/

Scene Text Detection

https://paperswithcode.com/task/scene-text-detection/codeless#code

pytorch

PyTorch 中的 ModuleList 和 Sequential: 区别和使用场景
https://zhuanlan.zhihu.com/p/64990232

深度可分离卷积

深度可分离卷积

图像分割

https://handong1587.github.io/deep_learning/2015/10/09/segmentation.html#deeplab
voc2012分割榜单
v3+ :https://zhuanlan.zhihu.com/p/41150415?utm_source=zhihu
ocrnet Object-Contextual Representations for Semantic Segmentation
https://www.cnblogs.com/xiangs/p/12863173.html

centernet

扔掉anchor!真正的CenterNet——Objects as Points论文解读
Centernet相关---尤其有关heatmap相关解释
【从零开始学CenterNet】7. CenterNet测试推理过程
CenterNet(Points) (CVPR, 2019)--论文翻译
CenterNet 数据加载部分解析

focal loss

Focal Loss深度解析
https://www.cnblogs.com/leebxo/p/10433649.html
https://ptorch.com/news/253.html
https://github.com/yatengLG/Focal-Loss-Pytorch/blob/master/Demo.ipynb

ocr接口调用

合合
https://ai.intsig.com/
https://www.textin.com

rnn && LSTM

rnn
https://zhuanlan.zhihu.com/p/30844905
https://zybuluo.com/hanbingtao/note/541458

lstm
https://www.cnblogs.com/bonelee/p/12106075.html
https://zybuluo.com/hanbingtao/note/581764

显示pytorch模型网址

https://netron.app/

C++ Concurrency In Action

http://shouce.jb51.net/cpp_concurrency_in_action/

训练调参技巧

https://paddleclas.readthedocs.io/zh_CN/latest/models/Tricks.html#

ppocr答疑

https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.2/doc/doc_ch/FAQ.md

labuladong

https://labuladong.gitee.io/algo/

分类:

技术点:

相关文章:

  • 2021-11-26
  • 2021-07-30
  • 2021-06-11
  • 2021-05-29
  • 2021-09-27
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-01
  • 2022-12-23
  • 2022-02-05
相关资源
相似解决方案