TypeError: compute_class_weight() takes 1 positional argument but 3 were given
时间: 2023-10-16 09:05:16 浏览: 306
这个错误是由于函数`compute_class_weight()`被调用时给出了3个参数,而它只接受1个位置参数所导致的。根据错误提示,`add_atr()`函数需要0个位置参数但是给出了1个参数。这可能是因为在调用`add_atr()`函数时,多传递了一个参数。要解决这个问题,您需要检查函数调用的地方,确保只传递了正确的参数数量。<span class="em">1</span>
#### 引用[.reference_title]
- *1* [django报错:add_atr() takes 0 positional arguments but 1 was given](https://download.csdn.net/download/weixin_38531788/13753788)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
相关问题
TypeError:__init__ takes 1 positional argument but 5 were given
这个错误通常是因为在类的初始化函数中传递了错误的参数数量。在你提供的引用中,有三个例子都涉及到了这个错误。其中一个例子中,类的初始化函数中将init拼写成了int,也导致了这个问题。如果你遇到了这个错误,你需要检查类的初始化函数中传递的参数数量是否正确,并且确保没有拼写错误。如果你仍然无法解决这个问题,你可以查看相关文档或者寻求帮助。
TypeError: TypeError: get_heavy() takes 1 positional argument but 2000 were givenget_heavy() takes 1 positional argument but 74 were given
这个错误提示表明你调用了一个名为 get_heavy() 的函数,但是你传入的参数数量不正确。具体来说,这个函数只接受一个参数,但是你传入了 2000 个或者 74 个参数。这可能是因为你在调用函数时传入了错误的参数或者函数定义本身有问题。
如果你能提供更多的上下文信息,比如函数定义和调用代码,我可以更好地帮助你解决这个问题。
阅读全文