Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
faiss
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
faiss
Commits
eb6c4cc9
Commit
eb6c4cc9
authored
Jan 09, 2019
by
Bonnie Varghese
Committed by
Matthijs Douze
Jan 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow setting nprobe for IndexIDMap->IndexIVF (#673)
There we go
parent
f417a536
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
AutoTune.cpp
AutoTune.cpp
+4
-1
No files found.
AutoTune.cpp
View file @
eb6c4cc9
...
...
@@ -488,7 +488,10 @@ void ParameterSpace::set_index_parameter (
}
if
(
name
==
"nprobe"
)
{
if
(
DC
(
IndexIVF
))
{
if
(
DC
(
IndexIDMap
))
{
set_index_parameter
(
ix
->
index
,
name
,
val
);
return
;
}
else
if
(
DC
(
IndexIVF
))
{
ix
->
nprobe
=
int
(
val
);
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment