FeatureAttributionDriftMonitoringSignal Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FeatureAttributionDriftMonitoringSignal(FeatureAttributionMetricThreshold, IEnumerable<MonitoringInputDataBase>, MonitoringInputDataBase)
Initializes a new instance of FeatureAttributionDriftMonitoringSignal.
public FeatureAttributionDriftMonitoringSignal (Azure.ResourceManager.MachineLearning.Models.FeatureAttributionMetricThreshold metricThreshold, System.Collections.Generic.IEnumerable<Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase> productionData, Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase referenceData);
new Azure.ResourceManager.MachineLearning.Models.FeatureAttributionDriftMonitoringSignal : Azure.ResourceManager.MachineLearning.Models.FeatureAttributionMetricThreshold * seq<Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase> * Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase -> Azure.ResourceManager.MachineLearning.Models.FeatureAttributionDriftMonitoringSignal
Public Sub New (metricThreshold As FeatureAttributionMetricThreshold, productionData As IEnumerable(Of MonitoringInputDataBase), referenceData As MonitoringInputDataBase)
Parameters
- metricThreshold
- FeatureAttributionMetricThreshold
[Required] A list of metrics to calculate and their associated thresholds.
- productionData
- IEnumerable<MonitoringInputDataBase>
[Required] The data which drift will be calculated for. Please note MonitoringInputDataBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include FixedInputData, StaticInputData and TrailingInputData.
- referenceData
- MonitoringInputDataBase
[Required] The data to calculate drift against. Please note MonitoringInputDataBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include FixedInputData, StaticInputData and TrailingInputData.
Exceptions
metricThreshold
, productionData
or referenceData
is null.
Applies to
FeatureAttributionDriftMonitoringSignal(FeatureAttributionMetricThreshold, FeatureImportanceSettings, IEnumerable<MonitoringInputDataBase>, MonitoringInputDataBase)
Initializes a new instance of FeatureAttributionDriftMonitoringSignal.
public FeatureAttributionDriftMonitoringSignal (Azure.ResourceManager.MachineLearning.Models.FeatureAttributionMetricThreshold metricThreshold, Azure.ResourceManager.MachineLearning.Models.FeatureImportanceSettings featureImportanceSettings, System.Collections.Generic.IEnumerable<Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase> productionData, Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase referenceData);
new Azure.ResourceManager.MachineLearning.Models.FeatureAttributionDriftMonitoringSignal : Azure.ResourceManager.MachineLearning.Models.FeatureAttributionMetricThreshold * Azure.ResourceManager.MachineLearning.Models.FeatureImportanceSettings * seq<Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase> * Azure.ResourceManager.MachineLearning.Models.MonitoringInputDataBase -> Azure.ResourceManager.MachineLearning.Models.FeatureAttributionDriftMonitoringSignal
Public Sub New (metricThreshold As FeatureAttributionMetricThreshold, featureImportanceSettings As FeatureImportanceSettings, productionData As IEnumerable(Of MonitoringInputDataBase), referenceData As MonitoringInputDataBase)
Parameters
- metricThreshold
- FeatureAttributionMetricThreshold
[Required] A list of metrics to calculate and their associated thresholds.
- featureImportanceSettings
- FeatureImportanceSettings
[Required] The settings for computing feature importance.
- productionData
- IEnumerable<MonitoringInputDataBase>
[Required] The data which drift will be calculated for. Please note MonitoringInputDataBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include FixedInputData, RollingInputData and StaticInputData.
- referenceData
- MonitoringInputDataBase
[Required] The data to calculate drift against. Please note MonitoringInputDataBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include FixedInputData, RollingInputData and StaticInputData.
Exceptions
metricThreshold
, featureImportanceSettings
, productionData
or referenceData
is null.
Applies to
Azure SDK for .NET