gogo2/.vscode/tasks.json
Dobromir Popov 0042581275 new nn wip
2025-03-25 13:38:25 +02:00

38 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Start TensorBoard",
"type": "shell",
"command": "python",
"args": [
"-m",
"tensorboard.main",
"--logdir=NN/models/saved/logs",
"--port=6006",
"--host=localhost"
],
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": "^.*$",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*TensorBoard.*",
"endsPattern": ".*TensorBoard.*"
}
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"runOptions": {
"runOn": "folderOpen"
}
}
]
}