MCPcopy Create free account
hub / github.com/thygate/stable-diffusion-webui-depthmap-script / forward

Method forward

lib/network_auxi.py:119–124  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

117 self.init_params()
118
119 def forward(self, x):
120 x = self.conv1(x)
121 x = x + self.conv_branch(x)
122 x = self.relu(x)
123
124 return x
125
126 def init_params(self):
127 for m in self.modules():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected