MCPcopy Create free account
hub / github.com/pytorch/tutorials / __init__

Method __init__

beginner_source/nn_tutorial.py:743–745  ·  view source on GitHub ↗
(self, func)

Source from the content-addressed store, hash-verified

741
742class Lambda(nn.Module):
743 def __init__(self, func):
744 super().__init__()
745 self.func = func
746
747 def forward(self, x):
748 return self.func(x)

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected