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)
181out SafeBoosterHandle res); 187public static extern int BoosterAddValidData(SafeBoosterHandle handle, SafeDataSetHandle validset); 190public static extern unsafe int BoosterSaveModelToString(SafeBoosterHandle handle, 203public static extern int BoosterUpdateOneIter(SafeBoosterHandle handle, ref int isFinished); 206public static extern int BoosterGetEvalCounts(SafeBoosterHandle handle, ref int outLen); 209public static extern unsafe int BoosterGetEval(SafeBoosterHandle handle, int dataIdx, 216public static extern unsafe int BoosterPredictForMat(SafeBoosterHandle handle, IntPtr data, CApiDType dataType, int nRow, int nCol, int isRowMajor,