(self, x)
| 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 | |
| 519 | class Block(PointModule): |
nothing calls this directly
no outgoing calls
no test coverage detected