MCPcopy Create free account
hub / github.com/Zhiyuan-R/Tiger-Diffusion / __init__

Method __init__

modules/pointnet.py:97–99  ·  view source on GitHub ↗
(self, in_channels, out_channels)

Source from the content-addressed store, hash-verified

95
96class PointNetFPModule(nn.Module):
97 def __init__(self, in_channels, out_channels):
98 super().__init__()
99 self.mlp = SharedMLP(in_channels=in_channels, out_channels=out_channels, dim=1)
100
101 def forward(self, inputs):
102 if len(inputs) == 3:

Callers

nothing calls this directly

Calls 2

SharedMLPClass · 0.90
__init__Method · 0.45

Tested by

no test coverage detected