new realt module
This commit is contained in:
45
.vscode/launch.json
vendored
45
.vscode/launch.json
vendored
@ -103,6 +103,51 @@
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "NN Training Pipeline",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "-m",
|
||||
"args": [
|
||||
"NN.main",
|
||||
"--mode",
|
||||
"train",
|
||||
"--symbol",
|
||||
"BTC/USDT",
|
||||
"--timeframes",
|
||||
"1m", "5m", "1h", "4h",
|
||||
"--epochs",
|
||||
"100",
|
||||
"--batch_size",
|
||||
"64",
|
||||
"--window_size",
|
||||
"30",
|
||||
"--output_size",
|
||||
"3"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": true,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"TF_CPP_MIN_LOG_LEVEL": "2"
|
||||
},
|
||||
"postDebugTask": "Start TensorBoard"
|
||||
},
|
||||
{
|
||||
"name": "Realtime Charts with NN Inference",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "realtime.py",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": true,
|
||||
"env": {
|
||||
"PYTHONUNBUFFERED": "1",
|
||||
"ENABLE_NN_MODELS": "1",
|
||||
"NN_INFERENCE_INTERVAL": "60",
|
||||
"NN_MODEL_TYPE": "cnn",
|
||||
"NN_TIMEFRAME": "1h"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user