Skip to content

Commit

Permalink
chagne default diskann search_list value (#340)
Browse files Browse the repository at this point in the history
Signed-off-by: ryjiang <jiangruiyi@gmail.com>
  • Loading branch information
shanghaikid authored Dec 14, 2023
1 parent 6aa4721 commit 12cefeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/consts/Milvus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export const DEFAULT_SEARCH_PARAM_VALUE_MAP: {
// range: [10, 300]
search_length: 10,
level: 1,
search_list: 20,
search_list: 150,
};

export const DEFAULT_NLIST_VALUE = 1024;
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/search/SearchParams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ const SearchParams: FC<SearchParamsProps> = ({
label: 'search_list',
key: 'search_list',
value: searchParamsForm['search_list'] || '',
min: 20,
min: 150,
max: 65535,
isInt: true,
handleChange: value => {
Expand Down

0 comments on commit 12cefeb

Please sign in to comment.