Closed Quantuary closed 6 years ago
The field sepal-length
is already in use by a DataField
element. It's not permitted to have another field element with the same name.
In the context of SkLearn decision tree models, the float(<name>)
field is significant (performs conversion from 64-bit value space to 32-bit value space), and cannot be eliminated.
Thank you very much. The scoring engine my company using can not take the transformation dictionary very well. I guess i have to either stick with R or manually edit the XML file. Thanks again!
The scoring engine my company using can not take the transformation dictionary very well.
It's not permitted to "simplify" PMML documents for arbitrary reasons. In case of Scikit-Learn decision tree models, if you leave out this double
-float
conversion, then the predictions can/will be incorrect.
Better upgrade your scoring engine.
Hi,
1st of all, thank you for your great work!!
I came to some problem when trying to rename the 'DeriveField Name'. Example, I would like to remove "float()" instead of just using the name 'sepal-length'.
My code is as below:
My error is:
How do i debug this, i had little knowledge about java.
Thank you for your help in advance.