训练 Resources

Showing items tagged with "训练"

This resource implements the LeNet-5 architecture for the MNIST dataset, adapting the original network structure by modifying input dimensions to 28×28 pixels. The implementation draws inspiration from UFLDL tutorials and R. B. Palm's CNN codebase. Key modifications include full connectivity between C3 and S4 feature maps, achieving 99.1% accuracy through optimized training procedures with data augmentation and regularization techniques.

MATLAB 264 views Tagged

MATLAB implementation for training neural networks with genetic algorithms to overcome local optima issues in neural network optimization, featuring population-based parameter evolution and fitness evaluation techniques.

MATLAB 320 views Tagged

Implementation of pedestrian detection using HOG algorithm, with required data provided in *.dat files. Although positive and negative training samples are not included, users can train their own models and integrate them into the project to detect pedestrians in static images.

MATLAB 212 views Tagged

The RBF (Radial Basis Function) neural network is a three-layer feedforward structure consisting of an input layer, a hidden layer, and an output layer. This code implementation focuses on constructing and training an RBF neural network model, featuring algorithmic explanations for key components such as radial basis function calculations, weight optimization, and training methodologies.

MATLAB 241 views Tagged

This package implements Particle Swarm Optimization (PSO) for training neural network parameters. Simply run demoPSOnet.m to observe dynamic 2D visualization of the optimization process, where particle positions represent potential neural network weight configurations and their movement reflects the PSO algorithm's search mechanism through solution space.

MATLAB 243 views Tagged