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