2 writes to _rank
Microsoft.ML.PCA (2)
PcaTrainer.cs (2)
166_rank = options.Rank; 173_rank = rank;
6 references to _rank
Microsoft.ML.PCA (6)
PcaTrainer.cs (6)
181Host.CheckUserArg(_rank > 0, nameof(_rank), "Rank must be positive"); 216if (_rank > dimension) 217throw ch.Except("Rank ({0}) cannot be larger than the original dimension ({1})", _rank, dimension); 218int oversampledRank = Math.Min(_rank + _oversampling, dimension); 269return new PcaModelParameters(Host, _rank, b, in mean);