Standardize =========== Standardizes input (centering and scaling). **Abstract Signature:** ``Standardize(x: Tensor)`` .. raw:: html

PyTorch

API:
Strategy: Macro '({x} - {x}.mean()) / ({x}.std() + 1e-5)'

JAX (Core)

API: jax.nn.standardize
Strategy: Direct Mapping

Flax NNX

API: flax.nnx.standardize
Strategy: Direct Mapping