Back in openCV2.x, cvBoost model can be saved/loaded as described in this stackoverflow post
In openCV3.0, I manage to train an adaboost model (cv::ml::boost Model1) and save it into a yml file with
Model1.save("model.yml");
But it seems that the following load function is not implemented:
Model1.load("model.yml");