2

What are the advantages using Principal Components as input for neural networks compared to using "normal input" for neural networks?

Ferdi
  • 4,882
  • 7
  • 42
  • 62
bbadyalina
  • 743
  • 2
  • 7
  • 20
  • a) variable selection to reduce overfitting (assuming largest PCs preserve 'signal' b) improved gradient descent (if sphered input data, ie covariance of input is identity) – seanv507 Dec 29 '16 at 11:34

2 Answers2

1

You can read a nice description of PCA here.

The advantage of PCA (one method of dimension reduction) in the context of ML (ie. neural networks) would be to reduce the risk of over fitting and reduce computational complexity.

You could also phrase your question as: what are the alternatives to PCA? For PCA vs Partial Least Squares, see this Cross Validated post For PCA vs random subspace projection see this Cross Validated post

Simon
  • 290
  • 1
  • 11
1

I think this question has been asked countless number of times here... You want PCA because you want to reduce your input size and thus improve training time and less likely to overfit.

SmallChess
  • 6,764
  • 4
  • 27
  • 48