try to fix training

This commit is contained in:
Dobromir Popov
2025-06-27 00:52:38 +03:00
parent 18a6fb2fa8
commit 63f26a6749
6 changed files with 215 additions and 25 deletions

19
.vscode/tasks.json vendored
View File

@ -4,20 +4,21 @@
{
"label": "Kill Stale Processes",
"type": "shell",
"command": "python",
"command": "powershell",
"args": [
"scripts/kill_stale_processes.py"
"-Command",
"Get-Process python | Where-Object {$_.ProcessName -eq 'python' -and $_.MainWindowTitle -like '*dashboard*'} | Stop-Process -Force; Start-Sleep -Seconds 1"
],
"group": "build",
"presentation": {
"reveal": "always",
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"clear": true
"showReuseMessage": false,
"clear": false
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
"problemMatcher": []
},
{
"label": "Start TensorBoard",