![]() |
pl-nk v0.4.5
Plonk|Plink|Plank are a set of cross-platform C/C++ frameworks for audio software development
|
A neural layer. More...
Typedefs | |
| typedef struct PlankNeuralLayerF * | PlankNeuralLayerFRef |
| An opaque reference to the Plank NeuralLayerF object. | |
Functions | |
| PlankResult | pl_NeuralLayerF_InitNumNodesAndPrevious (PlankNeuralLayerFRef p, PlankNeuralNetworkFRef network, const int numNodes, const int numPreviousNodes) |
| Initialise a Plank NeuralLayerF object. | |
| PlankResult | pl_NeuralLayerF_DeInit (PlankNeuralLayerFRef p) |
| Deinitialise a Plank NeuralLayerF object. | |
A neural layer.
| typedef struct PlankNeuralLayerF* PlankNeuralLayerFRef |
An opaque reference to the Plank NeuralLayerF object.
| PlankResult pl_NeuralLayerF_DeInit | ( | PlankNeuralLayerFRef | p | ) |
Deinitialise a Plank NeuralLayerF object.
| p | The Plank NeuralLayerF object. |
| PlankResult pl_NeuralLayerF_InitNumNodesAndPrevious | ( | PlankNeuralLayerFRef | p, |
| PlankNeuralNetworkFRef | network, | ||
| const int | numNodes, | ||
| const int | numPreviousNodes | ||
| ) |
Initialise a Plank NeuralLayerF object.
Deafults to have one wieght. pl_NeuralLayerF_InitWithNumWeights() is more useful.
| p | The Plank NeuralLayerF object. |
| numNodes | The number of nodes on this layer. |
| numPreviousNodes | The number of nodes on the previous layer (i.e., connected into this one). |
1.7.4