아래와 같은 .vscode/launch.json 생성하여 버튼으로 편하게 실행 가능{
// 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": "tools/test.py",
"console": "integratedTerminal",
"args": "train_fcos3d_res50/fcos3d_r101-caffe-dcn_fpn_head-gn_8xb2-1x_nus-mono3d.py train_fcos3d_res50/epoch_12.pth --task mono_det --score-thr 0.2"
}
]
}