Artificial Neural Network Programs and Training Datasets
Ready-to-run artificial neural network programs and training datasets after decompression
Explore MATLAB source code curated for "训练数据" with clean implementations, documentation, and examples.
Ready-to-run artificial neural network programs and training datasets after decompression
Efficiently construct radial basis function neural networks using training datasets and visualize model performance through input-output grid plots with implementation insights.
Implementing a 2-input 1-output BP neural network trained with height and weight data from 30 male and 30 female students, achieving 90% accuracy in gender classification for given input data through backpropagation learning algorithm.
Implementation of LBG algorithm for speech signal vector quantization. This package contains two main scripts: training.m processes training data to generate four initial codebooks using iterative splitting methodology, while quantizing.m performs vector quantization on target data through nearest-neighbor codevector matching. Additional custom functions support codebook initialization, distortion calculation, and quantization error analysis.
BP Neural Network for predicting personal income information using adult.data as training dataset and adult.test as testing dataset, with implementation of backpropagation algorithm for model optimization.
Training a radial basis function neural network using sample data and visualizing its input-output mapping through grid plots with implementation details