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(
|
cbr = CatBoostClassifier(
|
||||||
allow_writing_files=True,
|
allow_writing_files=True,
|
||||||
loss_function='MultiClass',
|
loss_function='MultiClass',
|
||||||
train_dir=Path(dk.data_path / 'tensorboard'),
|
train_dir=Path(dk.data_path),
|
||||||
**self.model_training_parameters,
|
**self.model_training_parameters,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ class CatboostRegressorMultiTarget(BaseRegressionModel):
|
|||||||
|
|
||||||
cbr = CatBoostRegressor(
|
cbr = CatBoostRegressor(
|
||||||
allow_writing_files=True,
|
allow_writing_files=True,
|
||||||
train_dir=Path(dk.data_path / 'tensorboard'),
|
train_dir=Path(dk.data_path),
|
||||||
**self.model_training_parameters,
|
**self.model_training_parameters,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user