dLife Home Page

dlife.nn
Interface NNDataFilter

All Superinterfaces:
Serializable
All Known Implementing Classes:
BoundFilter, ShiftAndScaleFilter

public interface NNDataFilter
extends Serializable

Implemented by objects that can be used to filter the inputs or outputs of a NeuralNetwork. An NNDataFilter can be assigned to any inputs and/or any output of a NeuralNetwork for the purpose of modifying the values coming in or leaving the network.

Version:
Jan 9, 2007
Author:
Grant Braught, Dickinson College

Method Summary
 double filterValue(double value)
          Filter the provided value according to the rules of this NNDataFilter.
 

Method Detail

filterValue

double filterValue(double value)
Filter the provided value according to the rules of this NNDataFilter.

Parameters:
value - the value to be filtered.
Returns:
the filtered value.

dLife Home Page