ratiopath.ray.aggregate.TensorStd
Bases: AggregateFnV2[dict, ndarray | float]
Calculates the standard deviation of a column containing Tensors.
This aggregator treats the data column as a high-dimensional array where axis 0 represents the batch dimension. To satisfy the requirements of a reduction and prevent memory growth proportional to the number of rows, axis 0 must be included in the aggregation.
It uses a parallel variance accumulation algorithm (Chan's method) to maintain numerical stability while processing data across multiple Ray blocks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on
|
str
|
The name of the column containing tensors or numbers. |
required |
axis
|
int | tuple[int, ...] | None
|
The axis or axes along which the reduction is computed.
- |
None
|
ddof
|
float
|
Delta Degrees of Freedom. The divisor used in calculations is $N - ddof$, where $N$ represents the number of elements. Defaults to 1.0 (sample standard deviation). |
1.0
|
ignore_nulls
|
bool
|
Whether to ignore null values. Defaults to True. |
True
|
alias_name
|
str | None
|
Optional name for the resulting column. Defaults to "std( |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Note
This aggregator is designed for "reduction" operations. If you wish to
calculate statistics per-row without collapsing the batch dimension,
use .map() instead.
Example
import ray import numpy as np from ratiopath.ray.aggregate import TensorStd ds = ray.data.from_items( ... [ ... {"m": np.array([[1, 2], [1, 2]])}, ... {"m": np.array([[5, 6], [5, 6]])}, ... ] ... )
1. Global Std (axis=None) -> All elements reduced to one scalar
ds.aggregate(TensorStd(on="m", axis=None))
2. Batch Std (axis=0) -> Result is a 2x2 matrix of std values
calculated across the dataset rows.
ds.aggregate(TensorStd(on="m", axis=0))
3. Int shorthand (axis=1) -> Internally uses axis=(0, 1)
Collapses batch and the first dimension of the tensor.
ds.aggregate(TensorStd(on="m", axis=1))
Source code in ratiopath/ray/aggregate/tensor_std.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
__init__(on, axis=None, ddof=1.0, ignore_nulls=True, alias_name=None)
Source code in ratiopath/ray/aggregate/tensor_std.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
aggregate_block(block)
Source code in ratiopath/ray/aggregate/tensor_std.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
combine(current_accumulator, new)
Source code in ratiopath/ray/aggregate/tensor_std.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | |
finalize(accumulator)
Source code in ratiopath/ray/aggregate/tensor_std.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
zero_factory()
staticmethod
Source code in ratiopath/ray/aggregate/tensor_std.py
94 95 96 | |