You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 421 B

123456789
  1. from .batch_matmul_activation import BatchMatMulActivation
  2. from .concat import Concat
  3. from .conv import Conv2d, ConvRelu2d, ConvTranspose2d, ConvTransposeRelu2d
  4. from .conv_bn import ConvBn2d, ConvBnRelu2d
  5. from .conv_transpose_bn import ConvTransposeBn2d, ConvTransposeBnRelu2d
  6. from .elemwise import Elemwise
  7. from .linear import Linear
  8. from .module import QuantizedModule
  9. from .quant_dequant import DequantStub, QuantStub