Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions benchmarker/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
queries.json
benchmarker
venv/
plan.yml
results_archive/
__pycache__/
29 changes: 29 additions & 0 deletions benchmarker/plan.yml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
path_to_weaviate_repo: ../../weaviate/
control_branch: stable/v1.34
candidate_branch: rescore_reuse_consistent_view
global_parameters:
- -v=~/Downloads/dbpedia-100k-openai-ada002-euclidean.hdf5
- -d=l2-squared
- --queryDuration=1
runs:
- name: OpenAI 100k PQ
ingest_on: control # one of control, candidate
async_indexing: false
parameters:
- --pq=enabled
- --indexType=hnsw
- name: OpenAI 100k RQ8
ingest_on: control # one of control, candidate
async_indexing: true
parameters:
- --rq=auto
- --indexType=hnsw
# - name: OpenAI 100k PQ Named Vector
# ingest_on: candidate # one of control, candidate
# async_indexing: false
# parameters:
# - --pq=enabled
# - --indexType=hnsw
# - --namedVector=my_vector


Loading