當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.strings.unicode_script用法及代碼示例


確定給定 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)>

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.strings.unicode_script。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。