當操作接收到無效參數時引發。
繼承自:OpError
用法
tf.errors.InvalidArgumentError(
node_def, op, message, *args
)
屬性
-
error_code
說明錯誤的整數錯誤代碼。 -
experimental_payloads
說明錯誤細節的字典。 -
message
說明錯誤的錯誤消息。 -
node_def
NodeDef
proto 代表失敗的操作。 -
op
失敗的操作(如果已知)。注意:如果失敗的操作是在運行時合成的,例如
Send
或Recv
op,將沒有對應的tf.Operation
對象。在這種情況下,這將返回None
,您應該改用tf.errors.OpError.node_def
來發現有關操作的信息。
當操作接收到不匹配的參數時,通常會引發此錯誤。
例子:
tf.reshape([1, 2, 3], (2,))
Traceback (most recent call last):
InvalidArgumentError:...
相關用法
- Python tf.experimental.dlpack.from_dlpack用法及代碼示例
- Python tf.experimental.numpy.iinfo用法及代碼示例
- Python tf.estimator.TrainSpec用法及代碼示例
- Python tf.experimental.Optional.has_value用法及代碼示例
- Python tf.estimator.LogisticRegressionHead用法及代碼示例
- Python tf.experimental.dispatch_for_unary_elementwise_apis用法及代碼示例
- Python tf.experimental.dispatch_for_api用法及代碼示例
- Python tf.estimator.MultiHead用法及代碼示例
- Python tf.experimental.unregister_dispatch_for用法及代碼示例
- Python tf.edit_distance用法及代碼示例
- Python tf.estimator.PoissonRegressionHead用法及代碼示例
- Python tf.estimator.WarmStartSettings用法及代碼示例
- Python tf.experimental.tensorrt.Converter用法及代碼示例
- Python tf.estimator.experimental.stop_if_lower_hook用法及代碼示例
- Python tf.estimator.RunConfig用法及代碼示例
- Python tf.experimental.ExtensionType用法及代碼示例
- Python tf.estimator.MultiLabelHead用法及代碼示例
- Python tf.experimental.Optional.get_value用法及代碼示例
- Python tf.estimator.experimental.stop_if_no_increase_hook用法及代碼示例
- Python tf.estimator.BaselineEstimator用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.errors.InvalidArgumentError。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。