add launch for debug

This commit is contained in:
Karl Hudgell 2024-12-12 14:41:55 +00:00
parent e125e76c3b
commit 43054a0a12

25
.vscode/launch.json vendored Normal file
View File

@ -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"
]
}
]
}