If the original number of real valued features is d and the number of examples is m, then which of the following statements is not true?
If the original number of real valued features is d and the number of examples is m, then which of the following statements is not true? Correct Answer The constructed binary features are dm
If the original number of real valued features is d and the number of examples is m, then the number of constructed binary features becomes dm not dm. And here calculating the Gain of each feature might take O(dm2) operations. But with more improved implementation the run time can be reduced to O(dmlog(m)) .