MCPcopy Create free account
hub / github.com/TimSeizinger/Bokehlicious / forward

Method forward

method/nn_util.py:47–51  ·  view source on GitHub ↗
(self, x, x_size)

Source from the content-addressed store, hash-verified

45 self.patch_embed = PatchEmbedIR(embed_dim=embed_dim_next)
46
47 def forward(self, x, x_size):
48 x = self.patch_unembed(x, x_size)
49 x = self.conv(x)
50 x = self.patch_embed(x)
51 return x
52
53class InvertedConvolution(nn.Module):
54 def __init__(self, in_channels, out_channels, kernel_size, padding='same', bias=True):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected