tf.keras.constraints.MinMaxNorm

View source on GitHub

MinMaxNorm weight constraint.

Inherits From: Constraint

tf.keras.constraints.MinMaxNorm(
    min_value=0.0, max_value=1.0, rate=1.0, axis=0
)

Constrains the weights incident to each hidden unit to have the norm between a lower bound and an upper bound.

Arguments:

Methods

__call__

View source

__call__(
    w
)

Call self as a function.

get_config

View source

get_config()