确定给定 Unicode 整数代码点张量的脚本代码。
用法
tf.strings.unicode_script(
input, name=None
)
参数
-
input
Tensor
类型为int32
。 int32 Unicode 代码点的张量。 -
name
操作的名称(可选)。
返回
-
Tensor
类型为int32
。
此操作将 Unicode 代码点转换为每个代码点对应的脚本代码。脚本代码对应于 Unicode 国际组件 (ICU) UScriptCode 值。
有关脚本代码的更多详细信息,请参阅 ICU 项目文档。
例如,请参阅有关 unicode 脚本的 unicode 字符串指南。
对于无效代码点返回 -1 (USCRIPT_INVALID_CODE)。输出形状将匹配输入形状。
例子:
tf.strings.unicode_script([1, 31, 38])
<tf.Tensor:shape=(3,), dtype=int32, numpy=array([0, 0, 0], dtype=int32)>
相关用法
- Python tf.strings.unicode_split用法及代码示例
- Python tf.strings.unicode_split_with_offsets用法及代码示例
- Python tf.strings.unicode_decode_with_offsets用法及代码示例
- Python tf.strings.unicode_decode用法及代码示例
- Python tf.strings.unicode_encode用法及代码示例
- Python tf.strings.unicode_transcode用法及代码示例
- Python tf.strings.unsorted_segment_join用法及代码示例
- Python tf.strings.upper用法及代码示例
- Python tf.strings.substr用法及代码示例
- Python tf.strings.reduce_join用法及代码示例
- Python tf.strings.regex_full_match用法及代码示例
- Python tf.strings.regex_replace用法及代码示例
- Python tf.strings.length用法及代码示例
- Python tf.strings.bytes_split用法及代码示例
- Python tf.strings.as_string用法及代码示例
- Python tf.strings.lower用法及代码示例
- Python tf.strings.split用法及代码示例
- Python tf.strings.join用法及代码示例
- Python tf.strings.to_hash_bucket用法及代码示例
- Python tf.strings.ngrams用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.strings.unicode_script。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。