Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace deleted elements at addition #418

Merged
merged 28 commits into from
Jan 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'develop' into replace_deleted
  • Loading branch information
dyashuni authored Nov 12, 2022
commit b440cbda14b7dcbaf74c8a1c9751056632770897
3 changes: 2 additions & 1 deletion python_bindings/bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,8 @@ PYBIND11_PLUGIN(hnswlib) {
&Index<float>::knnQuery_return_numpy,
py::arg("data"),
py::arg("k") = 1,
py::arg("num_threads") = -1)
py::arg("num_threads") = -1,
py::arg("filter") = py::none())
.def("add_items",
&Index<float>::addItems,
py::arg("data"),
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.