|
965 | 965 | "type": "boolean", |
966 | 966 | "default": False, |
967 | 967 | }, |
968 | | - "keras": { |
969 | | - "description": "Use Keras for model training.", |
970 | | - "type": "boolean", |
971 | | - "default": False, |
| 968 | + "identifier": { |
| 969 | + "description": ( |
| 970 | + "A unique ID for the current model. " |
| 971 | + "Must be changed when modifying features." |
| 972 | + ), |
| 973 | + "type": "string", |
| 974 | + "default": "example", |
972 | 975 | }, |
973 | 976 | "write_metrics_to_disk": { |
974 | 977 | "description": "Write metrics to disk?", |
|
1000 | 1003 | "type": "number", |
1001 | 1004 | "default": 7, |
1002 | 1005 | }, |
1003 | | - "identifier": { |
| 1006 | + "live_retrain_hours": { |
| 1007 | + "description": "Frequency of retraining during dry/live runs.", |
| 1008 | + "type": "number", |
| 1009 | + "default": 0, |
| 1010 | + }, |
| 1011 | + "expiration_hours": { |
1004 | 1012 | "description": ( |
1005 | | - "A unique ID for the current model. " |
1006 | | - "Must be changed when modifying features." |
| 1013 | + "Avoid making predictions if a model is more than `expiration_hours` " |
| 1014 | + "old. Defaults to 0 (no expiration)." |
1007 | 1015 | ), |
1008 | | - "type": "string", |
1009 | | - "default": "example", |
| 1016 | + "type": "number", |
| 1017 | + "default": 0, |
| 1018 | + }, |
| 1019 | + "save_backtest_models": { |
| 1020 | + "description": "Save models to disk when running backtesting.", |
| 1021 | + "type": "boolean", |
| 1022 | + "default": False, |
| 1023 | + }, |
| 1024 | + "fit_live_predictions_candles": { |
| 1025 | + "description": ( |
| 1026 | + "Number of historical candles to use for computing target (label) " |
| 1027 | + "statistics from prediction data, instead of from the training dataset." |
| 1028 | + ), |
| 1029 | + "type": "boolean", |
| 1030 | + "default": False, |
| 1031 | + }, |
| 1032 | + "data_kitchen_thread_count": { |
| 1033 | + "description": ( |
| 1034 | + "Designate the number of threads you want to use for data processing " |
| 1035 | + "(outlier methods, normalization, etc.)." |
| 1036 | + ), |
| 1037 | + "type": "integer", |
| 1038 | + }, |
| 1039 | + "activate_tensorboard": { |
| 1040 | + "description": "Indicate whether or not to activate tensorboard", |
| 1041 | + "type": "boolean", |
| 1042 | + "default": True, |
1010 | 1043 | }, |
1011 | 1044 | "wait_for_training_iteration_on_reload": { |
1012 | 1045 | "description": ( |
|
1024 | 1057 | "type": "boolean", |
1025 | 1058 | "default": False, |
1026 | 1059 | }, |
| 1060 | + "keras": { |
| 1061 | + "description": "Use Keras for model training.", |
| 1062 | + "type": "boolean", |
| 1063 | + "default": False, |
| 1064 | + }, |
1027 | 1065 | "feature_parameters": { |
1028 | 1066 | "description": "The parameters used to engineer the feature set", |
1029 | 1067 | "type": "object", |
|
0 commit comments