Traceback (most recent call last): File "/home/bingxing2/home/scx6281/segmentanything/SAM-Adapter-PyTorch/train.py", line 271, in <module> main(config, save_path, args=args) File "/home/bingxing2/home/scx6281/segmentanything/SAM-Adapter-PyTorch/train.py", line 206, in main result1, result2, result3, result4, metric1, metric2, metric3, metric4 = eval_psnr(val_loader, model, File "/home/bingxing2/home/scx6281/segmentanything/SAM-Adapter-PyTorch/train.py", line 91, in eval_psnr result1, result2, result3, result4 = metric_fn(pred_list, gt_list) UnboundLocalError: local variable 'metric_fn' referenced before assignment ERROR:torch.distributed.elastic.multiprocessing.api:failed (exitcode: 1) local_rank: 0 (pid: 3699190) of binary: /home/bingxing2/home/scx6281/.conda/envs/seggg/bin/python Traceback (most recent call last): File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/runpy.py", line 87, in _run_code exec(code, run_globals) File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/site-packages/torch/distributed/launch.py", line 195, in <module> main() File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/site-packages/torch/distributed/launch.py", line 191, in main launch(args) File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/site-packages/torch/distributed/launch.py", line 176, in launch run(args) File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/site-packages/torch/distributed/run.py", line 753, in run elastic_launch( File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/site-packages/torch/distributed/launcher/api.py", line 132, in __call__ return launch_agent(self._config, self._entrypoint, list(args)) File "/home/bingxing2/home/scx6281/.conda/envs/seggg/lib/python3.9/site-packages/torch/distributed/launcher/api.py", line 246, in launch_agent raise ChildFailedError( torch.distributed.elastic.multiprocessing.errors.ChildFailedError:
时间: 2023-07-11 11:57:02 浏览: 238
64/256-QAM
3星 · 编辑精心推荐
这个错误信息显示在运行train.py过程中出现了一个UnboundLocalError,即引用了一个未定义的变量。具体来说,是metric_fn这个变量在被引用之前没有被赋值。这可能是由于代码中的某个逻辑错误导致的。建议检查一下代码中metric_fn的定义和赋值部分,看看是否有逻辑错误或者变量名写错等问题。另外,也可以尝试在出错的地方添加一些打印语句,以便更好地定位问题所在。
阅读全文