'Keyword argument not understood:', 'stride'
时间: 2024-01-18 20:02:25 浏览: 185
This error message indicates that the code contains a keyword argument that is not recognized by the function or method being called. In this case, the argument "stride" is not understood by the function being called. This could be due to a typo, or the argument may not be supported by the function being used.
相关问题
('Keyword argument not understood:', 'decay')
This error message typically occurs when you are passing an argument to a function or method that does not accept that argument. In this case, it seems like you are passing the argument "decay" to a function or method that does not have a parameter named "decay".
To resolve this error, you should check the documentation for the function or method you are using to see what arguments it accepts. Ensure that the argument you are passing is spelled correctly and matches the name of a valid argument for that function or method.
('Keyword argument not understood:', 'output')
这个错误通常是因为你使用了一个不支持的参数名。在 Python 中,函数和方法有一组预定义的参数,如果你尝试传递一个函数或方法不支持的参数,就会出现这个错误。
你可以检查一下你的代码,看看是否有拼写错误或者参数名错误。如果你使用的是第三方库或框架,也可以查看它们的文档或源代码,以确定哪些参数是有效的。
阅读全文