-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to choose PMML version? #71
Comments
The R2PMML package does not have such an option. Perhaps you're confusing this package with the legacy
Use some very old R2PMML package version. Something from 2015 or 2016 perhaps, when PMML schema version 4.3 didn't formally exist yet. |
https://github.com/jpmml/jpmml-model I guessed this would allow me to write to such versions. |
Correct, the JPMML-Model library can losslessly represent PMML documents that use any of those schema versions. For example, you can read a PMML 3.0 document into memory, and write it back to a new PMML 3.0 document. You are requesting a transformation operation between PMML schema versions ("make 4.4 into 4.2"). This is a completely different matter. |
Humm, I think I've miss explained myself then. My goal was just But thanks for your patience anyway :) |
The R2PMML package does not support a See #71 (comment)
The latest R2PMML package version is generating PMML 4.4 documents. If you want to obtain an earlier PMML schema version document, then you need to perform a translation/transformation (ie. expressing 4.4-specific markup in terms of 4.2 markup). |
Hello!
I wasn't able to find the option in the arguments, looking in the JAVA version I know that it does exist but couldn't find the argument/function.
How to choose a legacy PMML version? I'd like to use 4.2. (I know about renaming only, but this would be a great appeal on this package)
The text was updated successfully, but these errors were encountered: