Skip to content

Commit a55e288

Browse files
Simplified benchmark
1 parent 3158f88 commit a55e288

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

benchmarks/benchmark.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,17 @@
108108
]
109109
candidate_strategy: str = SIMILARITY_STRATEGY[0]
110110

111-
# static_thresholds = np.array(
112-
# [0.76, 0.78, 0.80, 0.82, 0.84, 0.86, 0.88, 0.90, 0.92, 0.94, 0.96]
113-
# )
114-
static_thresholds = np.array([0.76, 0.78])
115-
# deltas = np.array([0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1])
116-
deltas = np.array([0.01, 0.02])
111+
static_thresholds = np.array(
112+
[0.76, 0.78, 0.80, 0.82, 0.84, 0.86, 0.88, 0.90, 0.92, 0.94, 0.96]
113+
)
114+
deltas = np.array([0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1])
117115

118116
# VectorQ Config
119117
MAX_VECTOR_DB_CAPACITY: int = 100000
120118
PLOT_FONT_SIZE: int = 24
121119

122120
SYSTEM_TYPES: List[str] = ["static", "dynamic_local", "dynamic_global", "all"]
123-
SYSTEM_TYPE: str = SYSTEM_TYPES[2]
121+
SYSTEM_TYPE: str = SYSTEM_TYPES[3]
124122

125123

126124
########################################################################################################################

0 commit comments

Comments
 (0)