training fixes

This commit is contained in:
Dobromir Popov
2025-06-26 14:18:04 +03:00
parent b7ccd0f97b
commit 1f47576723
5 changed files with 291 additions and 36 deletions

14
.vscode/tasks.json vendored
View File

@ -6,14 +6,18 @@
"type": "shell",
"command": "python",
"args": [
"-c",
"import psutil; [p.kill() for p in psutil.process_iter() if any(x in p.name().lower() for x in [\"python\", \"tensorboard\"]) and any(x in \" \".join(p.cmdline()) for x in [\"scalping\", \"training\", \"tensorboard\"]) and p.pid != psutil.Process().pid]; print(\"Stale processes killed\")"
"scripts/kill_stale_processes.py"
],
"presentation": {
"reveal": "silent",
"panel": "shared"
"reveal": "always",
"panel": "shared",
"clear": true
},
"problemMatcher": []
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
}
},
{
"label": "Start TensorBoard",