This commit is contained in:
Dobromir Popov
2025-05-13 17:19:52 +03:00
parent 7dda00b64a
commit c0872248ab
60 changed files with 42085 additions and 6885 deletions

23
.vscode/tasks.json vendored
View File

@ -6,11 +6,11 @@
"type": "shell",
"command": "python",
"args": [
"-m",
"tensorboard.main",
"utils/launch_tensorboard.py",
"--logdir=NN/models/saved/logs",
"--port=6006",
"--host=localhost"
"--preferred-port=6007",
"--port-range=6000-7000",
"--kill-stale"
],
"isBackground": true,
"problemMatcher": {
@ -23,7 +23,7 @@
"background": {
"activeOnStart": true,
"beginsPattern": ".*TensorBoard.*",
"endsPattern": ".*TensorBoard.*"
"endsPattern": ".*TensorBoard available at.*"
}
},
"presentation": {
@ -33,6 +33,19 @@
"runOptions": {
"runOn": "folderOpen"
}
},
{
"label": "Kill Stale Processes",
"type": "shell",
"command": "python",
"args": [
"utils/port_manager.py",
"--kill-stale"
],
"presentation": {
"reveal": "always",
"panel": "shared"
}
}
]
}