2 instantiations of FeatureInfo
Microsoft.ML.FastTree (2)
GamModelParameters.cs (2)
848return new FeatureInfo(context, index, internalIndex, context._catsMap); 857i => new FeatureInfo(context, context._pred._shapeToInputMap[i], i, context._catsMap));
7 references to FeatureInfo
Microsoft.ML.FastTree (7)
GamModelParameters.cs (7)
691public FeatureInfo GetInfoForIndex(int index) => FeatureInfo.GetInfoForIndex(this, index); 692public IEnumerable<FeatureInfo> GetInfos() => FeatureInfo.GetInfos(this); 839public static FeatureInfo GetInfoForIndex(Context context, int index) 852public static FeatureInfo[] GetInfos(Context context) 931sch?.Register<int, Context.FeatureInfo>("info", context.GetInfoForIndex);