Skip to content

Commit

Permalink
renamed to tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-carlos-calvo authored and marnixkoops committed Oct 28, 2021
1 parent eee54ef commit eb676c4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conf/base/parameters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ train_tabnet:
patience: 64
batch_size: 256
callbacks:
- class: kendrite.pipelines.tune_model.TuneReportCallback
- class: kendrite.pipelines.tuning.TuneReportCallback
kwargs:
metrics: &monitor "valid_logloss"
"on": "epoch_end"
Expand Down
4 changes: 2 additions & 2 deletions src/kendrite/pipeline_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from kedro.pipeline import Pipeline, pipeline

from kendrite.pipelines import engineering, evaluation, model, tune_model
from kendrite.pipelines import engineering, evaluation, model, tuning


def register_pipelines() -> Dict[str, Pipeline]:
Expand All @@ -16,7 +16,7 @@ def register_pipelines() -> Dict[str, Pipeline]:
engineering_pipeline = engineering.create_data_pipeline()
model_pipeline = model.create_model_pipeline()
evaluation_pipeline = evaluation.create_evaluation_pipeline()
tune_pipeline = tune_model.create_pipeline()
tune_pipeline = tuning.create_pipeline()
model_pipeline_from_tune = model.create_model_pipeline(
from_hyperparameter_tuning=True
)
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def create_pipeline(config_mapper: Callable = map_config_params) -> Pipeline:
patience: 64
batch_size: 256
callbacks:
- class: kendrite.pipelines.tune_model.TuneReportCallback
- class: kendrite.pipelines.tuning.TuneReportCallback
kwargs:
metrics: "val_logloss"
"on": 'epoch_end'
Expand Down

0 comments on commit eb676c4

Please sign in to comment.