Skip to content

Commit 9e683f7

Browse files
committed
refactoring
1 parent 9e59322 commit 9e683f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/MLOps_Engineer/Infrastructure/Azure_ML_Pipelines/AML_Training_Pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def create_pipeline_structure(compute_target: ComputeTarget, workspace: Workspac
4141
run_name='Databricks_Feature_Engineering',
4242
compute_target=databricks_compute,
4343
existing_cluster_id="0327-230505-5m9ke7k7",
44-
allow_reuse=True
44+
allow_reuse=False
4545
)
4646

4747
Databricks_Model_Training_Step = DatabricksStep(
@@ -53,7 +53,7 @@ def create_pipeline_structure(compute_target: ComputeTarget, workspace: Workspac
5353
run_name='Databricks_Model_Training',
5454
compute_target=databricks_compute,
5555
existing_cluster_id="0327-230505-5m9ke7k7",
56-
allow_reuse=True
56+
allow_reuse=False
5757
)
5858

5959
Databricks_Model_Inference_Step = DatabricksStep(
@@ -64,7 +64,7 @@ def create_pipeline_structure(compute_target: ComputeTarget, workspace: Workspac
6464
run_name='Databricks_Model_Inference',
6565
compute_target=databricks_compute,
6666
existing_cluster_id="0327-230505-5m9ke7k7",
67-
allow_reuse=True
67+
allow_reuse=False
6868
)
6969

7070
step_sequence = StepSequence(steps=[Databricks_Featurization_Step, Databricks_Model_Training_Step, Databricks_Model_Inference_Step])

0 commit comments

Comments
 (0)