-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
questionFurther information is requestedFurther information is requested
Description
❓ Question
Hi developer,
I have met a problem regarding the setting of random seeds, below is the walk configuration:
random.seed(22)
RANDOM_STATE = 22
transformer = RDF2VecTransformer(
Word2Vec(),
walkers=[RandomWalker(max_depth=8,
max_walks=20,
sampler=PageRankSampler(),
# random_state=RANDOM_STATE,
with_reverse=True,
md5_bytes=None,
)],
verbose=2
)
after i set with_reverse=True, i tryed to use below individualy or Simultaneously :
random.seed(22) and
RANDOM_STATE = 22
to make the embedding Reproducible,but it doesn`t work, i want to ask whether i did some thing wrong, or missed something.
Best Regards
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested