scglue.models.scglue.SCGLUEModel.encode_graph
- SCGLUEModel.encode_graph(graph, n_sample=None)[source]
Compute graph (feature) embedding
- Parameters:
graph (
Graph) – Input graphn_sample (
typing.Optional[int]) – Number of samples from the embedding distribution, by defaultNone, returns the mean of the embedding distribution.
- Return type:
- Returns:
graph_embedding – Graph (feature) embedding with shape \(n_{feature} \times n_{dim}\) if
n_sampleisNone, or shape \(n_{feature} \times n_{sample} \times n_{dim}\) ifn_sampleis notNone.