diff --git a/elasticai/creator/nn/fixed_point/conv1d/layer.py b/elasticai/creator/nn/fixed_point/conv1d/layer.py index 13d357e3..27db5e06 100644 --- a/elasticai/creator/nn/fixed_point/conv1d/layer.py +++ b/elasticai/creator/nn/fixed_point/conv1d/layer.py @@ -21,8 +21,6 @@ def __init__( out_channels: int, signal_length: int, kernel_size: int | tuple[int], - stride: int | tuple[int] = 1, - padding: int | tuple[int] = 0, bias: bool = True, device: Any = None, ) -> None: @@ -33,8 +31,6 @@ def __init__( in_channels=in_channels, out_channels=out_channels, kernel_size=kernel_size, - stride=stride, - padding=padding, bias=bias, device=device, ) @@ -96,8 +92,6 @@ def __init__( bn_eps: float = 1e-5, bn_momentum: float = 0.1, bn_affine: bool = True, - stride: int | tuple[int] = 1, - padding: int | tuple[int] = 0, bias: bool = True, device: Any = None, ) -> None: @@ -110,8 +104,6 @@ def __init__( in_channels=in_channels, out_channels=out_channels, kernel_size=kernel_size, - stride=stride, - padding=padding, bias=bias, device=device, )