MCPcopy Create free account
hub / github.com/MaureenZOU/TSAM / forward

Method forward

src/base/base_model.py:14–20  ·  view source on GitHub ↗

Forward pass logic :return: Model output

(self, *input)

Source from the content-addressed store, hash-verified

12 self.logger = logging.getLogger(self.__class__.__name__)
13
14 def forward(self, *input):
15 """
16 Forward pass logic
17
18 :return: Model output
19 """
20 raise NotImplementedError
21
22 def summary(self):
23 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected