5 references to Current
Microsoft.ML.FastTree (5)
Dataset\DenseIntArray.cs (1)
46if (type == IntArrayType.Current)
Dataset\IntArray.cs (2)
91Contracts.CheckParam(Enum.IsDefined(typeof(IntArrayType), type) && type != IntArrayType.Current, nameof(type)); 127Contracts.CheckParam(type == IntArrayType.Current || type == IntArrayType.Repeat || type == IntArrayType.Segmented, nameof(type));
Dataset\SparseIntArray.cs (1)
257if (type == IntArrayType.Sparse || type == IntArrayType.Current)
SumupPerformanceCommand.cs (1)
89_host.CheckUserArg(Enum.IsDefined(typeof(IntArrayType), args.Type) && args.Type != IntArrayType.Current, nameof(args.Type), "Value not defined");