2020年5月15日

权重衰减(weight decay), L2正则

摘要: 正则化方法:防止过拟合,提高泛化能力 避免过拟合的方法有很多:early stopping、数据集扩增(Data augmentation)、正则化(Regularization)包括L1、L2(L2 regularization也叫weight decay),dropout。 权重衰减(weigh 阅读全文

posted @ 2020-05-15 17:47 那抹阳光1994 阅读(2281) 评论(0) 推荐(1) 编辑

python中的super().__init__()

摘要: 子类构造函数调用super().init() class Person: def __init__(self, name = 'Person'): self.name = name class Puple(Person): # 直接继承Person,可调用name pass class Puple_ 阅读全文

posted @ 2020-05-15 16:11 那抹阳光1994 阅读(6028) 评论(0) 推荐(0) 编辑

导航