MCPcopy Create free account
hub / github.com/ChunmingHe/WS-SAM / forward

Method forward

lib/Modules.py:276–285  ·  view source on GitHub ↗
(self, f1, f2, f3, f4)

Source from the content-addressed store, hash-verified

274 self.interFA3 = InterFA(out_channels)
275
276 def forward(self, f1, f2, f3, f4):
277 f1 = self.T1(f1) # 96,96,96
278 f2 = self.T2(f2) # 96,48,48
279 f3 = self.T3(f3) # 96,24,24
280 f4 = self.T4(f4) # 96,12,12
281 temp3, f3 = self.interFA3(f3, f4)
282 temp2, f2 = self.interFA2(f2, temp3)
283 temp1, f1 = self.interFA1(f1, temp2)
284
285 return f1, f2, f3, f4
286
287
288"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected