2 writes to Infos
Microsoft.ML.Data (2)
DataLoadSave\Database\DatabaseLoader.cs (2)
478
Infos
= new ColInfo[cols.Length];
562
Infos
= new ColInfo[cinfo];
14 references to Infos
Microsoft.ML.Data (14)
DataLoadSave\Database\DatabaseLoader.cs (10)
466
/// <see cref="
Infos
"/>[i] stores the i-th column's name and type. Columns are loaded from the input database.
481
var nameToInfoIndex = new Dictionary<string, int>(
Infos
.Length);
483
for (int iinfo = 0; iinfo <
Infos
.Length; iinfo++)
534
Infos
[iinfo] = ColInfo.Create(name, itemType, segs, true);
611
Infos
[iinfo] = ColInfo.Create(name, itemType, segs, false);
635
ctx.Writer.Write(
Infos
.Length);
636
for (int iinfo = 0; iinfo <
Infos
.Length; iinfo++)
638
var info =
Infos
[iinfo];
671
for (int i = 0; i <
Infos
.Length; ++i)
673
var info =
Infos
[i];
DataLoadSave\Database\DatabaseLoaderCursor.cs (4)
46
_getters = new Delegate[_bindings.
Infos
.Length];
147
Ch.Check(column.Index < _bindings.
Infos
.Length);
173
return Utils.MarshalInvoke(_createGetterDelegateMethodInfo, this, _bindings.
Infos
[col].ColType.RawType, col);
180
var colInfo = _bindings.
Infos
[col];