1 from lightgbm import LGBMClassifier 2 model = LGBMClassifier() 3 model.fit(X_train, y_train) 4 y_pred = model.predict_proba(X_valid)
This