Code Monkey home page Code Monkey logo

Comments (4)

scott-martens avatar scott-martens commented on May 27, 2024

Change "A recent version of numpy changed some equality semantics, where == is now being broadcast in more cases, breaking DocArray's from_dataframe() feature if the dataframe contains a numpy array. This is now fixed."

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

"

from docarray.

scott-martens avatar scott-martens commented on May 27, 2024

"Type handling in python 3.9" has no bug ticket?

from docarray.

scott-martens avatar scott-martens commented on May 27, 2024

Change "Starting from Python 3.9, Optional.__args__ is not always available, leading to breaking code paths in our code base. This fixes that by utilizing the typing.get_args helper."

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

from docarray.

scott-martens avatar scott-martens commented on May 27, 2024

Release Note

This release contains 1 bug fix.

:ladybug: 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.

:i_love_you_hand_sign: Contributors

We would like to thank all contributors to this release:

from docarray.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.