/* * RapidMiner * * Copyright (C) 2001-2008 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program 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. * * This program 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 this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.operator; import com.rapidminer.example.ExampleSet; import com.rapidminer.report.Readable; /** * Model is the interface for all objects which change a data set. For example, * a model generated by a learner might add a predicted attribute. Other models * can be created during preprocessing, e.g. a transformation model containing * the parameters for a z-transformation. Models can be combined by using a * {@link GroupedModel}. Please note that all models will automatically * wrapped into a ContainerModel if they are not already part of it. * All models can be applied with a ModelApplier operator. * * @author Ingo Mierswa * @version $Id: Model.java,v 1.9 2008/07/01 14:16:12 ingomierswa Exp $ */ public interface Model extends ResultObject, Saveable, Readable { /** Applies the model on the given example set. Please note that the delivered * example set might be the same as the input example set. This does, however, * no always to be the case. */ public ExampleSet apply(ExampleSet testSet) throws OperatorException; /** * This method can be used to allow additional parameters. Most models do * not support parameters during application. */ public void setParameter(String key, Object value) throws OperatorException; /** Returns true if this model is updatable. Please note that only models * which return true here must implement the method {@link #updateModel(ExampleSet)}. */ public boolean isUpdatable(); /** Updates the model according to the given example set. This method might * throw an {@link UserError} if the model is not updatable. * In that case the method {@link #isUpdatable()} should deliver false. */ public void updateModel(ExampleSet updateExampleSet) throws OperatorException; }