Package moa.streams.filters
Interface StreamFilter
-
- All Superinterfaces:
CapabilitiesHandler
,ExampleStream
,MOAObject
,Serializable
- All Known Implementing Classes:
AbstractStreamFilter
,AddNoiseFilter
,HashingTrickFilter
,NormalisationFilter
,RandomProjectionFilter
,RBFFilter
,ReLUFilter
,RemoveDiscreteAttributeFilter
,ReplacingMissingValuesFilter
,StandardisationFilter
public interface StreamFilter extends ExampleStream
Interface representing a stream filter.- Version:
- $Revision: 7 $
- Author:
- Richard Kirkby (rkirkby@cs.waikato.ac.nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Instance
filterInstance(Instance inst)
void
setInputStream(ExampleStream stream)
Sets the input stream to the filter-
Methods inherited from interface moa.capabilities.CapabilitiesHandler
getCapabilities
-
Methods inherited from interface moa.streams.ExampleStream
defineImmutableCapabilities, estimatedRemainingInstances, getHeader, hasMoreInstances, isRestartable, nextInstance, restart
-
Methods inherited from interface moa.MOAObject
copy, getDescription, measureByteSize
-
-
-
-
Method Detail
-
setInputStream
void setInputStream(ExampleStream stream)
Sets the input stream to the filter- Parameters:
stream
- the input stream to the filter
-
-