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