(self, x)
| 111 | self.repeats = repeats |
| 112 | |
| 113 | def forward(self, x): |
| 114 | x = x.unsqueeze(-1).repeat(1, 1, self.repeats) # <------------ Mejorar? |
| 115 | return x |
| 116 | |
| 117 | class Chomp1d(nn.Module): |
| 118 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected