16 references to Defaults
Microsoft.ML.PCA (16)
PCACatalog.cs (3)
32int rank = PrincipalComponentAnalyzer.Defaults.Rank, 33int overSampling = PrincipalComponentAnalyzer.Defaults.Oversampling, 34bool ensureZeroMean = PrincipalComponentAnalyzer.Defaults.EnsureZeroMean,
PcaTransformer.cs (13)
44public string ExampleWeightColumnName = PrincipalComponentAnalyzer.Defaults.WeightColumn; 47public int Rank = PrincipalComponentAnalyzer.Defaults.Rank; 50public int Oversampling = PrincipalComponentAnalyzer.Defaults.Oversampling; 53public bool Center = PrincipalComponentAnalyzer.Defaults.EnsureZeroMean; 56public int Seed = PrincipalComponentAnalyzer.Defaults.Seed; 755string weightColumn = Defaults.WeightColumn, 756int rank = Defaults.Rank, 757int overSampling = Defaults.Oversampling, 758bool ensureZeroMean = Defaults.EnsureZeroMean, 789string weightColumn = Defaults.WeightColumn, int rank = Defaults.Rank, 790int overSampling = Defaults.Oversampling, bool ensureZeroMean = Defaults.EnsureZeroMean,