/*
* $RCSfile: AbstractClassifierWithDistributedDecision.java,v $
* $Revision: 1.7 $
* $Date: 2007/06/30 17:30:33 $
* $Author: wojna $
*
* Copyright (C) 2002 - 2007 Logic Group, Institute of Mathematics, Warsaw University
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Rseslib 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package rseslib.processing.classification;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Properties;
import rseslib.structure.attribute.NominalAttribute;
import rseslib.structure.data.DoubleData;
import rseslib.system.ConfigurationWithStatistics;
import rseslib.system.PropertyConfigurationException;
/**
* Abstract class for classifiers
* that provide both single and distributed decision.
*
* @author Arkadiusz Wojna
*/
public abstract class AbstractClassifierWithDistributedDecision extends ConfigurationWithStatistics implements ClassifierWithDistributedDecision, Classifier
{
private NominalAttribute m_DecisionAttribute;
/**
* Constructor.
*
* @param prop Map between property names and property values.
* @param decAttr Decision attribute information.
* @throws PropertyConfigurationException If an I/O error occurs while reading properties.
*/
public AbstractClassifierWithDistributedDecision(Properties prop, NominalAttribute decAttr) throws PropertyConfigurationException
{
super(prop);
m_DecisionAttribute = decAttr;
}
/**
* Writes this object.
*
* @param out Output for writing.
* @throws IOException if an I/O error has occured.
*/
protected void writeAbstractClassifier(ObjectOutputStream out) throws IOException
{
writeConfigurationAndStatistics(out);
out.writeObject(m_DecisionAttribute);
}
/**
* Reads this object.
*
* @param out Output for writing.
* @throws IOException if an I/O error has occured.
*/
protected void readAbstractClassifier(ObjectInputStream in) throws IOException, ClassNotFoundException
{
readConfigurationAndStatistics(in);
m_DecisionAttribute = (NominalAttribute)in.readObject();
}
/**
* Assigns a decision to a single test object.
*
* @param dObj Test object.
* @return Assigned decision.
*/
public double classify(DoubleData dObj) throws PropertyConfigurationException
{
double[] decDistr = classifyWithDistributedDecision(dObj);
int bestDec = 0;
for (int dec = 1; dec < decDistr.length; dec++)
if (decDistr[dec] > decDistr[bestDec]) bestDec = dec;
return m_DecisionAttribute.globalValueCode(bestDec);
}
}