We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20555b7 commit 9683a4aCopy full SHA for 9683a4a
python_bindings/tests/bindings_test_labels.py
@@ -21,13 +21,13 @@ def testRandomSelf(self):
21
# Declaring index
22
p = hnswlib.Index(space='l2', dim=dim) # possible options are l2, cosine or ip
23
24
- # Initing index
+ # Initiating index
25
# max_elements - the maximum number of elements, should be known beforehand
26
# (probably will be made optional in the future)
27
#
28
# ef_construction - controls index search speed/build speed tradeoff
29
# M - is tightly connected with internal dimensionality of the data
30
- # stronlgy affects the memory consumption
+ # strongly affects the memory consumption
31
32
p.init_index(max_elements=num_elements, ef_construction=100, M=16)
33
0 commit comments