Class ILNeuralNetwork.TILHiddenNeuronLayers
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 9: | Line 9: | ||
'''Unit:''' [[Unit ILNeuralNetwork|ILNeuralNetwork]] | '''Unit:''' [[Unit ILNeuralNetwork|ILNeuralNetwork]] | ||
− | '''Inherits:''' [[Class LPComponent. | + | '''Inherits:''' [[Class LPComponent.TLPTypedOwnerComponentCollection|TLPTypedOwnerComponentCollection]] |
== Syntax == | == Syntax == | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''type''' TILHiddenNeuronLayers = '''class'''( [[Class LPComponent. | + | '''type''' TILHiddenNeuronLayers = '''class'''( [[Class LPComponent.TLPTypedOwnerComponentCollection|TLPTypedOwnerComponentCollection, TILNeuralNetwork, TILHiddenNeuronLayer]] ) |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''class''' TILHiddenNeuronLayers : '''public''' [[Class LPComponent. | + | '''class''' TILHiddenNeuronLayers : '''public''' [[Class LPComponent.TLPTypedOwnerComponentCollection|TLPTypedOwnerComponentCollection]] |
</code> | </code> | ||
=== Visual C++ (MFC): === | === Visual C++ (MFC): === | ||
<code> | <code> | ||
− | '''class''' CTILHiddenNeuronLayers : '''public''' [[Class LPComponent. | + | '''class''' CTILHiddenNeuronLayers : '''public''' [[Class LPComponent.TLPTypedOwnerComponentCollection|CTLPTypedOwnerComponentCollection]] |
</code> | </code> | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' TILHiddenNeuronLayers : [[Class LPComponent. | + | '''public ref class''' TILHiddenNeuronLayers : [[Class LPComponent.TLPTypedOwnerComponentCollection|Vcl.VclCollectionProperty]] |
</code> | </code> | ||
== Summary == | == Summary == | ||
Line 33: | Line 33: | ||
== Description == | == Description == | ||
Defines collection for network hidden neuron layers. | Defines collection for network hidden neuron layers. | ||
+ | |||
+ | == From [[Class LPComponent.TLPTypedOwnerComponentCollection|TLPTypedOwnerComponentCollection]] == | ||
== Properties == | == Properties == | ||
=== Public === | === Public === | ||
− | *[[Property | + | *[[Property LPComponent.TLPTypedOwnerComponentCollection.OwnerComponent|OwnerComponent]] |
[[Category:Classes]] | [[Category:Classes]] |
Revision as of 20:30, 10 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: IntelligenceLabPkg
Unit: ILNeuralNetwork
Inherits: TLPTypedOwnerComponentCollection
Contents |
Syntax
Delphi:
type TILHiddenNeuronLayers = class( TLPTypedOwnerComponentCollection, TILNeuralNetwork, TILHiddenNeuronLayer )
C++ Builder:
class TILHiddenNeuronLayers : public TLPTypedOwnerComponentCollection
Visual C++ (MFC):
class CTILHiddenNeuronLayers : public CTLPTypedOwnerComponentCollection
C# (.NET):
public ref class TILHiddenNeuronLayers : Vcl.VclCollectionProperty
Summary
Neural network hidden neuron layers collection.
Description
Defines collection for network hidden neuron layers.