(self, x)
| 434 | self.scale_by_keep = scale_by_keep |
| 435 | |
| 436 | def forward(self, x): |
| 437 | return drop_path(x, self.drop_prob, self.training, self.scale_by_keep) |
| 438 | |
| 439 | |
| 440 | def trunc_normal_(tensor, mean=0., std=1., a=-2., b=2.): |
nothing calls this directly
no test coverage detected