(self)
| 171 | return drop_path(x, self.drop_prob, self.training, self.scale_by_keep) |
| 172 | |
| 173 | def extra_repr(self): |
| 174 | return f"drop_prob={round(self.drop_prob,3):0.3f}" |
| 175 | |
| 176 | |
| 177 | class CaptionEmbedder(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected