예제 #1
0
 def __init__(self):
     super().__init__()
     self.m = nn.MaxPool1d(2, stride=1, dilation=2)
예제 #2
0
 def __init__(self):
     super().__init__()
     self.m = nn.MaxPool1d(3, 2, ceil_mode=True)
예제 #3
0
 def __init__(self):
     super().__init__()
     self.m = nn.MaxPool1d(2, stride=1, return_indices=True)
예제 #4
0
 def __init__(self):
     super().__init__()
     self.m = nn.MaxPool1d(3, stride=2)