2 writes to _rand
Microsoft.ML.Core (2)
Environment\HostEnvironmentBase.cs (2)
376
_rand
= RandomUtils.Create(Seed);
394
_rand
= rand ?? RandomUtils.Create();
3 references to _rand
Microsoft.ML.Core (3)
Environment\HostEnvironmentBase.cs (3)
122
public Random Rand =>
_rand
;
142
Random rand = (seed.HasValue) ? RandomUtils.Create(seed.Value) : RandomUtils.Create(
_rand
);
421
Random rand = (seed.HasValue) ? RandomUtils.Create(seed.Value) : RandomUtils.Create(
_rand
);