- Input Layer: Passes the input features directly to the pattern layer without any computation
 - Pattern Layer (First Computational Layer): Computes similarity scores between the input and each training sample using a radial basis function
 - Summation Layer (Second Computational Layer): Aggregates the outputs from the pattern layer for each class
 - Decision Layer (Output Layer): Determines the class with the highest aggregated score
 
- https://www.mathworks.com/help/deeplearning/ug/probabilistic-neural-networks.html
 - https://www.mathworks.com/help/deeplearning/ref/newpnn.html
 
