types.py 150 B

123456789
  1. '''Copyright The Microsoft DeepSpeed Team'''
  2. from enum import IntEnum
  3. class ActivationFuncType(IntEnum):
  4. UNKNOWN = 0
  5. GELU = 1
  6. ReLU = 2