[This is preliminary documentation and is subject to change.]

Namespace: Clarion.Framework
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
public SimplifiedQBPNetwork Generate(
	params Object[] parameters
)

Parameters

parameters
Type: array<System..::..Object>[]()[][]
The optional list of parameters to be used for initializing the simplified Q-learning backpropagation network

Return Value

A simplified Q-learning backpropagation network initialized with the specified parameters

Implements

IimplicitComponentFactory<(Of <(<'T>)>)>..::..Generate(array<Object>[]()[][])

Remarks

The following parameters are OPTIONAL:
  • An EligibilityChecker, a delegate that is used to determine if the SimplifiedQBPNetwork should be used on the current input
  • An ExtractionChecker a delegate that is used to determine if a rule should be extracted given the current input
  • A PositiveMatchDeterminer delegate that determines whether to update the positive match statistics
  • A parameters class for the SimplifiedQBPNetwork

See Also