2 writes to _transformInfos
Microsoft.ML.Transforms (2)
RandomFourierFeaturizing.cs (2)
257
_transformInfos
= new TransformInfo[columns.Length];
401
_transformInfos
= new TransformInfo[columnsLength];
13 references to _transformInfos
Microsoft.ML.Transforms (13)
RandomFourierFeaturizing.cs (13)
248
if (
_transformInfos
[col].SrcDim != type.GetVectorSize())
250
new VectorDataViewType(NumberDataViewType.Single,
_transformInfos
[col].SrcDim).ToString(), type.ToString());
262
_transformInfos
[i] = new TransformInfo(Host.Register(string.Format("column{0}", i)), columns[i],
404
_transformInfos
[i] = new TransformInfo(Host, ctx,
463
for (int i = 0; i <
_transformInfos
.Length; i++)
464
_transformInfos
[i].Save(ctx, string.Format("MatrixGenerator{0}", i));
489
_types[i] = new VectorDataViewType(NumberDataViewType.Single, _parent.
_transformInfos
[i].RotationTerms == null ?
490
_parent.
_transformInfos
[i].NewDim * 2 : _parent.
_transformInfos
[i].NewDim);
518
var productAligned = new AlignedArray(RoundUp(_parent.
_transformInfos
[iinfo].NewDim, _cfltAlign), CpuMathUtils.GetVectorAlignment());
524
TransformFeatures(in src, ref dst, _parent.
_transformInfos
[iinfo], featuresAligned, productAligned);
535
var productAligned = new AlignedArray(RoundUp(_parent.
_transformInfos
[iinfo].NewDim, _cfltAlign), CpuMathUtils.GetVectorAlignment());
544
TransformFeatures(in oneDimensionalVector, ref dst, _parent.
_transformInfos
[iinfo], featuresAligned, productAligned);