当操作接收到无效参数时引发。
继承自: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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。