27 references to UInt64
Microsoft.Data.Analysis (3)
DataFrameColumns\VBufferDataFrameColumn.cs (1)
353return new VectorDataViewType(NumberDataViewType.UInt64);
IDataView.Extension.cs (1)
107else if (type == NumberDataViewType.UInt64)
PrimitiveDataFrameColumn.cs (1)
839return NumberDataViewType.UInt64;
Microsoft.ML.AutoML.Tests (3)
UserInputValidationTests.cs (1)
297schemaBuilder.AddColumn("UInt64", NumberDataViewType.UInt64);
Utils\MLNetUtils\DataViewTestFixture.cs (2)
37if (column.type == NumberDataViewType.UInt64) 39dataBuilder.AddColumn(column.name, NumberDataViewType.UInt64, createDummyRow ? new System.UInt64[] { 0 } : new System.UInt64[] { });
Microsoft.ML.Core (1)
Data\ColumnTypeExtensions.cs (1)
158return NumberDataViewType.UInt64;
Microsoft.ML.Core.Tests (1)
UnitTests\ColumnTypes.cs (1)
28NumberDataViewType.Byte, NumberDataViewType.UInt16, NumberDataViewType.UInt32, NumberDataViewType.UInt64, RowIdDataViewType.Instance,
Microsoft.ML.Data (12)
Data\Conversion.cs (2)
521var convSrc = GetStandardConversion<TSrc, U8>(key, NumberDataViewType.UInt64, out identity); 522var convU8 = GetStringConversion<U8>(NumberDataViewType.UInt64);
Data\RowCursorUtils.cs (2)
400var getSrc = RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, cursor, labelIndex); 429var getSrc = RowCursorUtils.GetVecGetterAs<ulong>(NumberDataViewType.UInt64, cursor);
Training\TrainerUtils.cs (1)
338return RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, row, col.Value.Index);
Transforms\KeyToValue.cs (2)
523TypeOutput == NumberDataViewType.UInt64 || TypeOutput == NumberDataViewType.UInt32) 532TypeOutput == NumberDataViewType.Int16 || TypeOutput == NumberDataViewType.UInt64 ||
Transforms\NormalizeColumn.cs (1)
822var getSrc = RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, row, col);
Transforms\RangeFilter.cs (1)
435_conv = Data.Conversion.Conversions.DefaultInstance.GetStandardConversion<T, ulong>(Parent._type, NumberDataViewType.UInt64, out identity);
Transforms\ValueMapping.cs (2)
1149else if (typeKey == NumberDataViewType.UInt64) 1230else if (typeValue == NumberDataViewType.UInt64 || kind == InternalDataKind.U8)
Transforms\ValueToKeyMappingTransformer.cs (1)
859else if (type.Equals(NumberDataViewType.UInt64))
Microsoft.ML.DataView (1)
KeyDataViewType.cs (1)
108return NumberDataViewType.UInt64.ToString();
Microsoft.ML.OnnxTransformer (1)
OnnxTypeParser.cs (1)
145scalarType = NumberDataViewType.UInt64;
Microsoft.ML.TensorFlow (1)
TensorflowUtils.cs (1)
173return NumberDataViewType.UInt64;
Microsoft.ML.TestFramework (1)
BaseTestBaseline.cs (1)
715else if (leftType == NumberDataViewType.UInt64)
Microsoft.ML.Tests (1)
Transformers\HashTests.cs (1)
262HashTestCore(value, NumberDataViewType.UInt64, expected, expectedOrdered, expectedOrdered3, expectedCombined, expectedCombinedSparse);
Microsoft.ML.Transforms (2)
Dracula\CountTableTransformer.cs (1)
248var getSrc = RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, row, col.Index);
SvmLight\SvmLightLoader.cs (1)
676var parser = Conversions.DefaultInstance.GetTryParseConversion<ulong>(NumberDataViewType.UInt64);