model = GLEE(dimensions=16, seed=42)
model.fit(G)
X = model.get_embedding()
Running the above twice produces X which are identical apart from the signs, which are randomly flipped. Is this a bug, given the use of the seed? Expected behavior for me was to produce identical embeddings when seeding.
Running the above twice produces
X
which are identical apart from the signs, which are randomly flipped. Is this a bug, given the use of theseed
? Expected behavior for me was to produce identical embeddings when seeding.Great work on this package btw!