| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- import torch
- import math
- import warnings
- from torch import nn
- from torch.nn.init import _calculate_fan_in_and_fan_out
- def is_meta_device(device) -> bool:
- """Check if targeting meta device (explicit arg or context manager)."""
- if device is not None:
- return str(device) == 'meta'
- # Check context manager (PyTorch 2.0+)
- if hasattr(torch, 'get_default_device'):
- default_device = torch.get_default_device()
- return default_device is not None and default_device.type == 'meta'
- return False
- def _trunc_normal_(tensor, mean, std, a, b):
- # Cut & paste from PyTorch official master until it's in a few official releases - RW
- # Method based on https://people.sc.fsu.edu/~jburkardt/presentations/truncated_normal.pdf
- def norm_cdf(x):
- # Computes standard normal cumulative distribution function
- return (1. + math.erf(x / math.sqrt(2.))) / 2.
- if (mean < a - 2 * std) or (mean > b + 2 * std):
- warnings.warn("mean is more than 2 std from [a, b] in nn.init.trunc_normal_. "
- "The distribution of values may be incorrect.",
- stacklevel=2)
- # Values are generated by using a truncated uniform distribution and
- # then using the inverse CDF for the normal distribution.
- # Get upper and lower cdf values
- l = norm_cdf((a - mean) / std)
- u = norm_cdf((b - mean) / std)
- # Uniformly fill tensor with values from [l, u], then translate to
- # [2l-1, 2u-1].
- tensor.uniform_(2 * l - 1, 2 * u - 1)
- # Use inverse cdf transform for normal distribution to get truncated
- # standard normal
- tensor.erfinv_()
- # Transform to proper mean, std
- tensor.mul_(std * math.sqrt(2.))
- tensor.add_(mean)
- # Clamp to ensure it's in the proper range
- tensor.clamp_(min=a, max=b)
- return tensor
- def trunc_normal_(tensor, mean=0., std=1., a=-2., b=2.):
- # type: (Tensor, float, float, float, float) -> Tensor
- r"""Fills the input Tensor with values drawn from a truncated
- normal distribution. The values are effectively drawn from the
- normal distribution :math:`\mathcal{N}(\text{mean}, \text{std}^2)`
- with values outside :math:`[a, b]` redrawn until they are within
- the bounds. The method used for generating the random values works
- best when :math:`a \leq \text{mean} \leq b`.
- NOTE: this impl is similar to the PyTorch trunc_normal_, the bounds [a, b] are
- applied while sampling the normal with mean/std applied, therefore a, b args
- should be adjusted to match the range of mean, std args.
- Args:
- tensor: an n-dimensional `torch.Tensor`
- mean: the mean of the normal distribution
- std: the standard deviation of the normal distribution
- a: the minimum cutoff value
- b: the maximum cutoff value
- Examples:
- >>> w = torch.empty(3, 5)
- >>> nn.init.trunc_normal_(w)
- """
- with torch.no_grad():
- return _trunc_normal_(tensor, mean, std, a, b)
- def trunc_normal_tf_(tensor, mean=0., std=1., a=-2., b=2.):
- # type: (Tensor, float, float, float, float) -> Tensor
- r"""Fills the input Tensor with values drawn from a truncated
- normal distribution. The values are effectively drawn from the
- normal distribution :math:`\mathcal{N}(\text{mean}, \text{std}^2)`
- with values outside :math:`[a, b]` redrawn until they are within
- the bounds. The method used for generating the random values works
- best when :math:`a \leq \text{mean} \leq b`.
- NOTE: this 'tf' variant behaves closer to Tensorflow / JAX impl where the
- bounds [a, b] are applied when sampling the normal distribution with mean=0, std=1.0
- and the result is subsequently scaled and shifted by the mean and std args.
- Args:
- tensor: an n-dimensional `torch.Tensor`
- mean: the mean of the normal distribution
- std: the standard deviation of the normal distribution
- a: the minimum cutoff value
- b: the maximum cutoff value
- Examples:
- >>> w = torch.empty(3, 5)
- >>> nn.init.trunc_normal_(w)
- """
- with torch.no_grad():
- _trunc_normal_(tensor, 0, 1.0, a, b)
- tensor.mul_(std).add_(mean)
- return tensor
- def variance_scaling_(tensor, scale=1.0, mode='fan_in', distribution='normal'):
- fan_in, fan_out = _calculate_fan_in_and_fan_out(tensor)
- if mode == 'fan_in':
- denom = fan_in
- elif mode == 'fan_out':
- denom = fan_out
- elif mode == 'fan_avg':
- denom = (fan_in + fan_out) / 2
- variance = scale / denom
- if distribution == "truncated_normal":
- # constant is stddev of standard normal truncated to (-2, 2)
- trunc_normal_tf_(tensor, std=math.sqrt(variance) / .87962566103423978)
- elif distribution == "normal":
- with torch.no_grad():
- tensor.normal_(std=math.sqrt(variance))
- elif distribution == "uniform":
- bound = math.sqrt(3 * variance)
- with torch.no_grad():
- tensor.uniform_(-bound, bound)
- else:
- raise ValueError(f"invalid distribution {distribution}")
- def lecun_normal_(tensor):
- variance_scaling_(tensor, mode='fan_in', distribution='truncated_normal')
- def init_weight_vit(
- module: nn.Module,
- name: str,
- init_bias: float = 0.02,
- head_bias: float = 0.,
- classifier_name: str = 'head'
- ):
- if isinstance(module, (nn.Linear, nn.Conv1d, nn.Conv2d, nn.Conv3d)):
- if name.startswith(classifier_name):
- nn.init.zeros_(module.weight)
- nn.init.constant_(module.bias, head_bias)
- else:
- nn.init.trunc_normal_(module.weight, std=0.02)
- if isinstance(module, nn.Linear) and module.bias is not None:
- nn.init.constant_(module.bias, init_bias)
- elif hasattr(module, 'init_weights'):
- module.init_weights()
- def init_weight_jax(
- module: nn.Module,
- name: str,
- head_bias: float = 0.,
- classifier_name: str = 'head',
- ):
- if isinstance(module, nn.Linear):
- if name.startswith(classifier_name):
- nn.init.zeros_(module.weight)
- nn.init.constant_(module.bias, head_bias)
- else:
- nn.init.xavier_uniform_(module.weight)
- if module.bias is not None:
- nn.init.normal_(module.bias, std=1e-6) if 'mlp' in name else nn.init.zeros_(module.bias)
- elif isinstance(module, nn.Conv2d):
- lecun_normal_(module.weight)
- if module.bias is not None:
- nn.init.zeros_(module.bias)
- elif hasattr(module, 'init_weights'):
- module.init_weights()
|