Skip to content

Commit

Permalink
Upgrading JVector version to v.3 [AI-155] [AI-133] (#698)
Browse files Browse the repository at this point in the history
With the update to version 3 of the jVector library, the maxBean
parameter now represents the maximum degree of the graph, rather than
half of the maximum degree.

see -
https://github.com/jbellis/jvector/blob/main/UPGRADING.md?plain=1#L7
  • Loading branch information
shultseva authored Sep 11, 2024
1 parent 03be546 commit fb6fef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hazelcast/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class IndexConfig:
name: str
metric: Metric
dimension: int
max_degree: int = 16
max_degree: int = 32
ef_construction: int = 100
use_deduplication: bool = True

Expand Down

0 comments on commit fb6fef1

Please sign in to comment.