確定給定 Unicode 整數代碼點張量的腳本代碼。
用法
tf.raw_ops.UnicodeScript(
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.raw_ops.UnicodeTranscode用法及代碼示例
- Python tf.raw_ops.UnicodeEncode用法及代碼示例
- Python tf.raw_ops.UniqueWithCounts用法及代碼示例
- Python tf.raw_ops.UniqueV2用法及代碼示例
- Python tf.raw_ops.Unique用法及代碼示例
- Python tf.raw_ops.UniqueWithCountsV2用法及代碼示例
- Python tf.raw_ops.UnsortedSegmentProd用法及代碼示例
- Python tf.raw_ops.UnsortedSegmentJoin用法及代碼示例
- Python tf.raw_ops.UnsortedSegmentSum用法及代碼示例
- Python tf.raw_ops.UnravelIndex用法及代碼示例
- Python tf.raw_ops.UnsortedSegmentMin用法及代碼示例
- Python tf.raw_ops.UnsortedSegmentMax用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代碼示例
- Python tf.raw_ops.BatchMatMul用法及代碼示例
- Python tf.raw_ops.OneHot用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代碼示例
- Python tf.raw_ops.GatherV2用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.UnicodeScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。