MCPcopy Create free account
hub / github.com/Pointcept/PointTransformerV3 / forward

Method forward

model.py:510–516  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

508 self.drop = nn.Dropout(drop)
509
510 def forward(self, x):
511 x = self.fc1(x)
512 x = self.act(x)
513 x = self.drop(x)
514 x = self.fc2(x)
515 x = self.drop(x)
516 return x
517
518
519class Block(PointModule):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected