NumPy 2.0
numpy.org
NumPy 2.0
1–10 of 78 posts
Re: NumPy 2.0
#2Re: NumPy 2.0
#3I am much more of an "upgrade when there is a X.1" release kind of guy, so my hat off to those who will bravely be testing the version on my behalf.
Re: NumPy 2.0
#4Any notable highlights for a consumer of Numpy who rarely interfaces directly with it? Most of my work is pandas+scipy, with occasionally dropping into the specific numpy algorithm when required. I am much more of an "upgrade when there is a X.1" release kind of guy, so my hat off to those who will bravely be testing the version on my behalf.
One new interesting feature, though, is the support for string routines: https://numpy.org/devdocs/reference/routines.strings.html#mo...
Re: NumPy 2.0
#5Any notable highlights for a consumer of Numpy who rarely interfaces directly with it? Most of my work is pandas+scipy, with occasionally dropping into the specific numpy algorithm when required. I am much more of an "upgrade when there is a X.1" release kind of guy, so my hat off to those who will bravely be testing the version on my behalf.
The most important changes are deprecations of certain public APIs: https://numpy.org/devdocs/release/2.0.0-notes.html#deprecati... One new interesting feature, though, is the support for string routines: https://numpy.org/devdocs/reference/routines.strings.html#mo...
Sounds almost like they're building a language inside a language.
Re: NumPy 2.0
#6Here's a link to the release notes: https://numpy.org/devdocs/release/2.0.0-notes.html
Re: NumPy 2.0
#7Earlier quoted context omitted.
The most important changes are deprecations of certain public APIs: https://numpy.org/devdocs/release/2.0.0-notes.html#deprecati... One new interesting feature, though, is the support for string routines: https://numpy.org/devdocs/reference/routines.strings.html#mo...
> One new interesting feature, though, is the support for string routines Sounds almost like they're building a language inside a language.
Re: NumPy 2.0
#8Here's a link to the release notes: https://numpy.org/devdocs/release/2.0.0-notes.html
Re: NumPy 2.0
#9Here's a link to the release notes: https://numpy.org/devdocs/release/2.0.0-notes.html
Re: NumPy 2.0
#10Earlier quoted context omitted.
> One new interesting feature, though, is the support for string routines Sounds almost like they're building a language inside a language.
No. Native python ops in string suck in performance. String support is absolutely interesting and will enable abstractions for many NLP and LLM use cases without writing native C extensions.