mindspore.ops.silent_check.ASDBase
- class mindspore.ops.silent_check.ASDBase(cls, *args, **kwargs)[source]
ASDBase is the base class of operator with feature value detection feature in python.
- Parameters
- Supported Platforms:
Ascend
Examples
>>> from mindspore.ops.silent_check import ASDBase >>> from mindspore.ops import LayerNorm as OriginLayerNorm >>> class LayerNormASD(ASDBase): ... def __init__(self, *args, **kwargs): ... super().__init__(OriginLayerNorm, *args, **kwargs) ... # init parameters for feature value detection by calling the base class method generate_params() ... self.pre_val, self.min_val, self.max_val, self.cnt = self.generate_params() ... ... def __call__(self, input_x, gamma, beta): ... if self.enable_check: ... # execute feature value detection by calling the check_op of base class ... input_x = self.check_op( ... input_x, self.pre_val, self.min_val, self.max_val, self.cnt, None) ... self.cnt += 1 ... # return the result of original operator ... return self.op(input_x, gamma, beta)
- generate_params()[source]
Generate support params for feature value detection.
- Returns
tuple consisting of four elements. The derived class initializes the parameters required for feature value detection by calling this function.
Examples
>>> from mindspore.ops.silent_check import ASDBase >>> from mindspore.ops import LayerNorm as OriginLayerNorm >>> class LayerNormASD(ASDBase): ... def __init__(self, *args, **kwargs): ... super().__init__(OriginLayerNorm, *args, **kwargs) ... # init parameters for feature value detection by calling the base class function ... self.pre_val, self.min_val, self.max_val, self.cnt = self.generate_params()