极限学习机 Resources

Showing items tagged with "极限学习机"

Extreme Learning Machine (ELM) is a simple, efficient learning algorithm for Single-hidden Layer Feedforward Networks (SLFNs) proposed by Associate Professor Guang-Bin Huang from Nanyang Technological University in 2006. Unlike traditional neural network training algorithms (e.g., Backpropagation), ELM requires minimal parameter tuning—only the number of hidden nodes needs specification—and avoids local optima by randomly initializing input weights and biases without iterative adjustments. The algorithm computes output weights analytically via Moore-Penrose pseudoinverse, ensuring unique optimal solutions and delivering rapid training with strong generalization. Code implementations typically involve random weight initialization, hidden layer activation (e.g., sigmoid), and linear output solving.

MATLAB 215 views Tagged

ELM is a novel fast learning algorithm for single-hidden-layer feedforward neural networks. It randomly initializes input weights and biases and then analytically determines output weights through Moore-Penrose generalized inverse calculation.

MATLAB 208 views Tagged