You can download this code by clicking the button below.
This code is now available for download.
This function uses a trained LightGBM model to predict the outcome of new input data.
Technology Stack : LightGBM
Code Type : Function
Code Difficulty : Intermediate
def predict_lightgbm(input_data, model):
"""
This function uses a trained LightGBM model to predict the outcome of new input data.
:param input_data: A numpy array representing the input features.
:param model: A trained LightGBM model.
:return: The predicted outcome as a numpy array.
"""
predictions = model.predict(input_data)
return predictions