將給定的 value
轉換為 Tensor
。
用法
tf.compat.v1.convert_to_tensor(
value, dtype=None, name=None, preferred_dtype=None, dtype_hint=None
)
參數
-
value
其類型具有已注冊的Tensor
轉換函數的對象。 -
dtype
返回張量的可選元素類型。如果缺少,則從value
的類型推斷類型。 -
name
創建新Tensor
時使用的可選名稱。 -
preferred_dtype
返回張量的可選元素類型,當 dtype 為 None 時使用。在某些情況下,調用者在轉換為張量時可能沒有考慮 dtype,因此 preferred_dtype 可以用作軟首選項。如果無法轉換為preferred_dtype
,則此參數無效。 -
dtype_hint
與preferred_dtype 的含義相同,並覆蓋它。
返回
-
Tensor
基於value
。
拋出
-
TypeError
如果沒有為value
注冊到dtype
的轉換函數。 -
RuntimeError
如果注冊的轉換函數返回無效值。 -
ValueError
如果value
不是圖形模式下給定dtype
的張量。
此函數將各種類型的 Python 對象轉換為 Tensor
對象。它接受Tensor
對象、numpy 數組、Python 列表和 Python 標量。例如:
import numpy as np
def my_func(arg):
arg = tf.convert_to_tensor(arg, dtype=tf.float32)
return tf.matmul(arg, arg) + arg
# The following calls are equivalent.
value_1 = my_func(tf.constant([[1.0, 2.0], [3.0, 4.0]]))
value_2 = my_func([[1.0, 2.0], [3.0, 4.0]])
value_3 = my_func(np.array([[1.0, 2.0], [3.0, 4.0]], dtype=np.float32))
在 Python 中編寫新操作時,此函數很有用(例如上麵示例中的 my_func
)。所有標準 Python 操作構造函數都將此函數應用於它們的每個 Tensor-valued 輸入,這允許這些操作除了接受 Tensor
對象之外還接受 numpy 數組、Python 列表和標量。
注意:當 Python 列表或標量中存在 None
時,此函數不同於 float
和 string
類型的默認 Numpy 行為。而不是靜默轉換 None
值,而是會引發錯誤。
相關用法
- Python tf.compat.v1.confusion_matrix用法及代碼示例
- Python tf.compat.v1.cond用法及代碼示例
- Python tf.compat.v1.constant用法及代碼示例
- Python tf.compat.v1.count_nonzero用法及代碼示例
- Python tf.compat.v1.case用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
- Python tf.compat.v1.layers.conv3d用法及代碼示例
- Python tf.compat.v1.strings.length用法及代碼示例
- Python tf.compat.v1.data.Dataset.snapshot用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代碼示例
- Python tf.compat.v1.feature_column.categorical_column_with_vocabulary_file用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代碼示例
- Python tf.compat.v1.variable_scope用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.as_numpy_iterator用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.covariance用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.convert_to_tensor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。