**Approach overview**I summarize sample-complexity results for linear classifiers, then show how margin, label noise, and VC dimension change required labeled examples. I end with practical data-collection guidance.**Key results (intuitions + formulas)**- VC-dimension for d-dimensional homogeneous linear classifier is d. Using VC bounds, to get generalization error ≤ ε with probability 1−δ:text
n = O( (d + log(1/δ)) / ε )
Intuition: more parameters (d) → more examples linear in d.- Margin (large-margin / separable case): with margin γ and data bounded in radius R, the Perceptron/SVM margin bound givestext
n = O( (R^2 / γ^2) * log(1/δ) )
Intuition: larger margin reduces effective complexity — sample complexity depends on 1/γ^2, not d.- Label noise (agnostic / classification noise): in the agnostic PAC setting, error compares to best achievable err*; sample complexity scales astext
n = O( (VC + log(1/δ)) / ε^2 )
Intuition: noise forces 1/ε^2 dependence; achieving small excess error needs more samples.**Combined view and trade-offs**- Clean, separable data with large margin → sample complexity depends on 1/γ^2, often much smaller than d.- High-capacity model (large d) with small margin and noisy labels → worst: n scales like d / ε^2.- Regularization (norm constraints) effectively reduces capacity toward margin-like bounds.**Practical guidance for data collection**- If you can engineer features to increase margin (feature scaling, feature selection, PCA), do so — reduces samples needed.- If label noise is suspected, invest in label cleaning or repeated labeling (consensus) to reduce noise; budget trade-off: one high-quality label often better than multiple noisy ones.- Use active learning in margin-friendly regimes: uncertainty sampling often reduces labels to ~log(1/ε) factors when separable.- Monitor learning curves (error vs n) early to detect regime (1/ε vs 1/ε^2) and reallocate labeling budget (more labels vs better features).**Takeaway**Aim to reduce effective capacity (through features/regularization) and label noise; both yield far bigger sample-efficiency gains than merely collecting more labels.