Skip to content

Commit d69b156

Browse files
committed
chore: auto-build schema.json
1 parent 5c01023 commit d69b156

File tree

1 file changed

+42
-8
lines changed

1 file changed

+42
-8
lines changed

build_helpers/schema.json

+42-8
Original file line numberDiff line numberDiff line change
@@ -1366,10 +1366,10 @@
13661366
"type": "boolean",
13671367
"default": false
13681368
},
1369-
"keras": {
1370-
"description": "Use Keras for model training.",
1371-
"type": "boolean",
1372-
"default": false
1369+
"identifier": {
1370+
"description": "A unique ID for the current model. Must be changed when modifying features.",
1371+
"type": "string",
1372+
"default": "example"
13731373
},
13741374
"write_metrics_to_disk": {
13751375
"description": "Write metrics to disk?",
@@ -1399,16 +1399,50 @@
13991399
"type": "number",
14001400
"default": 7
14011401
},
1402-
"identifier": {
1403-
"description": "A unique ID for the current model. Must be changed when modifying features.",
1404-
"type": "string",
1405-
"default": "example"
1402+
"live_retrain_hours": {
1403+
"description": "Frequency of retraining during dry/live runs.",
1404+
"type": "number",
1405+
"default": 0
1406+
},
1407+
"expiration_hours": {
1408+
"description": "Avoid making predictions if a model is more than `expiration_hours` old. Defaults to 0 (no expiration).",
1409+
"type": "number",
1410+
"default": 0
1411+
},
1412+
"save_backtest_models": {
1413+
"description": "Save models to disk when running backtesting.",
1414+
"type": "boolean",
1415+
"default": false
1416+
},
1417+
"fit_live_predictions_candles": {
1418+
"description": "Number of historical candles to use for computing target (label) statistics from prediction data, instead of from the training dataset.",
1419+
"type": "boolean",
1420+
"default": false
1421+
},
1422+
"data_kitchen_thread_count": {
1423+
"description": "Designate the number of threads you want to use for data processing (outlier methods, normalization, etc.).",
1424+
"type": "integer"
1425+
},
1426+
"activate_tensorboard": {
1427+
"description": "Indicate whether or not to activate tensorboard",
1428+
"type": "boolean",
1429+
"default": true
14061430
},
14071431
"wait_for_training_iteration_on_reload": {
14081432
"description": "Wait for the next training iteration to complete after /reload or ctrl+c.",
14091433
"type": "boolean",
14101434
"default": true
14111435
},
1436+
"continual_learning": {
1437+
"description": "Use the final state of the most recently trained model as starting point for the new model, allowing for incremental learning.",
1438+
"type": "boolean",
1439+
"default": false
1440+
},
1441+
"keras": {
1442+
"description": "Use Keras for model training.",
1443+
"type": "boolean",
1444+
"default": false
1445+
},
14121446
"feature_parameters": {
14131447
"description": "The parameters used to engineer the feature set",
14141448
"type": "object",

0 commit comments

Comments
 (0)