vscode配置除錯引數

FigureOut發表於2024-07-19
{
// 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 with Arguments",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/tools/train.py",
"console": "integratedTerminal",
"args": ["-c","projects/cloudmodel/configs/perception_2d/cloudmodel_entry_trainval.py","-s","float","-ids","0","--pipeline-test"]
}
]
}

相關文章