Skip to content

Commit

Permalink
Feature/stack showcase (#83)
Browse files Browse the repository at this point in the history
* Added mlflow

* More refinement of the Jupyter Notebook

* Removed airflow

* Applied some changes

* Further streamlining
  • Loading branch information
AlexejPenner authored Dec 12, 2023
1 parent 18ffc39 commit 88a7653
Show file tree
Hide file tree
Showing 5 changed files with 236 additions and 191 deletions.
2 changes: 1 addition & 1 deletion stack-showcase/pipelines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from .feature_engineering import feature_engineering
from .inference import inference
from .training import training
from .training import breast_cancer_training
4 changes: 2 additions & 2 deletions stack-showcase/pipelines/training.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
logger = get_logger(__name__)


@pipeline
def training(
@pipeline(enable_cache=True)
def breast_cancer_training(
train_dataset_id: Optional[UUID] = None,
test_dataset_id: Optional[UUID] = None,
min_train_accuracy: float = 0.0,
Expand Down
Loading

0 comments on commit 88a7653

Please sign in to comment.