斷言給定的Tensor
是指定的類型。
用法
tf.debugging.assert_type(
tensor, tf_type, message=None, name=None
)
參數
-
tensor
Tensor
,SparseTensor
或tf.Variable .
-
tf_type
張量流類型(dtypes.float32,tf.int64,dtypes.bool, 等等)。
-
message
默認消息的前綴字符串。
-
name
此操作的名稱。默認為"assert_type"
拋出
-
TypeError
如果張量的數據類型與tf_type
不匹配。
這始終可以靜態檢查,因此此方法不返回任何內容。
例子:
a = tf.Variable(1.0)
tf.debugging.assert_type(a, tf_type= tf.float32)
b = tf.constant(21)
tf.debugging.assert_type(b, tf_type=tf.bool)
Traceback (most recent call last):
TypeError:...
c = tf.SparseTensor(indices=[[0, 0], [1, 2]], values=[1, 2],
dense_shape=[3, 4])
tf.debugging.assert_type(c, tf_type= tf.int32)
相關用法
- Python tf.debugging.assert_shapes用法及代碼示例
- Python tf.debugging.enable_check_numerics用法及代碼示例
- Python tf.debugging.check_numerics用法及代碼示例
- Python tf.debugging.experimental.enable_dump_debug_info用法及代碼示例
- Python tf.debugging.Assert用法及代碼示例
- Python tf.debugging.set_log_device_placement用法及代碼示例
- Python tf.device用法及代碼示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代碼示例
- Python tf.data.Dataset.take_while用法及代碼示例
- Python tf.data.experimental.RandomDataset.group_by_window用法及代碼示例
- Python tf.data.TFRecordDataset.filter用法及代碼示例
- Python tf.data.TextLineDataset.reduce用法及代碼示例
- Python tf.data.TextLineDataset.with_options用法及代碼示例
- Python tf.data.experimental.SqlDataset.enumerate用法及代碼示例
- Python tf.data.TextLineDataset.as_numpy_iterator用法及代碼示例
- Python tf.data.experimental.make_saveable_from_iterator用法及代碼示例
- Python tf.distribute.TPUStrategy用法及代碼示例
- Python tf.data.TextLineDataset.random用法及代碼示例
- Python tf.data.FixedLengthRecordDataset.repeat用法及代碼示例
- Python tf.data.TFRecordDataset.random用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.debugging.assert_type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。