1 write to Host
Microsoft.ML.Data (1)
Transforms\NormalizeColumn.cs (1)
413
Host
= host;
12 references to Host
Microsoft.ML.Data (12)
Transforms\NormalizeColumn.cs (12)
463
Host
.CheckValue(bldr, nameof(bldr));
464
Host
.CheckValue(typeSrc, nameof(typeSrc));
465
Host
.Check(typeSrc.RawType == typeof(TFloat));
484
Host
.AssertValue(scale);
485
Host
.AssertValueOrNull(offset);
486
Host
.Assert(indicesNonZeroOffset == null || offset != null);
487
Host
.Assert(Offset == null || Offset.Length == Scale.Length);
496
Host
.CheckValue(bldr, nameof(bldr));
497
Host
.CheckValue(typeSrc, nameof(typeSrc));
498
Host
.Check(typeSrc.GetVectorSize() == Scale.Length);
499
Host
.Check(typeSrc.GetItemType().RawType == typeof(TFloat));
513
Host
.AssertValue(Offset);