一個 Unicode 字符串。
用法
tf.experimental.numpy.unicode_(
*args, **kwargs
)
屬性
-
T
標量屬性與對應的數組屬性相同。請參閱
ndarray.T
。 -
base
標量屬性與對應的數組屬性相同。請參閱
ndarray.base
。 -
data
指向數據開始的指針。 -
dtype
獲取數組data-descriptor。 -
flags
標誌的整數值。 -
flat
標量的一維視圖。 -
imag
標量的虛部。 -
itemsize
一個元素的長度(以字節為單位)。 -
nbytes
標量的長度(以字節為單位)。 -
ndim
數組維數。 -
real
標量的實部。 -
shape
數組維度的元組。 -
size
基因類型中的元素數量。 -
strides
每個維度中的字節元組步驟。
在數組中使用時,此類型會去除尾隨的空代碼點。
與內置的 str
不同,它支持:ref: python:bufferobjects
,將其內容公開為 UCS4:
m = memoryview(np.str_("abc"))
m.format
'3w'
m.tobytes()
b'a\x00\x00\x00b\x00\x00\x00c\x00\x00\x00'
:字符代碼:'U'
:別名:numpy.unicode_
相關用法
- Python tf.experimental.numpy.iinfo用法及代碼示例
- Python tf.experimental.numpy.issubdtype用法及代碼示例
- Python tf.experimental.numpy.float16.as_integer_ratio用法及代碼示例
- Python tf.experimental.numpy.float64.as_integer_ratio用法及代碼示例
- Python tf.experimental.numpy.float32.as_integer_ratio用法及代碼示例
- Python tf.experimental.dlpack.from_dlpack用法及代碼示例
- Python tf.experimental.Optional.has_value用法及代碼示例
- Python tf.experimental.dispatch_for_unary_elementwise_apis用法及代碼示例
- Python tf.experimental.dispatch_for_api用法及代碼示例
- Python tf.experimental.unregister_dispatch_for用法及代碼示例
- Python tf.experimental.tensorrt.Converter用法及代碼示例
- Python tf.experimental.ExtensionType用法及代碼示例
- Python tf.experimental.Optional.get_value用法及代碼示例
- Python tf.experimental.dlpack.to_dlpack用法及代碼示例
- Python tf.experimental.async_scope用法及代碼示例
- Python tf.experimental.Optional.empty用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.experimental.numpy.unicode_。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。