trying to fix training

This commit is contained in:
Dobromir Popov
2025-03-29 03:53:38 +02:00
parent 2255a8363a
commit ebbc0ed2d7
7 changed files with 533 additions and 304 deletions

22
.vscode/launch.json vendored
View File

@ -108,22 +108,25 @@
"name": "NN Training Pipeline",
"type": "python",
"request": "launch",
"program": "-m",
"module": "NN.realtime_main",
"args": [
"NN.realtime-main",
"--mode",
"train",
"--model-type",
"cnn",
"--framework",
"pytorch",
"--symbol",
"BTC/USDT",
"--timeframes",
"1m", "5m", "1h", "4h",
"--epochs",
"100",
"--batch_size",
"64",
"--window_size",
"30",
"--output_size",
"10",
"--batch-size",
"32",
"--window-size",
"20",
"--output-size",
"3"
],
"console": "integratedTerminal",
@ -132,6 +135,7 @@
"PYTHONUNBUFFERED": "1",
"TF_CPP_MIN_LOG_LEVEL": "2"
},
"pythonArgs": ["-c", "import sys; sys.path.append('f:/projects/gogo2')"],
"postDebugTask": "Start TensorBoard"
},
{
@ -150,4 +154,4 @@
}
}
]
}
}