Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 2.15 KB

File metadata and controls

21 lines (18 loc) · 2.15 KB

Radial Basis Network(RBF)

Radial basis function (RBF) networks are a commonly used type of artificial neural network for function approximation problems. Radial basis function networks are distinguished from other neural networks due to their universal approximation and faster learning speed. A brief description of the RBF network is presented as follows. The training of the RBF model is terminated once the calculated error reached the desired values (i.e. 0.01) or number of training iterations (i.e. 500) already was completed. An RBF network with a specific number of nodes (i.e. 10) in its hidden layer is chosen. A Gaussian function is used as the transfer function in computational units. Depending on the case, it is typically observed that the RBF network required less time to reach the end of training compared to MLP. These chosen MLP and RBF networks are later examined in the next chapters under new test conditions. The agreement between the model predictions and the experimental observations will be investigated and the results of the two models will be compared. The final model is then chosen based on the least computed error.

code

python3 sample_pytorch.py
python3 sample_sklearn.py
python3 sample_scratch.py

Usefull Resources: