MCPcopy Create free account
hub / github.com/DSL-Lab/StreamSplat / __init__

Method __init__

encoders/dinov2/layers/drop_path.py:29–31  ·  view source on GitHub ↗
(self, drop_prob=None)

Source from the content-addressed store, hash-verified

27 """Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks)."""
28
29 def __init__(self, drop_prob=None):
30 super(DropPath, self).__init__()
31 self.drop_prob = drop_prob
32
33 def forward(self, x):
34 return drop_path(x, self.drop_prob, self.training)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected