26 lines
744 B
JSON
Raw Normal View History

2024-01-07 11:28:12 +00:00
{
// 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": [
{
2024-07-13 09:22:02 +00:00
"name": "Python Debugger: Current File",
"type": "debugpy",
2024-01-07 11:28:12 +00:00
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
2024-07-13 09:56:21 +00:00
"env": {
"CUDA_VISIBLE_DEVICES": "1"
},
2024-01-07 11:28:12 +00:00
"args": [
2024-01-08 09:20:36 +00:00
"--model",
"base",
"--show",
"Gary Neville's Soccerbox"
2024-07-13 09:56:21 +00:00
]
2024-01-07 11:28:12 +00:00
}
]
2024-07-13 09:56:21 +00:00
}