2022-06-29 14:12:00 +00:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2022-09-05 14:04:52 +00:00
|
|
|
"name": "Train",
|
2022-06-29 14:12:00 +00:00
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
2022-09-05 14:04:52 +00:00
|
|
|
"program": "${workspaceFolder}/src/train.py",
|
2022-06-29 14:12:00 +00:00
|
|
|
"console": "integratedTerminal",
|
2022-09-05 14:04:52 +00:00
|
|
|
"justMyCode": false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Predict",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/src/predict.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"justMyCode": false,
|
2022-06-29 14:12:00 +00:00
|
|
|
"args": [
|
|
|
|
"--input",
|
2022-09-05 14:04:52 +00:00
|
|
|
"images/input.png",
|
2022-06-29 14:12:00 +00:00
|
|
|
"--output",
|
2022-09-05 14:04:52 +00:00
|
|
|
"images/output.png",
|
2022-07-05 10:06:12 +00:00
|
|
|
"--model",
|
2022-09-05 14:04:52 +00:00
|
|
|
"checkpoints/model.onnx"
|
|
|
|
]
|
2022-06-29 14:12:00 +00:00
|
|
|
}
|
|
|
|
]
|
2022-07-05 10:06:12 +00:00
|
|
|
}
|