前提・実現したいこと
githubからcloneしてきたpythonファイルをvscodeで実行中に発生したエラーを解決したいです。
jupyter上でエラーが発生するらしいのですが、jupyterで動かしていないのにエラーが発生します。
発生している問題・エラーメッセージ
例外が発生しました: SystemExit (note: full exception trace is shown but execution is paused at: <module>)
2
File "D:......\denoise_eval.py", line 317, in <module> (Current frame)
args = parser.parse_args(args=[])
該当のソースコード
if name == 'main':
parser = argparse.ArgumentParser(description = "Evaluate a single noisy image and compute total loss.")
parser.add_argument('EvalX', type=str, help="Path of the noisy image to evaluate.")
parser.add_argument('EvalY', type=str, help="Path of the ground truth image")
parser.add_argument('Model', type=str, help="Path of the trained Tensorflow Model, this builds tensorflow graph.")
parser.add_argument('Checkpoint', type=str, help="Path of Tensorflow checkpoint, this restores parameters.")
parser.add_argument('--Output', type=str, help="Path of the output image")
args = parser.parse_args() //ここにてエラーが発生します
main(args)
試したこと
・以下を試しましたがダメでした。
https://qiita.com/uenonuenon/items/09fa620426b4c5d4acf9
・コマンドプロンプトにて実行したが、同じエラーが出ました。
補足情報(FW/ツールのバージョンなど)
python 3.7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。