|
1366 | 1366 | "type": "boolean",
|
1367 | 1367 | "default": false
|
1368 | 1368 | },
|
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" |
1373 | 1373 | },
|
1374 | 1374 | "write_metrics_to_disk": {
|
1375 | 1375 | "description": "Write metrics to disk?",
|
|
1399 | 1399 | "type": "number",
|
1400 | 1400 | "default": 7
|
1401 | 1401 | },
|
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 |
1406 | 1430 | },
|
1407 | 1431 | "wait_for_training_iteration_on_reload": {
|
1408 | 1432 | "description": "Wait for the next training iteration to complete after /reload or ctrl+c.",
|
1409 | 1433 | "type": "boolean",
|
1410 | 1434 | "default": true
|
1411 | 1435 | },
|
| 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 | + }, |
1412 | 1446 | "feature_parameters": {
|
1413 | 1447 | "description": "The parameters used to engineer the feature set",
|
1414 | 1448 | "type": "object",
|
|
0 commit comments