Some useful extensions for NumPy
Project description
npx
NumPy is a large library used everywhere in scientific computing. That's why breaking backwards-compatibility comes at a significant cost and is almost always avoided, even if the API of some methods is arguably lacking. This package provides drop-in wrappers "fixing" those.
scipyx does the same for SciPy.
If you have a fix for a NumPy method that can't go upstream for some reason, feel free to PR here.
dot
import npx
import numpy as np
a = np.random.rand(3, 4, 5)
b = np.random.rand(5, 2, 2)
out = npx.dot(a, b)
# out.shape == (3, 4, 2, 2)
Forms the dot product between the last axis of a
and the first axis of b
.
(Not the second-last axis of b
as numpy.dot(a, b)
.)
np.solve
import npx
import numpy as np
A = np.random.rand(3, 3)
b = np.random.rand(3, 10, 4)
out = npx.solve(A, b)
# out.shape == (3, 10, 4)
Solves a linear equation system with a matrix of shape (n, n)
and an array of shape
(n, ...)
. The output has the same shape as the second argument.
sum_at
/add_at
npx.sum_at(a, idx, minlength=0)
npx.add_at(out, idx, a)
Returns an array with entries of a
summed up at indices idx
with a minumum length of
minlength
. idx
can have any shape as long as it's matching a
. The output shape is
(minlength,...)
.
The numpy equivalent numpy.add.at
is much
slower:
Relevant issue reports:
unique_rows
import npx
import numpy as np
a = np.random.randint(0, 5, size=(100, 2))
npx.unique_rows(a, return_inverse=False, return_counts=False)
Returns the unique rows of the integer array a
. The numpy alternative np.unique(a, axis=0)
is slow.
Relevant issue reports:
isin_rows
import npx
import numpy as np
a = [[0, 1], [0, 2]]
b = np.random.randint(0, 5, size=(100, 2))
npx.isin_rows(a, b)
Returns a boolean array of length len(a)
specifying if the rows a[k]
appear in b
.
Similar to NumPy's own np.isin
which only works for scalars.
mean
import npx
a = [1.0, 2.0, 5.0]
npx.mean(a, p=3)
Returns the generalized mean of a
given list. Handles the cases +-np.inf
(max/min) and0
(geometric mean) correctly.
Also does well for large p
.
Relevant NumPy issues:
License
This software is published under the BSD-3-Clause license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file npx-0.0.19.tar.gz
.
File metadata
- Download URL: npx-0.0.19.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3de6f8c9d659ff82eecf1f9d4809ecf60543ffd360fd69fbec922f457bd3b7b |
|
MD5 | 7c940c0e7d85a1df51295f54bf3608ab |
|
BLAKE2b-256 | fbde1ed9dffe81909bbb5dc682d88607168f1911fb4612667214bbfea4300f16 |
File details
Details for the file npx-0.0.19-py3-none-any.whl
.
File metadata
- Download URL: npx-0.0.19-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6402b2b11801fd2f0fbfb663ec8cd451505251307ec7b052df23e6fc2da6fe4c |
|
MD5 | c7fd24edf4460f19b64baac531363746 |
|
BLAKE2b-256 | c48b14bfceb980eb9c444805069055082ec7f1635a16123f04dca47e6760b1d1 |