训练样本 Resources

Showing items tagged with "训练样本"

This is an SVM classifier designed for classifying training samples in pedestrian detection applications, featuring direct MATLAB implementation with built-in support for key machine learning functions.

MATLAB 229 views Tagged

MATLAB SVM toolbox implementation with excellent usability. Place data in the MATLAB folder, open MATLAB, and execute the sequence: 1. mex setup 2. y 3. 2 4. y to obtain classification accuracy and test result matrix using training and testing samples. The implementation involves compiling C/C++ extensions through mex configuration for optimized SVM computation.

MATLAB 214 views Tagged

How the K-means Clustering Algorithm Operates with Implementation Steps Step 1: Determine the optimal value of k (number of clusters) through methods like the Elbow Method or Silhouette Analysis. Step 2: Initialize cluster centroids either randomly or systematically using approaches such as K-means++ for better convergence. The algorithm proceeds by iteratively assigning data points to the nearest centroid and recalculating centroid positions.

MATLAB 237 views Tagged