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

Extract common code paths in indexing pipeline #2275

Merged
merged 12 commits into from
Dec 13, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-cos-dpr-distil \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-cos-dpr-distil/ \
-threads 16 -M 16 -efC 100 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-cos-dpr-distil &
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-cos-dpr-distil \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-cos-dpr-distil/ \
-threads 16 -M 16 -efC 100 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-cos-dpr-distil &
```

Expand Down
2 changes: 1 addition & 1 deletion docs/regressions/regressions-dl19-passage-openai-ada2.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-openai-ada2 \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-openai-ada2/ \
-threads 16 -M 16 -efC 100 -memorybuffer 65536 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-openai-ada2 &
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-cos-dpr-distil \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-cos-dpr-distil/ \
-threads 16 -M 16 -efC 100 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-cos-dpr-distil &
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-cos-dpr-distil \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-cos-dpr-distil/ \
-threads 16 -M 16 -efC 100 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-cos-dpr-distil &
```

Expand Down
2 changes: 1 addition & 1 deletion docs/regressions/regressions-dl20-passage-openai-ada2.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-openai-ada2 \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-openai-ada2/ \
-threads 16 -M 16 -efC 100 -memorybuffer 65536 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-openai-ada2 &
```

Expand Down
2 changes: 1 addition & 1 deletion docs/regressions/regressions-mb11.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ target/appassembler/bin/IndexCollection \
-input /path/to/mb11 \
-generator TweetGenerator \
-index indexes/lucene-index.mb11/ \
-threads 44 -storePositions -storeDocvectors -storeRaw -uniqueDocid -tweet.keepUrls -tweet.stemming \
-threads 44 -storePositions -storeDocvectors -storeRaw -tweet.keepUrls -tweet.stemming \
>& logs/log.mb11 &
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-cos-dpr-distil \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-cos-dpr-distil/ \
-threads 16 -M 16 -efC 100 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-cos-dpr-distil &
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-cos-dpr-distil \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-cos-dpr-distil/ \
-threads 16 -M 16 -efC 100 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-cos-dpr-distil &
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ target/appassembler/bin/IndexHnswDenseVectors \
-input /path/to/msmarco-passage-openai-ada2 \
-generator HnswDenseVectorDocumentGenerator \
-index indexes/lucene-hnsw.msmarco-passage-openai-ada2/ \
-threads 16 -M 16 -efC 100 -memorybuffer 65536 \
-threads 16 -M 16 -efC 100 -memoryBuffer 65536 \
>& logs/log.msmarco-passage-openai-ada2 &
```

Expand Down
Loading
Loading