Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
Signed-off-by: panguixin <[email protected]>
  • Loading branch information
bugmakerrrrrr committed May 18, 2024
1 parent 25c90d7 commit ebcc5a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Enhancements
* Add KnnCircuitBreakerException and modify exception message [#1688](https://github.com/opensearch-project/k-NN/pull/1688)
* Add stats for radial search [#1684](https://github.com/opensearch-project/k-NN/pull/1684)
* Support script score when doc value is disabled and fix misusing DISI [#1696](https://github.com/opensearch-project/k-NN/pull/1696)
### Bug Fixes
* Block commas in model description [#1692](https://github.com/opensearch-project/k-NN/pull/1692)
### Infrastructure
Expand Down
2 changes: 1 addition & 1 deletion jni/external/faiss
Submodule faiss updated from 12b92e to 6fc7b7
2 changes: 1 addition & 1 deletion jni/external/nmslib
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ private Map<String, KNNResult> createDataset(
final Map<String, KNNResult> dataset = new HashMap<>(dense ? numDocsWithField : numDocsWithField * 3);
int id = 0;
for (int i = 0; i < numDocsWithField; i++) {
final int dummyDocs = dense ? 0 : randomIntBetween(1, 5);
final int dummyDocs = dense ? 0 : randomIntBetween(2, 5);
for (int j = 0; j < dummyDocs; j++) {
dataset.put(Integer.toString(id++), null);
}
Expand Down

0 comments on commit ebcc5a4

Please sign in to comment.