From 43054a0a12c6edd242cb064a7aa2d632bb59d6fa Mon Sep 17 00:00:00 2001 From: Karl Hudgell Date: Thu, 12 Dec 2024 14:41:55 +0000 Subject: [PATCH] add launch for debug --- .vscode/launch.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..763589d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python Debugger: Current File", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "args": [ + "--n_per_country", + "2", + "--width", + "1024", + "--height", + "1024", + "--num_inference_steps", + "2" + ] + } + ] +} \ No newline at end of file