2 writes to _rand
Microsoft.ML.Transforms (2)
RandomFourierFeaturizing.cs (2)
116
_rand
= seed.HasValue ? RandomUtils.Create(seed) : RandomUtils.Create(host.Rand);
150
_rand
= new TauswortheHybrid(_state);
3 references to _rand
Microsoft.ML.Transforms (3)
RandomFourierFeaturizing.cs (3)
117
_state =
_rand
.GetState();
188
RndFourierVectors[i * rowSize + j] = _matrixGenerator.Next(
_rand
);
195
RotationTerms[i] = (
_rand
.NextSingle() - (float)0.5) * (float)Math.PI;