6 references to Create
Microsoft.ML.Core (2)
Environment\HostEnvironmentBase.cs (2)
142Random rand = (seed.HasValue) ? RandomUtils.Create(seed.Value) : RandomUtils.Create(_rand); 421Random 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)
279Random sourceRand = shouldShuffleSource ? RandomUtils.Create(myRandom) : null;
Microsoft.ML.KMeansClustering (1)
KMeansPlusPlusTrainer.cs (1)
1731Random rand = RandomUtils.Create(baseHost.Rand);
Microsoft.ML.Transforms (1)
RandomFourierFeaturizing.cs (1)
116_rand = seed.HasValue ? RandomUtils.Create(seed) : RandomUtils.Create(host.Rand);