mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 11:51:19 +00:00
chore: auto-build schema.json
This commit is contained in:
@@ -1366,10 +1366,10 @@
|
|||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false
|
"default": false
|
||||||
},
|
},
|
||||||
"keras": {
|
"identifier": {
|
||||||
"description": "Use Keras for model training.",
|
"description": "A unique ID for the current model. Must be changed when modifying features.",
|
||||||
"type": "boolean",
|
"type": "string",
|
||||||
"default": false
|
"default": "example"
|
||||||
},
|
},
|
||||||
"write_metrics_to_disk": {
|
"write_metrics_to_disk": {
|
||||||
"description": "Write metrics to disk?",
|
"description": "Write metrics to disk?",
|
||||||
@@ -1399,16 +1399,50 @@
|
|||||||
"type": "number",
|
"type": "number",
|
||||||
"default": 7
|
"default": 7
|
||||||
},
|
},
|
||||||
"identifier": {
|
"live_retrain_hours": {
|
||||||
"description": "A unique ID for the current model. Must be changed when modifying features.",
|
"description": "Frequency of retraining during dry/live runs.",
|
||||||
"type": "string",
|
"type": "number",
|
||||||
"default": "example"
|
"default": 0
|
||||||
|
},
|
||||||
|
"expiration_hours": {
|
||||||
|
"description": "Avoid making predictions if a model is more than `expiration_hours` old. Defaults to 0 (no expiration).",
|
||||||
|
"type": "number",
|
||||||
|
"default": 0
|
||||||
|
},
|
||||||
|
"save_backtest_models": {
|
||||||
|
"description": "Save models to disk when running backtesting.",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"fit_live_predictions_candles": {
|
||||||
|
"description": "Number of historical candles to use for computing target (label) statistics from prediction data, instead of from the training dataset.",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"data_kitchen_thread_count": {
|
||||||
|
"description": "Designate the number of threads you want to use for data processing (outlier methods, normalization, etc.).",
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"activate_tensorboard": {
|
||||||
|
"description": "Indicate whether or not to activate tensorboard",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": true
|
||||||
},
|
},
|
||||||
"wait_for_training_iteration_on_reload": {
|
"wait_for_training_iteration_on_reload": {
|
||||||
"description": "Wait for the next training iteration to complete after /reload or ctrl+c.",
|
"description": "Wait for the next training iteration to complete after /reload or ctrl+c.",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
"continual_learning": {
|
||||||
|
"description": "Use the final state of the most recently trained model as starting point for the new model, allowing for incremental learning.",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"keras": {
|
||||||
|
"description": "Use Keras for model training.",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
"feature_parameters": {
|
"feature_parameters": {
|
||||||
"description": "The parameters used to engineer the feature set",
|
"description": "The parameters used to engineer the feature set",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|||||||
Reference in New Issue
Block a user