pad_sequences() got an unexpected keyword argument
时间: 2023-07-30 11:04:34 浏览: 543
这个错误通常是由于 pad_sequences() 函数的参数输入错误导致的。请确保您输入的参数是正确的,并且与 pad_sequences() 函数的参数名称完全匹配。另外,也请注意不同版本的 Keras 或 TensorFlow 可能会有不同的参数名称,导致参数输入错误。建议查看当前使用的 Keras 或 TensorFlow 版本的官方文档,以确保参数名称和输入正确。
相关问题
TypeError: pad_sequences() got an unexpected keyword argument 'maxlen'
这个错误通常是由于使用了不支持 'maxlen' 参数的 pad_sequences 函数引起的。请检查函数的调用方式,并确保你使用的是正确版本的 pad_sequences 函数。你可以在你的代码中尝试使用其它合适的参数来代替 'maxlen',例如 'padding' 或 'truncating'。如果问题仍然存在,可能需要检查你的数据格式是否符合 pad_sequences 函数的要求。
TypeError: pad_sequences() got an unexpected keyword argument 'padding'
这个错误通常是因为你使用了不支持的参数。在这种情况下,pad_sequences()函数不支持padding参数。如果你想指定填充方式,可以使用keras.preprocessing.sequence.pad_sequences()函数,并将padding参数更改为pad_sequence()函数支持的参数。
阅读全文