# Copyright (c) ONNX Project Contributors # SPDX-License-Identifier: Apache-2.0 from __future__ import annotations import numpy as np from onnx.reference.ops._op import OpRunReduceNumpy class ReduceMean_1(OpRunReduceNumpy): def _run(self, data, axes=None, keepdims=None): axes = tuple(axes) if axes is not None else None res = np.mean(data, axis=axes, keepdims=keepdims, dtype=data.dtype) if keepdims == 0 and not isinstance(res, np.ndarray): # The runtime must return a numpy array of a single float. res = np.array(res) return (res,) class ReduceMean_18(OpRunReduceNumpy): def _run(self, data, axes=None, keepdims=1, noop_with_empty_axes=0): axes = self.handle_axes(axes, noop_with_empty_axes) keepdims = keepdims != 0 try: res = np.mean(data, axis=axes, keepdims=keepdims, dtype=data.dtype) if keepdims == 0 and not isinstance(res, np.ndarray): # The runtime must return a numpy array of a single float. res = np.array(res) except TypeError as e: raise TypeError( f"Unable to reduce shape {data.shape!r} with axes={axes!r} and keepdims={keepdims}." ) from e return (res,)