Skip to main content

Class FeatureSelectionPipelineContext

The feature selection context that directly maps to a FeatureSelectionConfig.

Attributes:

name (str): The name of the feature selection pipeline

split_aggregation_type (str): The method for aggregating feature selection importance scores across splits.

algorithm_aggregation_type (str): The method of aggregating selected features by algorithm into the global

list of selected features.

split_run_type (str): The method of what data splits to run the feature selection algorithms against.

See Also:

PPOConfig

FeatureSelectionConfig

Namespace: Workspace.XBR.Xperiflow.Core.RestApi.TimeSeriesForecasting

Assembly: Xperiflow.dll

Declaration
public class FeatureSelectionPipelineContext

Properties

Name

Declaration
[JsonProperty("name", Required = Required.Always)]
public string Name { get; set; }

SplitAggregationType

Declaration
[JsonProperty("split_aggregation_type", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string? SplitAggregationType { get; set; }

AlgorithmAggregationType

Declaration
[JsonProperty("algorithm_aggregation_type", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string? AlgorithmAggregationType { get; set; }

SplitRunType

Declaration
[JsonProperty("split_run_type", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string? SplitRunType { get; set; }

RunOnce

Declaration
[JsonProperty("run_once", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool? RunOnce { get; set; }

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }

Methods

ToJson()

Declaration
public string ToJson()
Returns

System.String

FromJson(string)

Declaration
public static FeatureSelectionPipelineContext FromJson(string data)
Returns

Workspace.XBR.Xperiflow.Core.RestApi.TimeSeriesForecasting.FeatureSelectionPipelineContext

Parameters
TypeName
System.Stringdata

Inherited Members

  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.ToString

Was this page helpful?