這個符號是一個類型別名。
可以通過 tf.convert_to_tensor
轉換為 tf.Tensor
的所有類型的聯合。
資源:
用法
TensorLike = Union[
tensorflow.python.types.core.Tensor,
tensorflow.python.types.core.TensorProtocol,
int,
float,
bool,
str,
bytes,
complex,
tuple,
list,
numpy.ndarray,
numpy.generic
]
這個定義可以用在用戶代碼中。隨著支持更多輸入類型,將來可能會添加其他類型。
例子:
def foo(x:TensorLike):
pass
此定義通過靜態類型驗證:
foo(tf.constant([1, 2, 3]))
foo([1, 2, 3])
foo(np.array([1, 2, 3]))
相關用法
- Python tf.types.experimental.GenericFunction.get_concrete_function用法及代碼示例
- Python tf.types.experimental.GenericFunction.experimental_get_compiler_ir用法及代碼示例
- Python tf.type_spec_from_value用法及代碼示例
- Python tf.tpu.experimental.embedding.FeatureConfig用法及代碼示例
- Python tf.tpu.experimental.embedding.FTRL用法及代碼示例
- Python tf.tpu.experimental.embedding.TPUEmbedding.apply_gradients用法及代碼示例
- Python tf.train.Coordinator.stop_on_exception用法及代碼示例
- Python tf.tpu.experimental.embedding.TPUEmbedding用法及代碼示例
- Python tf.tpu.experimental.embedding.TPUEmbedding.dequeue用法及代碼示例
- Python tf.train.ExponentialMovingAverage用法及代碼示例
- Python tf.train.Checkpoint.restore用法及代碼示例
- Python tf.test.is_built_with_rocm用法及代碼示例
- Python tf.train.Checkpoint.read用法及代碼示例
- Python tf.test.TestCase.assertLogs用法及代碼示例
- Python tf.test.is_gpu_available用法及代碼示例
- Python tf.test.TestCase.assertItemsEqual用法及代碼示例
- Python tf.train.CheckpointOptions用法及代碼示例
- Python tf.train.list_variables用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.types.experimental.TensorLike。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。