MCPcopy Create free account
hub / github.com/DeepGraphLearning/S3F / __init__

Method __init__

s3f/gvp_layer.py:185–188  ·  view source on GitHub ↗
(self, drop_rate)

Source from the content-addressed store, hash-verified

183 Takes tuples (s, V) as input and as output.
184 '''
185 def __init__(self, drop_rate):
186 super().__init__()
187 self.sdropout = nn.Dropout(drop_rate)
188 self.vdropout = _VDropout(drop_rate)
189
190 def forward(self, x):
191 '''

Callers

nothing calls this directly

Calls 2

_VDropoutClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected