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

Method __init__

s3f/model.py:78–82  ·  view source on GitHub ↗
(self, sequence_model, structure_model)

Source from the content-addressed store, hash-verified

76class FusionNetwork(nn.Module, core.Configurable):
77
78 def __init__(self, sequence_model, structure_model):
79 super(FusionNetwork, self).__init__()
80 self.sequence_model = sequence_model
81 self.structure_model = structure_model
82 self.output_dim = structure_model.output_dim
83
84 def forward(self, graph, input, all_loss=None, metric=None, batch=None):
85 # Sequence model

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected