机器学习
NOWAY_EXPLORER
这个作者很懒,什么都没留下…
展开
-
Albumentation使用指南
Albumentation使用指南import最好放在最前面否则可能会和其他模块冲突,import之后如果包OMP的错误就加两行import osos.environ['KMP_DUPLICATE_LIB_OK']='TRUE'资源官方example官方demo使用import albumentations as Afrom PIL import Imageimport cv2 as cvimport numpy as npfrom data imp...原创 2020-08-31 14:00:50 · 8578 阅读 · 1 评论 -
几种梯度下降优化器和技巧介绍
本文章大部分算法来自于这篇论文An overview of gradient descent optimization algorithms优化器:1.动量(mommentum)采用部分上一时刻的动量来更新这一步的梯度,具有加速收敛,减缓震荡的作用2.NAG(Nesterov Accelerated Gradient)加入了预测的概念,预测的依据是假设和上一次和这一次的动量一样,可以有效防止增高3.Adagrad(Adaptive Dradient)因为神经网络中有很原创 2020-05-27 22:52:06 · 831 阅读 · 0 评论