Skip to content

Commit

Permalink
Fixed param documentation (#393)
Browse files Browse the repository at this point in the history
* Fixed param name in comments

* Hide rust/target
  • Loading branch information
jonmclean authored Jul 17, 2023
1 parent a7b2087 commit 233c08c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -375,3 +375,6 @@ venv*/**
*.swp

gperftools

# Rust
rust/target
4 changes: 2 additions & 2 deletions python/src/_dynamic_memory_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def __init__(
:param dimensions: The vector dimensionality of this index. All new vectors inserted must be the same
dimensionality.
:type dimensions: int
:param max_points: Capacity of the data store for future insertions
:type max_points: int
:param max_vectors: Capacity of the data store including space for future insertions
:type max_vectors: int
:param graph_degree: The degree of the graph index, typically between 60 and 150. A larger maximum degree will
result in larger indices and longer indexing times, but better search quality.
:type graph_degree: int
Expand Down

0 comments on commit 233c08c

Please sign in to comment.