TypeError: from_tensor_slices() takes 1 positional argument but 2 were given
时间: 2023-11-07 18:36:53 浏览: 121
这个错误通常出现在使用 TensorFlow 的 Dataset API 时,它表明你提供了多余的参数给 `from_tensor_slices()` 方法。
通常情况下,`from_tensor_slices()` 方法只需要一个参数,即要转换成 dataset 的 tensor。如果在调用时提供了多于一个参数,则会出现这个错误。
检查一下你的代码,看看是否在调用 `from_tensor_slices()` 方法时,意外地传递了多余的参数。如果有,请将多余的参数删除或调整为正确的参数。
阅读全文