Skip to content
This repository has been archived by the owner on Sep 1, 2021. It is now read-only.

Releases: milvus-io/pymilvus-orm

PyMilvus-ORM v2.0.0rc4 Release

11 Aug 11:18
b835f18
Compare
Choose a tag to compare

Release date:2021-08-11
Compatible with Milvus v2.x

Fixed bugs:

  • Change DataFrame validation location selection to integer-location (#265)

Enhancements:

  • Support calc_distance API (#250)
  • Expose timeout parameter (#269)

PyMilvus-ORM v2.0.0rc2 Release

12 Jul 12:50
a96a570
Compare
Choose a tag to compare

Release date:2021-07-12
Compatible with Milvus 2.X

Revise and improve the sample code(#207 #208 #215 #241 #242 #243)
Modify the error example in the document (#210 #211 #212)
Update documentation (#217 #218 #220 #233 #244)

Features and fixed bugs:
Get value of metadata field value from search result output (#213)
Remove data parameter for Collection's init method (#214)
Add repr fuction for Collection and Partition (#221)

PyMilvus-ORM v2.0.0rc1 Release

28 Jun 11:04
875b8ba
Compare
Choose a tag to compare

Object-Relational Mapping (ORM) is a technique that lets you query and manipulate data from a database using an object-oriented paradigm.

PyMilvus-ORM is an ORM implementation, which encapsulates Milvus' official low-level SDK (PyMilvus). The new APIs operate directly on collections, partitions, and indexes, helping users focus on the building of an effective data model rather than the detailed implementation.

PyMilvus-ORM works with Milvus 2.0 only, supporting the following features:

  • Hybrid Search between scalar and vector data

    Milvus 2.0 supports storing scalar data. Operators such as GREATER, LESS, EQUAL, NOT, IN, AND, and OR can be used to filter scalar data before a vector search is conducted. Current supported data types include bool, int8, int16, int32, int64, float, and double. Support for string/VARBINARY data will be offered in a later version.

  • Match query

    Unlike the search operation, which returns similar results, the match query operation returns exact matches. Match query can be used to retrieve vectors by ID or by condition.

v2.0.alpha

29 May 06:02
d7732a3
Compare
Choose a tag to compare
v2.0.alpha Pre-release
Pre-release

match with milvus 2.0