IComponentFactory<TArg1,TArg2,TArg3,TComponent> Interface

Definition

An interface for creating a component when we take three extra parameters (and an IHostEnvironment).

public interface IComponentFactory<in TArg1,in TArg2,in TArg3,out TComponent> : Microsoft.ML.Runtime.IComponentFactory
type IComponentFactory<'TArg1, 'TArg2, 'TArg3, 'Component> = interface
    interface IComponentFactory
Public Interface IComponentFactory(Of In TArg1, In TArg2, In TArg3, Out TComponent)
Implements IComponentFactory

Type Parameters

TArg1
This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
TArg2
This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
TArg3
This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
TComponent
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Implements

Methods

CreateComponent(IHostEnvironment, TArg1, TArg2, TArg3)

Applies to