@@ -288,8 +288,6 @@ class MonitoringSignal(RestTranslatableMixin):
288
288
289
289
This class should not be instantiated directly. Instead, use one of its subclasses.
290
290
291
- :keyword target_dataset: The target dataset definition for monitor input.
292
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
293
291
:keyword baseline_dataset: The baseline dataset definition for monitor input.
294
292
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
295
293
:keyword metric_thresholds: The metric thresholds for the signal.
@@ -351,8 +349,6 @@ class DataSignal(MonitoringSignal):
351
349
352
350
This class should not be instantiated directly. Instead, use one of its subclasses.
353
351
354
- :keyword target_dataset: The target dataset definition for monitor input.
355
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
356
352
:keyword baseline_dataset: The baseline dataset definition for monitor input.
357
353
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
358
354
:keyword features: The features to include in the signal.
@@ -484,8 +480,6 @@ class PredictionDriftSignal(MonitoringSignal):
484
480
:vartype type: str
485
481
:keyword baseline_dataset: The dataset to calculate drift against.
486
482
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
487
- :keyword target_dataset: The dataset for which drift will be calculated.
488
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
489
483
:keyword metric_thresholds: A list of metrics to calculate and their associated thresholds
490
484
:paramtype metric_thresholds: list[~azure.ai.ml.entities.PredictionDriftMetricThreshold]
491
485
:keyword alert_enabled: Whether or not to enable alerts for the signal. Defaults to True.
@@ -548,8 +542,6 @@ class DataQualitySignal(DataSignal):
548
542
549
543
:ivar type: The type of the signal. Set to "data_quality" for this class.
550
544
:vartype type: str
551
- :keyword target_dataset: The data for which quality will be calculated.
552
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
553
545
:keyword baseline_dataset: The data to calculate quality against.
554
546
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
555
547
:keyword metric_thresholds: A list of metrics to calculate and their
@@ -632,8 +624,6 @@ class ModelSignal(MonitoringSignal):
632
624
633
625
This class should not be instantiated directly. Instead, use one of its subclasses.
634
626
635
- :keyword target_dataset: The data for which quality will be calculated.
636
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
637
627
:keyword baseline_dataset: The data to calculate quality against.
638
628
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
639
629
:keyword metric_thresholds: A list of metrics to calculate and their
@@ -717,8 +707,6 @@ class FeatureAttributionDriftSignal(RestTranslatableMixin):
717
707
718
708
:ivar type: The type of the signal. Set to "feature_attribution_drift" for this class.
719
709
:vartype type: str
720
- :keyword target_dataset: The data for which drift will be calculated.
721
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
722
710
:keyword baseline_dataset: The data to calculate drift against.
723
711
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
724
712
:keyword metric_thresholds: A list of metrics to calculate and their
@@ -774,8 +762,6 @@ def _from_rest_object(cls, obj: RestFeatureAttributionDriftMonitoringSignal) ->
774
762
class ModelPerformanceSignal (ModelSignal ):
775
763
"""Model performance signal.
776
764
777
- :keyword target_dataset: The data for which performance will be calculated.
778
- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
779
765
:keyword baseline_dataset: The data to calculate performance against.
780
766
:paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
781
767
:keyword metric_thresholds: A list of metrics to calculate and their
0 commit comments