Converts all uppercase characters into their respective lowercase replacements.
tf.strings.lower(
input: _atypes.TensorFuzzingAnnotation[_atypes.String],
encoding: str = '',
name=None
) -> _atypes.TensorFuzzingAnnotation[_atypes.String]
Example:
tf.strings.lower("CamelCase string and ALL CAPS")
<tf.Tensor: shape=(), dtype=string, numpy=b'camelcase string and all caps'>
Returns | |
---|---|
A Tensor of type string .
|