SmartEngine  1.6.0
Classes | Public Member Functions | List of all members
SmartEngine.NeuralNetworks.ConcatNode Class Reference

Merges two or more node streams into one. Each input stream must have the same number of rows. The output dimension is the sum of the input dimensions. More...

Inheritance diagram for SmartEngine.NeuralNetworks.ConcatNode:
SmartEngine.NeuralNetworks.GraphNode SmartEngine.Object SmartEngine.Disposable

Classes

class  CInfo
 Constructor info More...
 

Public Member Functions

 ConcatNode (CInfo cinfo)
 
- Public Member Functions inherited from SmartEngine.NeuralNetworks.GraphNode
Matrix Execute ()
 Synchronously execute the graph. The returned matrix is read-only. More...
 
IEnumerator RetrieveOutputAsync ()
 Asynchronously execute the graph. The output of the graph can be retrieved with the LastExecutionResult property when the returned enumerator completes. More...
 
- Public Member Functions inherited from SmartEngine.Object
void AddRef ()
 Increments the internal reference count on this object. It is not common to use this method directly. More...
 
void Release ()
 Decrements the internal reference count on this object. It is not common to use this method directly. More...
 
- Public Member Functions inherited from SmartEngine.Disposable
void Dispose ()
 Cleans up any internal state. It is not safe to use an object after it has been disposed. More...
 

Additional Inherited Members

- Properties inherited from SmartEngine.NeuralNetworks.GraphNode
string Name [get]
 Returns the name of the graph node. More...
 
Matrix LastExecutionResult [get]
 Get the results of last execution of the graph. The returned matrix is read-only. More...
 
int OutputDimension [get]
 Returns the dimension of a single row of this node's output. The Output property's length will be a multiple of this value. More...
 

Detailed Description

Merges two or more node streams into one. Each input stream must have the same number of rows. The output dimension is the sum of the input dimensions.