DocArray 0.39.1 Update

DocArray is a library for representing, sending and storing multi-modal data, perfect for Machine Learning applications.

Illustration of blue and green planets on a black background with assorted surrounding celestial bodies

Release Note (0.39.1)

This release contains 2 bug fixes.

Release ๐Ÿ’ซ Patch v0.39.1 ยท docarray/docarray
Release Note (0.39.1) Release time: 2023-10-23 08:56:38 This release contains 2 bug fixes. ๐Ÿž Bug Fixes From_dataframe with numpy==1.26.1 (#1823) A recent update to numpy has changed some of the vโ€ฆ

๐Ÿž Bug Fixes

From_dataframe with numpy==1.26.1 (#1823)

A recent update to numpy has changed some of the versioning semantics, breaking DocArray's from_dataframe() method in some cases where the dataframe contains a numpy array. This has now been now fixed.

class MyDoc(BaseDoc):
    embedding: NdArray
    text: str

da = DocVec[MyDoc](
    [
        MyDoc(
            embedding=[1, 2, 3, 4],
            text='hello',
        ),
        MyDoc(
            embedding=[5, 6, 7, 8],
            text='world',
        ),
    ],
    tensor_type=NdArray,
)
df_da = da.to_dataframe()
# This broke before and is now fixed
da2 = DocVec[MyDoc].from_dataframe(df_da, tensor_type=NdArray)

Type handling in python 3.9 (#1823)

Starting with Python 3.9, Optional.__args__ is not always available, leading to some compatibility problems. This has been fixed by using the typing.get_args helper.

๐ŸคŸ Contributors

We would like to thank all contributors to this release: