摘要: 在CV/NLP/DL领域中,有哪些修改一行代码或者几行代码提升性能的算法?¶ 想起来些非常经典的东西1. relu:用极简的方式实现非线性激活,还缓解了梯度消失x = max(x, 0)2. normalization:提高网络训练稳定性x = (x - x.mean()) / x.std()3. 阅读全文
posted @ 2021-08-12 22:28 DreamEngineer 阅读(81) 评论(0) 推荐(0)
摘要: 5、算法 (1)https://oi-wiki.org/ (2)https://leetcode-solution-leetcode-pp.gitbook.io/leetcode-solution/ 阅读全文
posted @ 2021-06-25 01:07 DreamEngineer 阅读(87) 评论(0) 推荐(0)
摘要: 0、网站 (1)https://oi-wiki.org/ (2)https://leetcode-solution-leetcode-pp.gitbook.io/leetcode-solution/ (3)https://labuladong.gitee.io/algo/ 1. 链表 21. 合并两 阅读全文
posted @ 2021-06-25 01:06 DreamEngineer 阅读(44) 评论(0) 推荐(0)
摘要: 1、深度学习模型代码 (1) NER:Flat-Lattice-Transformer 代码:https://github.com/LeeSureman/Flat-Lattice-Transformer (2) Pytorch官网案例 https://pytorch.org/tutorials/in 阅读全文
posted @ 2021-06-25 01:05 DreamEngineer 阅读(101) 评论(0) 推荐(0)
摘要: 算法理论+工程能力+业务理解 = 优秀的推荐算法工程师!加油~ 友情链接:https://github.com/hongleizhang/RSPapers (整理得很全的推荐系统文献) 注: 机器学习、深度学习宏观上的方法论:模型+算法+任务 模型是CNN,RNN,Attention,FM等抽象的计 阅读全文
posted @ 2021-05-31 10:14 DreamEngineer 阅读(724) 评论(0) 推荐(0)