DriverTrac/venv/lib/python3.12/site-packages/onnx/reference/ops/op_flatten.py
2025-11-28 09:08:33 +05:30

17 lines
419 B
Python

# 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 OpRunUnary
class Flatten(OpRunUnary):
def _run(self, x, axis=None):
i = axis or self.axis
shape = x.shape
new_shape = (1, -1) if i == 0 else (np.prod(shape[:i]).astype(int), -1)
return (x.reshape(new_shape),)