-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support for transformer-only pipelines #11
Comments
Related to jpmml/jpmml-evaluator#96 In other words, there should be an API for producing transformer-only PMML documents, and then consuming them. |
Hello, |
Hello, |
Based on jpmml/jpmml-sklearn#86
At the moment it's impossible to generate transformer-only pipelines, because the
ModelEncoder#encodePMML(Model)
method applies a set of visitors that clean the soon-to-be-generated PMML document from all unused preprocessing instructions:https://github.com/jpmml/jpmml-converter/blob/master/src/main/java/org/jpmml/converter/ModelEncoder.java#L53-L56
Possible solution: class
ModelEncoder
should provide a "transformer-only" conversion mode.The text was updated successfully, but these errors were encountered: