@@ -288,8 +288,6 @@ class MonitoringSignal(RestTranslatableMixin):
288288
289289 This class should not be instantiated directly. Instead, use one of its subclasses.
290290
291- :keyword target_dataset: The target dataset definition for monitor input.
292- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
293291 :keyword baseline_dataset: The baseline dataset definition for monitor input.
294292 :paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
295293 :keyword metric_thresholds: The metric thresholds for the signal.
@@ -351,8 +349,6 @@ class DataSignal(MonitoringSignal):
351349
352350 This class should not be instantiated directly. Instead, use one of its subclasses.
353351
354- :keyword target_dataset: The target dataset definition for monitor input.
355- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
356352 :keyword baseline_dataset: The baseline dataset definition for monitor input.
357353 :paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
358354 :keyword features: The features to include in the signal.
@@ -484,8 +480,6 @@ class PredictionDriftSignal(MonitoringSignal):
484480 :vartype type: str
485481 :keyword baseline_dataset: The dataset to calculate drift against.
486482 :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
489483 :keyword metric_thresholds: A list of metrics to calculate and their associated thresholds
490484 :paramtype metric_thresholds: list[~azure.ai.ml.entities.PredictionDriftMetricThreshold]
491485 :keyword alert_enabled: Whether or not to enable alerts for the signal. Defaults to True.
@@ -548,8 +542,6 @@ class DataQualitySignal(DataSignal):
548542
549543 :ivar type: The type of the signal. Set to "data_quality" for this class.
550544 :vartype type: str
551- :keyword target_dataset: The data for which quality will be calculated.
552- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
553545 :keyword baseline_dataset: The data to calculate quality against.
554546 :paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
555547 :keyword metric_thresholds: A list of metrics to calculate and their
@@ -632,8 +624,6 @@ class ModelSignal(MonitoringSignal):
632624
633625 This class should not be instantiated directly. Instead, use one of its subclasses.
634626
635- :keyword target_dataset: The data for which quality will be calculated.
636- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
637627 :keyword baseline_dataset: The data to calculate quality against.
638628 :paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
639629 :keyword metric_thresholds: A list of metrics to calculate and their
@@ -717,8 +707,6 @@ class FeatureAttributionDriftSignal(RestTranslatableMixin):
717707
718708 :ivar type: The type of the signal. Set to "feature_attribution_drift" for this class.
719709 :vartype type: str
720- :keyword target_dataset: The data for which drift will be calculated.
721- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
722710 :keyword baseline_dataset: The data to calculate drift against.
723711 :paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
724712 :keyword metric_thresholds: A list of metrics to calculate and their
@@ -774,8 +762,6 @@ def _from_rest_object(cls, obj: RestFeatureAttributionDriftMonitoringSignal) ->
774762class ModelPerformanceSignal (ModelSignal ):
775763 """Model performance signal.
776764
777- :keyword target_dataset: The data for which performance will be calculated.
778- :paramtype target_dataset: ~azure.ai.ml.entities.TargetDataset
779765 :keyword baseline_dataset: The data to calculate performance against.
780766 :paramtype baseline_dataset: ~azure.ai.ml.entities.MonitorInputData
781767 :keyword metric_thresholds: A list of metrics to calculate and their
0 commit comments