Click or drag to resize
Accord.NET (logo)

ITransformTInput Interface

Common interface for data transformation algorithms. Examples of transformations include classifiers, regressions and other machine learning techniques.

Namespace:  Accord.MachineLearning
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public interface ITransform<TInput> : ITransform<TInput, double[]>, 
	ICovariantTransform<TInput, double[]>, ITransform
Request Example View Source

Type Parameters

TInput
The type for the output data that enters in the model.

The ITransformTInput type exposes the following members.

Properties
  NameDescription
Public propertyNumberOfInputs
Gets or sets the number of inputs accepted by the model.
(Inherited from ITransform.)
Public propertyNumberOfOutputs
Gets or sets the number of outputs generated by the model.
(Inherited from ITransform.)
Top
Methods
See Also