Solved – Machine Learning and training time: is it really relevant

machine learningtrain

I have a question regarding the time needed for training a classifier. I am facing the specific problem of Sentiment Analysis (classification of text as pos/neg/neu).

(Excepting online learning algorithms) Since the training stage of a classifier is usually conducted only once and offline, in the end does it really matter how much time would it take for training ?

If the classifier is to be trained over a mobile or a resource-constrained platform, reducing such training time would still make more sense, though…

Thanks in advance.

Best Answer

I think it depends on what you mean by "training time". If you think about cross validation, model selection, etc, a classifier which takes a "long time" to train can become incredibly painful, since you will be training it many times and waiting on the results before you can make further progress.

Related Question