We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd8ad8 commit e196a13Copy full SHA for e196a13
minerva/transforms/transform.py
@@ -74,7 +74,7 @@ def __call__(self, x: np.ndarray) -> np.ndarray:
74
75
assert (
76
len(self.axis) <= x.ndim
77
- ), "Axis list has more dimentions than input data. The lenth of axis needs to be less or equal to input dimentions."
+ ), "Axis list has more dimensions than input data. The length of axis needs to be less or equal to input dimensions."
78
79
for axis in self.axis:
80
x = np.flip(x, axis=axis)
0 commit comments