2 writes to _poolSize
Microsoft.ML.Data (2)
Transforms\BootstrapSamplingTransformer.cs (2)
87
_poolSize
= options.PoolSize;
127
_poolSize
= ctx.Reader.ReadInt32();
5 references to _poolSize
Microsoft.ML.Data (5)
Transforms\BootstrapSamplingTransformer.cs (5)
128
Host.CheckDecode(
_poolSize
>= 0);
149
Host.Assert(
_poolSize
>= 0);
150
ctx.Writer.Write(
_poolSize
);
174
if (
_poolSize
> 1)
175
cursor = RowShufflingTransformer.GetShuffledCursor(Host,
_poolSize
, cursor, new TauswortheHybrid(rgen));