极限学习机 Resources

Showing items tagged with "极限学习机"

Comparative analysis of ELM (Extreme Learning Machine) and ELM_2 algorithms with source code implementations including EELM (published in Neural Computing by Yuguang Wang) and YELM (enhanced ELM version published by Yuboyuan). This program provides performance benchmarking for these three machine learning approaches. For theoretical background, please refer to the authors' publications. To execute the comparison, simply run the pendigits_mean.m main file which handles data preprocessing, model training, and performance evaluation.

MATLAB 301 views Tagged

Extreme Learning Machine (ELM) is an efficient and user-friendly learning algorithm for Single-hidden Layer Feedforward Neural Networks (SLFNs). Proposed by Associate Professor Guang-Bin Huang at Nanyang Technological University in 2006, ELM eliminates the need for manual hyperparameter tuning common in traditional neural network algorithms like Backpropagation (BP). The algorithm requires only the specification of hidden layer nodes, automatically determines input weights and biases, and guarantees unique optimal solutions with exceptional learning speed and generalization performance. Key implementation involves random weight initialization and Moore-Penrose pseudoinverse computation for output weight derivation.

MATLAB 228 views Tagged