9 references to SafeBoosterHandle
Microsoft.ML.LightGbm (9)
WrappedLightGbmBooster.cs (2)
22public WrappedLightGbmInterface.SafeBoosterHandle Handle { get; private set; } 28LightGbmInterfaceUtils.Check(WrappedLightGbmInterface.BoosterCreate(trainset.Handle, param, out var handle));
WrappedLightGbmInterface.cs (7)
182out SafeBoosterHandle res); 188public static extern int BoosterAddValidData(SafeBoosterHandle handle, SafeDataSetHandle validset); 191public static extern unsafe int BoosterSaveModelToString(SafeBoosterHandle handle, 204public static extern int BoosterUpdateOneIter(SafeBoosterHandle handle, ref int isFinished); 207public static extern int BoosterGetEvalCounts(SafeBoosterHandle handle, ref int outLen); 210public static extern unsafe int BoosterGetEval(SafeBoosterHandle handle, int dataIdx, 217public static extern unsafe int BoosterPredictForMat(SafeBoosterHandle handle, IntPtr data, CApiDType dataType, int nRow, int nCol, int isRowMajor,