Navigation
API > API/Plugins > API/Plugins/NeuralMorphModel
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UNeuralMorphMLPLayer
References
| Module | NeuralMorphModel |
| Header | /Engine/Plugins/Animation/MLDeformer/NeuralMorphModel/Source/NeuralMorphModel/Public/NeuralMorphNetwork.h |
| Include | #include "NeuralMorphNetwork.h" |
Syntax
UCLASS&40;&41;
class UNeuralMorphMLPLayer : public UObject
Remarks
A fully connected layer, which contains the weights and biases for those connections.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TArray< float > | Biases | The biases. The number of biases will be the same as the number of columns multiplied by the depth. | |
| int32 | Depth | The number of instances of inputs and outputs. | |
| int32 | NumInputs | The weight matrix number of inputs (rows). | |
| int32 | NumOutputs | The weight matrix number of outputs (columns). | |
| TArray< float > | Weights | A 2D array of weights. The number of weights equals NumRows x NumColumns x Depth. |