github上で公開されている以下のコードを使って、unetの3次元畳み込みをやりたいです。
https://github.com/davidiommi/Pytorch--3D-Medical-Images-Segmentation--SALMON
Data_folderに自分の3次元画像でデータを用意して、train.pyとpredict_single_image.pyを実行したのですが、
何も起こらず、フリーズ状態のままです。
cmd
1$ python train.py 2/share/home/nakayama/test/Pytorch--3D-Medical-Images-Segmentation--SALMON/train.py:208: SyntaxWarning: "is" with a literal. Did you mean "=="? 3 if opt.network is 'nnunet': 4/share/home/nakayama/test/Pytorch--3D-Medical-Images-Segmentation--SALMON/train.py:210: SyntaxWarning: "is" with a literal. Did you mean "=="? 5 elif opt.network is 'unetr': 6/share/home/nakayama/test/Pytorch--3D-Medical-Images-Segmentation--SALMON/train.py:227: SyntaxWarning: "is" with a literal. Did you mean "=="? 7 if opt.network is 'nnunet': 8/share/home/nakayama/test/Pytorch--3D-Medical-Images-Segmentation--SALMON/train.py:232: SyntaxWarning: "is" with a literal. Did you mean "=="? 9 elif opt.network is 'unetr': 10/share/home/nakayama/test/Pytorch--3D-Medical-Images-Segmentation--SALMON/train.py:263: SyntaxWarning: "is" with a literal. Did you mean "=="? 11 if opt.network is 'nnunet': 12number of GPU: 1 13Number of training patches per epoch: 2 14Number of training images per epoch: 1 15Number of validation images per epoch: 1 16Number of test images per epoch: 1 17
print文で確認したところ、# Transforms list
までは実行されていました。
実際にプログラムをいじったのはinit.pyのgpu_idの部分のみです。
どうすれば正常に実行できるでしょうか?
回答1件
あなたの回答
tips
プレビュー