Rate this Page
โ˜… โ˜… โ˜… โ˜… โ˜…

torch.nn.utils.remove_spectral_norm#

torch.nn.utils.remove_spectral_norm(module, name='weight')[source]#

Remove the spectral normalization reparameterization from a module.

Parameters
  • module (Module) โ€“ containing module

  • name (str, optional) โ€“ name of weight parameter

Return type

T_module

Example

>>> m = spectral_norm(nn.Linear(40, 10))
>>> remove_spectral_norm(m)