jpmml / r2pmml

R library for converting R models to PMML
GNU Affero General Public License v3.0
73 stars 18 forks source link

Export to PMML 4.1 #58

Closed Ambachat closed 4 years ago

Ambachat commented 4 years ago

Hi, I want to export my GBM classification model to PMML 4.1; by default it exports to version 4.3. Can anyone help me in this, if it's possible?

vruusmann commented 4 years ago

All JPMML conversion libraries depend on the latest version of the JPMML-Model library, which supports a fixed PMML schema version (ie. it's not possible to instruct it to generate many different schema versions). Right now, the most polular/relevant PMML schema version is 4.3, and hence this is what is generated.

If you need to upgrade/downgrade PMML schema version, then you need to write your own standalone transformation tool.

Resolution - won't fix, because everything works as intended.