6 references to Create
Microsoft.ML.Core (2)
Environment\HostEnvironmentBase.cs (2)
142
Random rand = (seed.HasValue) ? RandomUtils.Create(seed.Value) : RandomUtils.
Create
(_rand);
421
Random rand = (seed.HasValue) ? RandomUtils.Create(seed.Value) : RandomUtils.
Create
(_rand);
Microsoft.ML.Data (2)
DataView\AppendRowsDataView.cs (1)
325
_cursorSet[i] = parent._sources[i].GetRowCursor(columnsNeeded, RandomUtils.
Create
(_rand));
Transforms\RowShufflingTransformer.cs (1)
279
Random sourceRand = shouldShuffleSource ? RandomUtils.
Create
(myRandom) : null;
Microsoft.ML.KMeansClustering (1)
KMeansPlusPlusTrainer.cs (1)
1731
Random rand = RandomUtils.
Create
(baseHost.Rand);
Microsoft.ML.Transforms (1)
RandomFourierFeaturizing.cs (1)
116
_rand = seed.HasValue ? RandomUtils.Create(seed) : RandomUtils.
Create
(host.Rand);