tf.keras.regularizers.l1_l2

Create a regularizer that applies both L1 and L2 penalties.

Compat aliases for migration

See Migration guide for more details.

tf.compat.v1.keras.regularizers.l1_l2

The L1 regularization penalty is computed as:

1penalty=1i=0n|xi|

The L2 regularization penalty is computed as:

2penalty=2i=0nxi2

l1 Float; L1 regularization factor.
l2 Float; L2 regularization factor.

An L1L2 Regularizer with the given regularization factors.