forked from opensearch-project/k-NN
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added custom name for steps to run same step multiple times and also …
…added the index configuration for multiple hyper parameter values Signed-off-by: AWS ParallelCluster user <[email protected]>
- Loading branch information
AWS ParallelCluster user
committed
Nov 15, 2023
1 parent
6d7caaa
commit 04b08eb
Showing
5 changed files
with
71 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
benchmarks/perf-tool/release-configs/nmslib-hnsw/index-256-256.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"settings": { | ||
"index": { | ||
"knn": true, | ||
"number_of_shards": 1, | ||
"number_of_replicas": 0, | ||
"knn.algo_param.ef_search": 256 | ||
} | ||
}, | ||
"mappings": { | ||
"properties": { | ||
"target_field": { | ||
"type": "knn_vector", | ||
"dimension": 960, | ||
"method": { | ||
"name": "hnsw", | ||
"space_type": "l2", | ||
"engine": "nmslib", | ||
"parameters": { | ||
"ef_construction": 512, | ||
"m": 16 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
28 changes: 28 additions & 0 deletions
28
benchmarks/perf-tool/release-configs/nmslib-hnsw/index-512-256.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"settings": { | ||
"index": { | ||
"knn": true, | ||
"number_of_shards": 1, | ||
"number_of_replicas": 0, | ||
"knn.algo_param.ef_search": 256 | ||
} | ||
}, | ||
"mappings": { | ||
"properties": { | ||
"target_field": { | ||
"type": "knn_vector", | ||
"dimension": 960, | ||
"method": { | ||
"name": "hnsw", | ||
"space_type": "l2", | ||
"engine": "nmslib", | ||
"parameters": { | ||
"ef_construction": 512, | ||
"m": 16 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters