1 instantiation of FeatureInfo
Microsoft.ML.FastTree (1)
GamModelParameters.cs (1)
848return new FeatureInfo(context, index, internalIndex, 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);