Interface IObjectStreamFactory<T>
Creates an IObjectStream<T> of samples read from a particular corpus format, and describes the command line parameters that format accepts.
public interface IObjectStreamFactory<out T>
Type Parameters
Tthe sample type this factory produces
Properties
Parameters
The parameters this format accepts, in the order they should be listed in help.
IEnumerable<IFormatParameter> Parameters { get; }
Property Value
Methods
Create(IFormatParameterValues)
Creates the IObjectStream<T> over the corpus named by
values.
IObjectStream<out T> Create(IFormatParameterValues values)
Parameters
valuesIFormatParameterValuesthe parsed values of Parameters
Returns
- IObjectStream<T>
a stream of samples