-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
Is your feature request related to a problem? Please describe.
Our data scientists are training lightgbm models in python, and our inference runtime is in C#. We are very much interested in using ML.NET to run inference, however loading the model from a file is not yet supported in ML.NET. Is there an obstacle in adding this additional binding already available in lightgbm C++ API ?
Describe the solution you'd like
Add LGBM_BoosterLoadModelFromString binding to WrappedLightGbmInterface () available in https://github.com/Microsoft/LightGBM/blob/master/include/LightGBM/c_api.h
Describe alternatives you've considered
An alternative is to convert our models to ONNX and not use ML.NET runtime.