org.jpmml.converter.BooleanFeature Java Examples
The following examples show how to use
org.jpmml.converter.BooleanFeature.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ImputerUtil.java From jpmml-sklearn with GNU Affero General Public License v3.0 | 6 votes |
static public Feature encodeIndicatorFeature(Feature feature, Object missingValue, SkLearnEncoder encoder){ Expression expression = feature.ref(); if(missingValue != null){ expression = PMMLUtil.createApply(PMMLFunctions.EQUAL, expression, PMMLUtil.createConstant(missingValue, feature.getDataType())); } else { expression = PMMLUtil.createApply(PMMLFunctions.ISMISSING, expression); } DerivedField derivedField = encoder.createDerivedField(FeatureUtil.createName("missing_indicator", feature), OpType.CATEGORICAL, DataType.BOOLEAN, expression); return new BooleanFeature(encoder, derivedField); }
Example #2
Source File: MatchesTransformer.java From jpmml-sklearn with GNU Affero General Public License v3.0 | 6 votes |
@Override public List<Feature> encodeFeatures(List<Feature> features, SkLearnEncoder encoder){ String pattern = getPattern(); ClassDictUtil.checkSize(1, features); Feature feature = features.get(0); if(!(DataType.STRING).equals(feature.getDataType())){ throw new IllegalArgumentException(); } Apply apply = PMMLUtil.createApply(PMMLFunctions.MATCHES) .addExpressions(feature.ref()) .addExpressions(PMMLUtil.createConstant(pattern, DataType.STRING)); DerivedField derivedField = encoder.createDerivedField(FeatureUtil.createName("matches", feature), OpType.CATEGORICAL, DataType.BOOLEAN, apply); return Collections.singletonList(new BooleanFeature(encoder, derivedField)); }