File tree 1 file changed +2
-2
lines changed
neural_structured_learning/configs
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ class GraphBuilderConfig(object):
314
314
larger input sets.
315
315
lsh_rounds: The number of rounds of LSH bucketing to perform when
316
316
`lsh_splits > 0`. This is also the number of LSH buckets each point will
317
- be hashed into. Defaults to 2 .
317
+ be hashed into. Defaults to 1 .
318
318
random_seed: Value used to seed the random number generator used to perform
319
319
randomized LSH bucketing of the inputs when `lsh_splits > 0`. By default,
320
320
the generator will be initialized randomly, but setting this to any
@@ -324,7 +324,7 @@ class GraphBuilderConfig(object):
324
324
embedding_feature_name = attr .ib (default = 'embedding' )
325
325
similarity_threshold = attr .ib (default = 0.8 )
326
326
lsh_splits = attr .ib (default = 0 )
327
- lsh_rounds = attr .ib (default = 2 )
327
+ lsh_rounds = attr .ib (default = 1 )
328
328
random_seed = attr .ib (default = None )
329
329
330
330
You can’t perform that action at this time.
0 commit comments