Scikit-Learn wrapper

I have a learning-to-rank model trained with the native XGBoost interface.
How can I wrap the native XGBoost model with a scikit-learn compliant interface. I’m aware of the XGBRanker interface, but I want to wrap after training, not before. Is there an easy way to do this?

Have you tried XGBRanker.load_model ?

Thanks for the tip. I’ll have a look.