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

Method forward

modules/pvconv.py:90–96  ·  view source on GitHub ↗
(self, inputs)

Source from the content-addressed store, hash-verified

88 self.point_features = SharedMLP(in_channels, out_channels)
89
90 def forward(self, inputs):
91 features, coords, temb = inputs
92 voxel_features, voxel_coords = self.voxelization(features, coords)
93 voxel_features = self.voxel_layers(voxel_features)
94 voxel_features = F.trilinear_devoxelize(voxel_features, voxel_coords, self.resolution, self.training)
95 fused_features = voxel_features + self.point_features(features)
96 return fused_features, coords, temb
97
98
99

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected