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

48
.vscode/launch.json vendored
View File

@ -1,15 +1,32 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "📊 Enhanced Web Dashboard",
"name": "📊 Enhanced Web Dashboard (Safe)",
"type": "python",
"request": "launch",
"program": "main.py",
"program": "main_clean.py",
"args": [
"--port",
"8050"
"8051",
"--no-training"
],
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"ENABLE_REALTIME_CHARTS": "1"
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "📊 Enhanced Web Dashboard (Full)",
"type": "python",
"request": "launch",
"program": "main_clean.py",
"args": [
"--port",
"8051"
],
"console": "integratedTerminal",
"justMyCode": false,
@ -20,6 +37,29 @@
},
"preLaunchTask": "Kill Stale Processes"
},
{
"name": "📊 Clean Dashboard (Legacy)",
"type": "python",
"request": "launch",
"program": "run_clean_dashboard.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1",
"ENABLE_REALTIME_CHARTS": "1"
}
},
{
"name": "🚀 Main System",
"type": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONUNBUFFERED": "1"
}
},
{
"name": "🔬 System Test & Validation",
"type": "python",

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",