mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
remove tensorboard dir from other pred models
This commit is contained in:
parent
5b5bb8aab5
commit
dba1b573bc
|
@ -34,7 +34,7 @@ class CatboostClassifier(BaseClassifierModel):
|
|||
cbr = CatBoostClassifier(
|
||||
allow_writing_files=True,
|
||||
loss_function='MultiClass',
|
||||
train_dir=Path(dk.data_path / 'tensorboard'),
|
||||
train_dir=Path(dk.data_path),
|
||||
**self.model_training_parameters,
|
||||
)
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ class CatboostRegressorMultiTarget(BaseRegressionModel):
|
|||
|
||||
cbr = CatBoostRegressor(
|
||||
allow_writing_files=True,
|
||||
train_dir=Path(dk.data_path / 'tensorboard'),
|
||||
train_dir=Path(dk.data_path),
|
||||
**self.model_training_parameters,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user