Spaces:
Running
Running
File size: 179 Bytes
dc2106c |
1 2 3 4 5 6 7 8 |
# SPDX-License-Identifier: Apache-2.0
import numpy as np
def abs(input: np.ndarray) -> np.ndarray: # noqa: A001
return np.abs(input) # type: ignore[no-any-return]
|