Skip to content

Releases: alexklibisz/elastiknn

0.1.0-PRE40

16 Oct 01:07
50533cd

Choose a tag to compare

  • Added optional limit parameter to all Lsh queries. For now I'm leaving it undocumented. I'm not 100% sure it's
    a great idea.

0.1.0-PRE39

04 Oct 16:57

Choose a tag to compare

  • Minor internal change to increase decrease the number of non-candidate doc IDs which are iterated over
    during a query.
  • Changed documentation URL from elastiknn.klibisz.com to elastiknn.com.

0.1.0-PRE38

01 Oct 03:41
4db792f

Choose a tag to compare

  • Fixed docs for running nearest neighbors query on a filtered subset of documents.
    The original suggestion to use a bool query results in evaluating all docs.
    The correct way to do it is to use a standard query with a rescorer.

0.1.0-PRE37

24 Sep 22:18
c89f989

Choose a tag to compare

  • Fixed null pointer exception which was happening when running queries after deleting some vectors.

0.1.0-PRE36

18 Sep 23:12
9d40e2c

Choose a tag to compare

  • Fixed null pointer exception which was happening when running queries after deleting some vectors.

0.1.0-PRE35

17 Sep 00:51
4840ad1

Choose a tag to compare

  • Removed guava dependency from models project.
  • Some internal cleanup.

0.1.0-PRE34

14 Sep 02:01
f3d45ce

Choose a tag to compare

  • More memory-efficient implementation of Python ElastiknnModel.fit method. Uses an iterator over the vectors instead of a list of the vectors.

0.1.0-PRE33

13 Sep 18:38
da6ee6a

Choose a tag to compare

  • Renamed parameter r in L2Lsh mapping to w, which is more appropriate and common for "width".
  • Updates and fixes in the Python client based on usage for ann-benchmarks. Mainly adding/fixing data classes in elastiknn.api.

0.1.0-PRE32

10 Sep 11:59
21efbd3

Choose a tag to compare

  • Updated MatchHashesAndScoreQuery so that approximate queries will emit no more than candidates doc IDs.
    This slightly decreases recall, since the previous implementation could emit > candidates IDs.

0.1.0-PRE31

11 Aug 02:09
0b66b64

Choose a tag to compare

  • Support sparse bool query vectors with unsorted true indices.