org.jpmml.evaluator.ValueAggregator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-evaluator Show documentation
Show all versions of pmml-evaluator Show documentation
JPMML class model evaluator
/*
* Copyright (c) 2015 Villu Ruusmann
*
* This file is part of JPMML-Evaluator
*
* JPMML-Evaluator is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JPMML-Evaluator is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with JPMML-Evaluator. If not, see .
*/
package org.jpmml.evaluator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class ValueAggregator {
private Vector values = null;
private Vector weights = null;
private Vector weightedValues = null;
protected ValueAggregator(Vector values){
this(values, null, null);
}
protected ValueAggregator(Vector values, Vector weights){
this(values, weights, null);
}
protected ValueAggregator(Vector values, Vector weights, Vector weightedValues){
this.values = values;
this.weights = weights;
this.weightedValues = weightedValues;
}
public void add(Number value){
if(this.weights != null || this.weightedValues != null){
throw new IllegalStateException();
}
this.values.add(value);
}
public void add(Number value, Number weight){
if(this.weights == null){
throw new IllegalStateException();
} // End if
if(weight.doubleValue() < 0d){
throw new IllegalArgumentException();
}
this.values.add(value);
this.weights.add(weight);
if(this.weightedValues != null){
if(weight.doubleValue() != 1d){
this.weightedValues.add(weight, value);
} else
{
this.weightedValues.add(value);
}
}
}
public Value average(){
if(this.weights != null){
throw new IllegalStateException();
}
int size = this.values.size();
if(size == 0){
throw new UndefinedResultException();
}
return (this.values.sum()).divide(size);
}
public Value weightedAverage(){
if(this.weights == null || this.weightedValues == null){
throw new IllegalStateException();
}
int size = this.weightedValues.size();
if(size == 0){
throw new UndefinedResultException();
}
Value weightSum = this.weights.sum();
if(weightSum.isZero()){
throw new UndefinedResultException();
}
return (this.weightedValues.sum()).divide(weightSum);
}
public Value sum(){
if(this.weights != null){
throw new IllegalStateException();
}
return this.values.sum();
}
public Value weightedSum(){
if(this.weights == null || this.weightedValues == null){
throw new IllegalStateException();
}
return this.weightedValues.sum();
}
public Value median(){
if(this.weights != null){
throw new IllegalStateException();
}
int size = this.values.size();
if(size == 0){
throw new UndefinedResultException();
}
return this.values.median();
}
public Value weightedMedian(){
if(this.weights == null){
throw new IllegalStateException();
}
int size = this.values.size();
if(size == 0){
throw new UndefinedResultException();
}
List entries = new ArrayList<>(size);
for(int i = 0; i < size; i++){
Entry entry = new Entry(this.values.get(i), this.weights.get(i));
entries.add(entry);
}
Collections.sort(entries);
double weightSumThreshold = 0.5d * (this.weights.sum()).doubleValue();
double weightSum = 0d;
// Naive, brute-force search.
// It is assumed that entries have unique ordering (at least in the area of the weighted median)
// and that the calculation may be performed using the "whole median" approach
// (as opposed to the "split median" approach).
for(Entry entry : entries){
weightSum += (entry.weight).doubleValue();
if(weightSum >= weightSumThreshold){
return entry.value;
}
}
throw new NotImplementedException();
}
private class Entry implements Comparable {
private Value value;
private Value weight;
private Entry(Value value, Value weight){
this.value = value;
this.weight = weight;
}
@Override
public int compareTo(Entry that){
return (this.value).compareTo(that.value);
}
}
static
public class UnivariateStatistic extends ValueAggregator {
public UnivariateStatistic(ValueFactory valueFactory){
super(valueFactory.newVector(0));
}
}
static
public class WeightedUnivariateStatistic extends ValueAggregator {
public WeightedUnivariateStatistic(ValueFactory valueFactory){
super(valueFactory.newVector(0), valueFactory.newVector(0), valueFactory.newVector(0));
}
}
static
public class Median extends ValueAggregator {
public Median(ValueFactory valueFactory, int capacity){
super(valueFactory.newVector(capacity));
}
}
static
public class WeightedMedian extends ValueAggregator {
public WeightedMedian(ValueFactory valueFactory, int capacity){
super(valueFactory.newVector(capacity), valueFactory.newVector(capacity));
}
}
}