During handling of the above exception, another exception occurred: Traceback (most recent call last): File "F:\YOLOX-main-milu\tools\train.py", line 121, in <module> exp = get_exp(args.exp_file, args.name) File "E:\anaconda1\envs\pytorch-gpu\lib\site-packages\yolox-0.3.0-py3.7.egg\yolox\exp\build.py", line 40, in get_exp return get_exp_by_file(exp_file) File "E:\anaconda1\envs\pytorch-gpu\lib\site-packages\yolox-0.3.0-py3.7.egg\yolox\exp\build.py", line 16, in get_exp_by_file raise ImportError("{} doesn't contains class named 'Exp'".format(exp_file)) ImportError: exps/example/yolox_voc/yolox_voc_s.py doesn't contains class named 'Exp'什么意思
时间: 2023-05-30 14:07:58 浏览: 229
这段代码发生了异常,并且在处理异常过程中发生了另一个异常。第二个异常的错误信息是:在文件 yolox_voc_s.py 中没有名为 'Exp' 的类。可能是因为代码中使用了一个不存在的类或者文件没有正确导入。
相关问题
During handling of the above exception, another exception occurred: Traceback (most recent call last):
这段引用是一段Python代码的错误信息,它在处理一个异常的过程中遇到了另一个异常。这种情况通常发生在try-except-finally语句块中,当一个异常被捕获并处理后,可能会引发另一个异常。在这个例子中,首先发生了一个ZeroDivisionError异常,然后进入了except分支,并在except分支中又遇到了一个raise语句,引发了一个ValueError异常。接着,finally分支被执行,但在finally分支中又遇到了另一个raise语句,导致又引发了一个ValueError异常。因此,在处理第一个异常的过程中,发生了第二个异常。这些异常的详细信息被记录在Traceback中。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [During handling of the above exception, another exception occurred 处理](https://blog.csdn.net/feraing/article/details/129831233)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [【转】python错误During handling of the above exception, another exception occurred是如何发生的?](https://blog.csdn.net/weixin_39514626/article/details/111839821)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [ImportError: DLL load failed: 找不到指定的模块。](https://download.csdn.net/download/weixin_38637884/13742003)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
socket.gaierror: [Errno -2] Name or service not known During handling of the above exception, another exception occurred: Traceback (most recent call last): File "train_Perl.py", line 65, in <module> server = Server(args) File "/public/home/jd_s
这个错误提示表明你的程序无法解析主机名或者服务名。可能原因包括:
1. 主机名或者服务名拼写错误,或者不存在。
2. 网络连接不可用,比如网络故障,DNS服务器故障等。
建议你检查一下代码中的主机名和服务名是否正确,并且尝试检查网络连接是否正常。你也可以尝试使用 IP 地址代替主机名来连接服务,以避免 DNS 问题。
阅读全文