L2L1
A regularizer that applies both L1 and L2 regularization penalties. The L1 regularization penalty is computed as:
``loss = l1 * reduce_sum(abs(x))``
The L2 regularization penalty is computed as
``loss = l2 * reduce_sum(square(x))``
This is a common class which have two specific implementations: L1 and L2.