gbm-developers / gbm3

Gradient boosted models
133 stars 117 forks source link

pmml support #152

Open hansvomkreuz opened 6 years ago

hansvomkreuz commented 6 years ago

Hi, team - quick question: Is the GBMFit object supported by pmml? Couldn't find any topic on the internet on this.

Posted this question in SO, as well.

Thanks!

vruusmann commented 6 years ago

@hansvomkreuz Convert your GBMFit object to the "old" gbm object using the gbm3::to_old_gbm(x) function, and then export using the r2pmml package as usual.

Please do not use the default pmml package for PMML export, as it is known to generate incorrect model files.

hansvomkreuz commented 6 years ago

@vruusmann Thanks so much! will try this out :)

az0 commented 5 years ago

Can this issue be closed based on comment from @vruusmann ?