sketchgraphs_models.graph.model.numerical_features.NumericalFeatureDecoder

class sketchgraphs_models.graph.model.numerical_features.NumericalFeatureDecoder(feature_dims, embedding_dim)

Module for decoding numerical feature embeddings to logits.

Takes an array of features, and decodes them into a a sequence of varying length logits.

__init__(feature_dims, embedding_dim)

Initializes internal Module state, shared by both nn.Module and ScriptModule.

forward(embeddings)

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.