1 write to Parent
Microsoft.ML.Data (1)
Transforms\RangeFilter.cs (1)
277Parent = parent;
24 references to Parent
Microsoft.ML.Data (24)
Transforms\RangeFilter.cs (24)
278_min = Parent._min; 279_max = Parent._max; 280if (Parent._includeMin) 282if (Parent._includeMax) 283CheckBounds = Parent._complement ? (Func<Double, bool>)TestNotCC : TestCC; 285CheckBounds = Parent._complement ? (Func<Double, bool>)TestNotCO : TestCO; 289if (Parent._includeMax) 290CheckBounds = Parent._complement ? (Func<Double, bool>)TestNotOC : TestOC; 292CheckBounds = Parent._complement ? (Func<Double, bool>)TestNotOO : TestOO; 322if (column.Index != Parent._index) 357Ch.Assert(Parent._type == NumberDataViewType.Single); 358_srcGetter = Input.GetGetter<Single>(Input.Schema[Parent._index]); 369Ch.Assert(Parent._type == NumberDataViewType.Single); 375Ch.Assert(Parent._type == NumberDataViewType.Single); 390Ch.Assert(Parent._type == NumberDataViewType.Double); 391_srcGetter = Input.GetGetter<Double>(Input.Schema[Parent._index]); 402Ch.Assert(Parent._type == NumberDataViewType.Double); 408Ch.Assert(Parent._type == NumberDataViewType.Double); 425Ch.Assert(Parent._type.GetKeyCount() > 0); 426_count = Parent._type.GetKeyCount(); 427_srcGetter = Input.GetGetter<T>(Input.Schema[Parent._index]); 435_conv = Data.Conversion.Conversions.DefaultInstance.GetStandardConversion<T, ulong>(Parent._type, NumberDataViewType.UInt64, out identity); 440Ch.Assert(Parent._type is KeyDataViewType); 446Ch.Assert(Parent._type is KeyDataViewType);