REVA-QCAV/.vscode/launch.json
Laurent Fainsin 0fb1d4fb7a feat(WIP): broken onnx prediction
Former-commit-id: cde7623ec486cf79a710949085aadd92d8a33a3e [formerly db0f1d0b9ea536c741f23a3b683e19a9335bcd35]
Former-commit-id: 7332ccb0f74c58c3a284a4568fb8f80a6d416cf4
2022-07-05 12:06:12 +02:00

25 lines
596 B
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: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"--input",
"images/SM.png",
"--output",
"output_onnx.png",
"--model",
"good.onnx",
],
"justMyCode": true
}
]
}