33 lines
563 B
Python
33 lines
563 B
Python
from torch.ao.nn.intrinsic import (
|
|
BNReLU2d,
|
|
BNReLU3d,
|
|
ConvBn1d,
|
|
ConvBn2d,
|
|
ConvBn3d,
|
|
ConvBnReLU1d,
|
|
ConvBnReLU2d,
|
|
ConvBnReLU3d,
|
|
ConvReLU1d,
|
|
ConvReLU2d,
|
|
ConvReLU3d,
|
|
LinearBn1d,
|
|
LinearReLU,
|
|
)
|
|
from torch.ao.nn.intrinsic.modules.fused import _FusedModule # noqa: F401
|
|
|
|
|
|
__all__ = [
|
|
"BNReLU2d",
|
|
"BNReLU3d",
|
|
"ConvBn1d",
|
|
"ConvBn2d",
|
|
"ConvBn3d",
|
|
"ConvBnReLU1d",
|
|
"ConvBnReLU2d",
|
|
"ConvBnReLU3d",
|
|
"ConvReLU1d",
|
|
"ConvReLU2d",
|
|
"ConvReLU3d",
|
|
"LinearBn1d",
|
|
"LinearReLU",
|
|
]
|