Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialized quantile-percentile branch #943

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions pytensor/tensor/math.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
concatenate,
constant,
expand_dims,
extract_constant,
stack,
switch,
)
Expand Down Expand Up @@ -1569,6 +1570,46 @@
return ret


def quantile(input, quant, axis=None):
"""
Computes the median along the given axis(es) of a tensor `input`.
Parameters
----------
input: TensorVariable
The input tensor.
quant: float
Probability for the quantiles to compute.
Values must be between 0 and 1 inclusive.
axis: None or int or (list of int) (see `Sum`)
Compute the quantile along this axis of the tensor.
None means computing along the flattened tensor.
"""
input = as_tensor_variable(input)
input_ndim = input.type.ndim

Check warning on line 1588 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1587-L1588

Added lines #L1587 - L1588 were not covered by tests
if axis is None:
axis = list(range(input_ndim))

Check warning on line 1590 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1590

Added line #L1590 was not covered by tests
elif isinstance(axis, int | np.integer):
axis = [axis]

Check warning on line 1592 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1592

Added line #L1592 was not covered by tests
elif isinstance(axis, np.ndarray) and axis.ndim == 0:
axis = [int(axis)]

Check warning on line 1594 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1594

Added line #L1594 was not covered by tests
else:
axis = [int(a) for a in axis]

new_axes_order = [i for i in range(input.ndim) if i not in axis] + axis
input = input.dimshuffle(new_axes_order)

Check warning on line 1599 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1599

Added line #L1599 was not covered by tests

remaining_axis_size = shape(input)[: input.ndim - len(axis)]
flattened_axis_size = prod(shape(input)[input.ndim - len(axis) :])

Check warning on line 1602 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1601-L1602

Added lines #L1601 - L1602 were not covered by tests

input = input.reshape(concatenate([remaining_axis_size, [flattened_axis_size]]))
axis = -1

Check warning on line 1605 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1604-L1605

Added lines #L1604 - L1605 were not covered by tests

sorted_input = input.sort(axis=axis)
input_shape = input.shape[axis]
k = extract_constant(input_shape) * quant
return sorted_input[k]

Check warning on line 1610 in pytensor/tensor/math.py

View check run for this annotation

Codecov / codecov/patch

pytensor/tensor/math.py#L1607-L1610

Added lines #L1607 - L1610 were not covered by tests


@scalar_elemwise(symbolname="scalar_maximum")
def maximum(x, y):
"""elemwise maximum. See max for the maximum in one tensor"""
Expand Down
Loading