5 references to TauswortheHybrid
Microsoft.ML.Core (2)
Utilities\Random.cs (2)
47return new TauswortheHybrid(new Random()); 78return new TauswortheHybrid(seed);
Microsoft.ML.Data (3)
DataLoadSave\Binary\BinarySaver.cs (1)
740Random rand = data.CanShuffle ? new TauswortheHybrid(_host.Rand) : null;
Transforms\BootstrapSamplingTransformer.cs (2)
172var input = Source.GetRowCursor(columnsNeeded, _shuffleInput ? new TauswortheHybrid(rgen) : null); 175cursor = RowShufflingTransformer.GetShuffledCursor(Host, _poolSize, cursor, new TauswortheHybrid(rgen));