mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 10:43:56 +00:00
fix test
This commit is contained in:
parent
366c148c10
commit
61ac36c576
|
@ -85,22 +85,6 @@ def test_extract_data_and_train_model_Standard(mocker, freqai_conf, model, pca,
|
||||||
if 'test_3ac' in model or 'test_4ac' in model:
|
if 'test_3ac' in model or 'test_4ac' in model:
|
||||||
freqai_conf["freqaimodel_path"] = str(Path(__file__).parents[1] / "freqai" / "test_models")
|
freqai_conf["freqaimodel_path"] = str(Path(__file__).parents[1] / "freqai" / "test_models")
|
||||||
|
|
||||||
if 'PyTorchClassifierMultiTarget' in model:
|
|
||||||
model_save_ext = 'zip'
|
|
||||||
freqai_conf['freqai']['model_training_parameters'].update({
|
|
||||||
"learning_rate": 3e-4,
|
|
||||||
"trainer_kwargs": {
|
|
||||||
"max_iters": 1,
|
|
||||||
"batch_size": 64,
|
|
||||||
"max_n_eval_batches": 1,
|
|
||||||
},
|
|
||||||
"model_kwargs": {
|
|
||||||
"hidden_dim": 32,
|
|
||||||
"dropout_percent": 0.2,
|
|
||||||
"n_layer": 1,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
strategy = get_patched_freqai_strategy(mocker, freqai_conf)
|
strategy = get_patched_freqai_strategy(mocker, freqai_conf)
|
||||||
exchange = get_patched_exchange(mocker, freqai_conf)
|
exchange = get_patched_exchange(mocker, freqai_conf)
|
||||||
strategy.dp = DataProvider(freqai_conf, exchange)
|
strategy.dp = DataProvider(freqai_conf, exchange)
|
||||||
|
@ -184,7 +168,7 @@ def test_extract_data_and_train_model_MultiTargets(mocker, freqai_conf, model, s
|
||||||
'CatboostClassifier',
|
'CatboostClassifier',
|
||||||
'XGBoostClassifier',
|
'XGBoostClassifier',
|
||||||
'XGBoostRFClassifier',
|
'XGBoostRFClassifier',
|
||||||
'PyTorchClassifierMultiTarget',
|
'PyTorchClassifier',
|
||||||
])
|
])
|
||||||
def test_extract_data_and_train_model_Classifiers(mocker, freqai_conf, model):
|
def test_extract_data_and_train_model_Classifiers(mocker, freqai_conf, model):
|
||||||
if (is_arm() or is_py11()) and model == 'CatboostClassifier':
|
if (is_arm() or is_py11()) and model == 'CatboostClassifier':
|
||||||
|
|
Loading…
Reference in New Issue
Block a user