projet-long/.vscode/launch.json
Laurent Fainsin 47c888cf6c feat: checkpoint wandb logging
feat: wandb config file

Former-commit-id: 45f56db86ca269b028cf76bf5315bc0eef8d2a21 [formerly e320b72e16eed02bdca05245e7c77914f0e288f9]
Former-commit-id: 6d91318784748308c73dc6a164653f04ae46cd2a
2022-07-11 15:34:05 +02:00

25 lines
599 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/test.png",
"--output",
"output_onnx.png",
"--model",
"good.onnx",
],
"justMyCode": false
}
]
}