Skip to content

Commit

Permalink
add taskType in data drift and data quality signals (#1693)
Browse files Browse the repository at this point in the history
* add taskType in data drift and data quality signals

* update data drift version
  • Loading branch information
ycheng35xo authored Nov 9, 2023
1 parent 1835992 commit 61fa55b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type: pipeline
name: data_drift_signal_monitor
display_name: Data Drift - Signal Monitor
description: Computes the data drift between a baseline and production data assets.
version: 0.3.15
version: 0.3.16
is_deterministic: true

inputs:
Expand Down Expand Up @@ -43,6 +43,9 @@ inputs:
target_column:
type: string
optional: true
task_type:
type: string
optional: true
outputs:
signal_output:
type: uri_folder
Expand All @@ -55,6 +58,7 @@ jobs:
baseline_data:
type: mltable
path: ${{parent.inputs.baseline_data}}
task_type: ${{parent.inputs.task_type}}
target_column: ${{parent.inputs.target_column}}
outputs:
signal_metrics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type: pipeline
name: data_quality_signal_monitor
display_name: Data Quality - Signal Monitor
description: Computes the data quality of a target dataset with reference to a baseline.
version: 0.3.14
version: 0.3.15
is_deterministic: true

inputs:
Expand Down Expand Up @@ -37,6 +37,9 @@ inputs:
target_column:
type: string
optional: true
task_type:
type: string
optional: true
monitor_current_time:
type: string
notification_emails:
Expand All @@ -55,6 +58,7 @@ jobs:
baseline_data:
type: mltable
path: ${{parent.inputs.baseline_data}}
task_type: ${{parent.inputs.task_type}}
target_column: ${{parent.inputs.target_column}}
outputs:
signal_metrics:
Expand Down

0 comments on commit 61fa55b

Please sign in to comment.