keras 添加L2正则 和 dropout层
Posted rising-sun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了keras 添加L2正则 和 dropout层相关的知识,希望对你有一定的参考价值。
在某一层添加L2正则:
from keras import regularizer model.add(layers.Dense(..., kernel_regularizer = regularizers(0.001),...))
在某一层之后添加dropout层:
model.add(layers.Dropout(0.5))
以上是关于keras 添加L2正则 和 dropout层的主要内容,如果未能解决你的问题,请参考以下文章
正则化方法:L1和L2 regularization数据集扩增dropout(转)
正则化方法:L1和L2 regularization数据集扩增dropout
使用 Keras 将 Dropout 层添加到 Segmentation_Models Resnet34