確定給定 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。