Click or drag to resize
Accord.NET (logo)

ITransformTInput, TOutput 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<in TInput, TOutput> : ICovariantTransform<TInput, TOutput>, 
	ITransform
Request Example View Source

Type Parameters

TInput
The type for the output data that enters in the model. Default is double[].
TOutput
The type for the input data that exits from the model. Default is double[].

The ITransformTInput, TOutput 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