20 references to GetGetterAs
Microsoft.ML.Data (20)
Commands\DataCommand.cs (1)
169var getter = RowCursorUtils.GetGetterAs<double>(NumberDataViewType.Double, cursor, currentIndex);
Data\RowCursorUtils.cs (3)
50/// <see cref="GetGetterAs{TDst}"/>. 52/// <seealso cref="GetGetterAs{TDst}"/> 400var getSrc = RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, cursor, labelIndex);
Evaluators\AnomalyDetectionEvaluator.cs (1)
734stratGetter = RowCursorUtils.GetGetterAs<uint>(type, cursor, stratCol);
Evaluators\EvaluatorUtils.cs (5)
289stratColGetter = RowCursorUtils.GetGetterAs<uint>(type, cursor, stratCol); 308getters[i] = RowCursorUtils.GetGetterAs<double>(NumberDataViewType.Double, cursor, i); 1013getters[i] = RowCursorUtils.GetGetterAs<double>(NumberDataViewType.Double, row, i); 1116stratColGetter = RowCursorUtils.GetGetterAs<uint>(type, cursor, stratCol); 1485stratGetter = RowCursorUtils.GetGetterAs<uint>(stratType, cursor, stratCol);
Evaluators\MultiOutputRegressionEvaluator.cs (1)
692stratGetter = RowCursorUtils.GetGetterAs<uint>(type, cursor, stratCol);
Prediction\Calibrator.cs (3)
716var scoreGetter = RowCursorUtils.GetGetterAs<Single>(NumberDataViewType.Single, input, _scoreCol); 969var scoreGetter = RowCursorUtils.GetGetterAs<Single>(NumberDataViewType.Single, cursor, scoreCol.Index); 971RowCursorUtils.GetGetterAs<Single>(NumberDataViewType.Single, cursor, weightCol.Value.Index);
Training\TrainerUtils.cs (2)
317return RowCursorUtils.GetGetterAs<float>(NumberDataViewType.Single, row, col.Value.Index); 338return RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, row, col.Value.Index);
Transforms\KeyToVector.cs (1)
477var getSrc = RowCursorUtils.GetGetterAs<uint>(NumberDataViewType.UInt32, input, srcCol);
Transforms\NormalizeColumn.cs (2)
822var getSrc = RowCursorUtils.GetGetterAs<ulong>(NumberDataViewType.UInt64, row, col); 842var getSrc = RowCursorUtils.GetGetterAs<Double>(NumberDataViewType.Double, row, col);
Transforms\ValueToKeyMappingTransformerImpl.cs (1)
310inputGetter = RowCursorUtils.GetGetterAs<T>(bldr.ItemType, row, col);