summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArne H Juul <arnej27959@users.noreply.github.com>2020-01-21 13:26:36 +0100
committerGitHub <noreply@github.com>2020-01-21 13:26:36 +0100
commitd5e8c33c6d2b1df08e3064716378eb3a12e739fb (patch)
tree8410ae50b80b2d9007c4a241b7e338cd64d5655a
parenta53cde292481f4523f66e0dc5b176d452a4db20b (diff)
parenta337c90bcd377f2aa266a8d1dfed61aaf7396adc (diff)
Merge pull request #11868 from vespa-engine/geirst/sift-benchmark-notes
Add note about where to download the ANN_SIFT1M dataset.
-rw-r--r--eval/src/tests/ann/sift_benchmark.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/eval/src/tests/ann/sift_benchmark.cpp b/eval/src/tests/ann/sift_benchmark.cpp
index f20df926f24..dcfe1cf9c5c 100644
--- a/eval/src/tests/ann/sift_benchmark.cpp
+++ b/eval/src/tests/ann/sift_benchmark.cpp
@@ -285,6 +285,15 @@ TEST("require that HNSW via NNS api mostly works") {
#endif
+/**
+ * Before running the benchmark the ANN_SIFT1M data set must be downloaded and extracted:
+ * wget ftp://ftp.irisa.fr/local/texmex/corpus/sift.tar.gz
+ * tar -xf sift.tar.gz
+ *
+ * The benchmark program will load the data set from $HOME/sift if no directory is specified.
+ *
+ * More information about the dataset is found here: http://corpus-texmex.irisa.fr/.
+ */
int main(int argc, char **argv) {
TEST_MASTER.init(__FILE__);
std::string sift_dir = ".";