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 1afdce0 commit af284e6Copy full SHA for af284e6
README.md
@@ -41,7 +41,7 @@ For other spaces use the nmslib library https://github.com/nmslib/nmslib.
41
* `hnswlib.Index(space, dim)` creates a non-initialized index an HNSW in space `space` with integer dimension `dim`.
42
43
`hnswlib.Index` methods:
44
-* `init_index(max_elements, ef_construction = 200, M = 16, random_seed = 100)` initializes the index from with no elements.
+* `init_index(max_elements, M = 16, ef_construction = 200, random_seed = 100)` initializes the index from with no elements.
45
* `max_elements` defines the maximum number of elements that can be stored in the structure(can be increased/shrunk).
46
* `ef_construction` defines a construction time/accuracy trade-off (see [ALGO_PARAMS.md](ALGO_PARAMS.md)).
47
* `M` defines tha maximum number of outgoing connections in the graph ([ALGO_PARAMS.md](ALGO_PARAMS.md)).
0 commit comments