-3

I have a training feature set consisting of 92 features. Out of which 91 features are boolean values of 1 or 0. But 1 feature is numerical and it varies from 3-2000.

Will it be better if I do feature scaling on my 92nd feature?

If yes, what are the best possible ways to do it? I am using Python.

petezurich
  • 9,280
  • 9
  • 43
  • 57
Ayush Agrawal
  • 75
  • 2
  • 10

1 Answers1

0

Sometimes, It is highly dependent on which algorithm you wanna use for your prediction. Suppose if you are using SVM and using Gaussian Kernel for that and you are not using feature scaling on your inputs then you might end up with wrong hypothesis and your large features will dominates over the other smaller features. Generally, feature scaling are always the best ways to control the variations in input and also it makes algorithm to compute fast (or in other words converge to the optimal minima).

Akash Singh
  • 171
  • 1
  • 10