Enum GraphGenerationType
Type of graph generation approach.
public enum GraphGenerationType
Fields
Autoregressive = 1Autoregressive generation - generates nodes/edges sequentially.
OneShot = 2One-shot generation - generates entire graph at once.
VariationalAutoencoder = 0Variational autoencoder approach - learns latent space for generation.
Remarks
For Beginners: These are different strategies for generating new graphs:
- VariationalAutoencoder: Learns a latent space representation and generates by sampling
- Autoregressive: Generates graphs one node/edge at a time sequentially
- OneShot: Generates the entire graph structure in a single pass