mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 22:42:02 +00:00
c312513eff
Former-commit-id: 781a11f646964567b3bc6831caa5e380748b84e1 [formerly 7ea5f37ecb7fd5c95e5d1b7b1aa899d986ecff2a] Former-commit-id: 06974fa163a6a8eb881d5981f9c6debe63f1b4bb
30 lines
637 B
JSON
30 lines
637 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Train",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/src/train.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
},
|
|
{
|
|
"name": "Predict",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/src/predict.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false,
|
|
"args": [
|
|
"--input",
|
|
"images/input.png",
|
|
"--output",
|
|
"images/output.png",
|
|
"--model",
|
|
"checkpoints/model.onnx"
|
|
]
|
|
}
|
|
]
|
|
}
|