REVA-QCAV/.vscode/launch.json
Laurent Fainsin dac6237906 feat: reduce the number of parameters in the net
Former-commit-id: 862569b6d284ec8235586b161d8c7055c006f5d8 [formerly f2e672d780df12a398e851f375a238c2d394a3cd]
Former-commit-id: 740b1129a627c488537bb0d0dc7ff73b66fde813
2022-06-30 10:47:53 +02:00

23 lines
551 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.png",
],
"justMyCode": true
}
]
}