-
Notifications
You must be signed in to change notification settings - Fork 256
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
Add transformer entry point #116
Add transformer entry point #116
Conversation
UP |
…hub.com:christophe-rannou/jpmml-evaluator into feature/preprocessor-entry-point
@@ -66,6 +61,11 @@ private FieldValue declareMissing(FieldName name) { | |||
return declare(name, (FieldValue) null); | |||
} | |||
|
|||
@Override | |||
protected FieldValue prepare(FieldName name, Object value) { | |||
throw new NotImplementedException(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be java.lang.UnsupportedOperationException
instead.
The org.jpmml.evaluator.NotImplementedException
has a different meaning - "the PMML specification defines some feature/nehaviour, but this is not yet implemented in the JPMML-Evaluator library"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
What's the use case for 64-bit integer values? Counting milliseconds since 01-01-1970? Please comment here: #141 |
…hub.com:christophe-rannou/jpmml-evaluator into feature/preprocessor-entry-point
Duplicate of #96 |
#96