Skip to content

Commit 6fdf4e3

Browse files
tf-transform-teamtfx-copybara
authored andcommitted
typo in error message
PiperOrigin-RevId: 492941050
1 parent 879e55e commit 6fdf4e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_transform/analyzers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ def _min_and_max(x: common_types.TensorType,
506506
-output_dtype.max)
507507
elif not reduce_instance_dims and isinstance(x, tf.RaggedTensor):
508508
raise NotImplementedError(
509-
'Elemenwise min_and_max does not support RaggedTensors.')
509+
'Elementwise min_and_max does not support RaggedTensors.')
510510
else:
511511
combine_fn = np.max
512512
default_accumulator_value = (-np.inf if x.dtype.is_floating else

0 commit comments

Comments
 (0)